mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix some non-accessible URLS
Also don't check attic, devel or obsolete files Not found good replacements for http://texcatalogue.ctan.org/bytopic.html http://www.tiresias.org/research/reports/braille_cell.htm
This commit is contained in:
parent
5a02c19bb1
commit
0b29581905
@ -13,8 +13,17 @@ set(LYXFILES_FILE "${CMAKE_CURRENT_BINARY_DIR}/filesToScan")
|
|||||||
file(WRITE "${LYXFILES_FILE}")
|
file(WRITE "${LYXFILES_FILE}")
|
||||||
file(GLOB_RECURSE lyx_files RELATIVE "${TOP_SEARCH_PATH}" "${TOP_SEARCH_PATH}/*.lyx")
|
file(GLOB_RECURSE lyx_files RELATIVE "${TOP_SEARCH_PATH}" "${TOP_SEARCH_PATH}/*.lyx")
|
||||||
|
|
||||||
|
set(NO_SEARCH_PATHS "/attic/" "src/tex2lyx/test" "/autotests/" "development/" "/Obsolete/")
|
||||||
foreach(_f ${lyx_files})
|
foreach(_f ${lyx_files})
|
||||||
file(APPEND "${LYXFILES_FILE}" "${_f}\n")
|
set(found OFF)
|
||||||
|
foreach(_p ${NO_SEARCH_PATHS})
|
||||||
|
if (_f MATCHES "${_p}")
|
||||||
|
set(found ON)
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
if (NOT found)
|
||||||
|
file(APPEND "${LYXFILES_FILE}" "${_f}\n")
|
||||||
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
# Define the perl-script running the actual test
|
# Define the perl-script running the actual test
|
||||||
|
@ -17265,7 +17265,7 @@ vgl.
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "amtliche Regeln"
|
name "amtliche Regeln"
|
||||||
target "http://www.rechtschreibrat.com/DOX/rfdr_Regeln_2017.pdf"
|
target "http://www.rechtschreibrat.com/DOX/rfdr_Regeln_2016_veroeffentlicht_2017.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -24545,7 +24545,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http://www.xmarks.com/site/shelob.ce.ttu.edu/daves/lpfaq/faq.html
|
http://www.literateprogramming.com/lpfaq.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -24906,7 +24906,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http://www.xmarks.com/site/shelob.ce.ttu.edu/daves/lpfaq/faq.html
|
http://www.literateprogramming.com/lpfaq.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -21270,7 +21270,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http://www.xmarks.com/site/shelob.ce.ttu.edu/daves/lpfaq/faq.html
|
http://www.literateprogramming.com/lpfaq.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -372,7 +372,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http://www.aip.org/pacs
|
https://www.aip.org/pacs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
Loading…
Reference in New Issue
Block a user