mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
290efe6190
- dictionaries.nsh: code documentation and simplification - lyx.nsi: comment out currently unused code - init.nsh: some corrections and fix bug that info that JabRef and MiKTeX were installed together with LyX was deleted before the uninstaller was really run - LaTeX.nsh: documentation and fix a bug (for an unknown reason SHCTX can be used to read and delte but not to write in the registry) - gui.nsh: enable descriptions - detection: move dictionary code to dictionaries
219 lines
7.4 KiB
Plaintext
219 lines
7.4 KiB
Plaintext
/*
|
|
dictionaries.nsh
|
|
|
|
Handling of hunspell / MyThes dictionaries
|
|
*/
|
|
|
|
# This script contains the following functions:
|
|
#
|
|
# - FindDictionaries (finds already installed dictionaries)
|
|
#
|
|
# - DownloadHunspellDictionaries and DownloadThesaurusDictionaries
|
|
# (Downloads hunspell / MyThes dictionaries from a location that is
|
|
# given in the file $INSTDIR\Resources\HunspellDictionaryNames.txt)
|
|
#
|
|
# - InstallHunspellDictionaries and InstallThesaurusDictionaries
|
|
# (installs the selected hunspell / MyThes dictionaries except of
|
|
# already existing ones), uses:
|
|
# DownloadHunspellDictionaries or DownloadThesaurusDictionaries
|
|
|
|
# ---------------------------------------
|
|
|
|
Function FindDictionaries
|
|
# finds already installed dictionaries
|
|
|
|
# start with empty strings
|
|
StrCpy $FoundDict ""
|
|
StrCpy $FoundThes ""
|
|
|
|
# read out the possible spell-checker filenames from the file
|
|
FileOpen $R5 "$INSTDIR\Resources\HunspellDictionaryNames.txt" r
|
|
${for} $5 1 66
|
|
# the file has 132 lines, but we only need to check for one of the 2 dictionary files per language
|
|
# therefore check only for every second line
|
|
FileRead $R5 $String # skip the .aff file
|
|
FileRead $R5 $String # $String is now the .dic filename
|
|
StrCpy $String $String -2 # remove the linebreak characters
|
|
StrCpy $R3 $String -4 # $R3 is now the dictionary language code
|
|
${if} ${FileExists} "$INSTDIR\Resources\dicts\$String"
|
|
StrCpy $FoundDict "$R3 $FoundDict"
|
|
${endif}
|
|
${next}
|
|
FileClose $R5
|
|
|
|
# read out the possible thesaurus filenames from the file
|
|
FileOpen $R5 "$INSTDIR\Resources\ThesaurusDictionaryNames.txt" r
|
|
${for} $5 1 22
|
|
# the file has 44 lines, but we only need to check for one of the 2 dictionary files per language
|
|
# therefore check only for every second line
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
StrCpy $String $String -2 # remove the linebreak characters
|
|
StrCpy $R3 $String 5 3 # $R3 is now the dictionary language code
|
|
${if} ${FileExists} "$INSTDIR\Resources\thes\$String"
|
|
StrCpy $FoundThes "$R3 $FoundThes"
|
|
${endif}
|
|
${next}
|
|
FileClose $R5
|
|
|
|
FunctionEnd
|
|
|
|
# ---------------------------------------
|
|
|
|
Function DownloadHunspellDictionaries
|
|
# Downloads hunspell dictionaries from a location that is given in the file
|
|
# $INSTDIR\Resources\HunspellDictionaryNames.txt
|
|
|
|
# read out the locations from the file
|
|
FileOpen $R5 "$INSTDIR\Resources\HunspellDictionaryNames.txt" r
|
|
${For} $5 1 132 # the file has 132 lines
|
|
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
StrCpy $R3 $String -6 # $R3 is now the dictionary language code
|
|
|
|
${if} $DictCode == $R3
|
|
StrCpy $String $String -2 # delete the linebreak characters at the end
|
|
# Download hunspell dictionaries,
|
|
# if first download repository is not available try the other ones listed in "DictionaryMirrors.txt"
|
|
FileOpen $R4 "$INSTDIR\Resources\DictionaryMirrors.txt" r
|
|
|
|
${For} $4 1 8
|
|
FileRead $R4 $Search # $Search is now the mirror
|
|
StrCpy $Search $Search -2 # delete the linebreak characters at the end
|
|
Push $R0
|
|
InetLoad::load /TIMEOUT=5000 "http://$Search.dl.sourceforge.net/project/lyxwininstaller/hunspell/$String" "$INSTDIR\Resources\dicts\$String" /END
|
|
Pop $R0
|
|
${if} $R0 == "OK"
|
|
${ExitFor}
|
|
${endif}
|
|
${Next}
|
|
|
|
FileClose $R4
|
|
# if download failed
|
|
${if} $R0 != "OK"
|
|
MessageBox MB_OK|MB_ICONEXCLAMATION "$(HunspellFailed)"
|
|
Goto abortinstall
|
|
${endif}
|
|
${endif} # end if $DictCode == $R3
|
|
|
|
${Next}
|
|
FileClose $R5
|
|
|
|
abortinstall:
|
|
Delete "$INSTDIR\$String"
|
|
|
|
FunctionEnd
|
|
|
|
#--------------------------------
|
|
|
|
Function DownloadThesaurusDictionaries
|
|
# Downloads thesaurus dictionaries from a location that is given in the file
|
|
# $INSTDIR\Resources\ThesaurusDictionaryNames.txt
|
|
|
|
# read out the locations from the file
|
|
FileOpen $R5 "$INSTDIR\Resources\ThesaurusDictionaryNames.txt" r
|
|
${For} $5 1 44 # the file has 44 lines
|
|
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
StrCpy $R3 $String 5 3 # $R3 is now the dictionary language code
|
|
|
|
${if} $ThesCode == $R3
|
|
StrCpy $String $String -2 # delete the linebreak characters at the end
|
|
# Download thesaurus dictionaries,
|
|
# if first download repository is not available try the other ones listed in "DictionaryMirrors.txt"
|
|
FileOpen $R4 "$INSTDIR\Resources\DictionaryMirrors.txt" r
|
|
|
|
${For} $4 1 8
|
|
FileRead $R4 $Search # $Search is now the mirror
|
|
StrCpy $Search $Search -2 # delete the linebreak characters at the end
|
|
Push $R0
|
|
InetLoad::load /TIMEOUT=5000 "http://$Search.dl.sourceforge.net/project/lyxwininstaller/thesaurus/$String" "$INSTDIR\Resources\thes\$String" /END
|
|
Pop $R0
|
|
${if} $R0 == "OK"
|
|
${ExitFor}
|
|
${endif}
|
|
${Next}
|
|
|
|
FileClose $R4
|
|
# if download failed
|
|
${if} $R0 != "OK"
|
|
MessageBox MB_OK|MB_ICONEXCLAMATION "$(ThesaurusFailed)"
|
|
Goto abortinstall
|
|
${endif}
|
|
${endif} # end if $ThesCode == $R3
|
|
|
|
${Next}
|
|
FileClose $R5
|
|
|
|
abortinstall:
|
|
Delete "$INSTDIR\$String"
|
|
|
|
FunctionEnd
|
|
|
|
#--------------------------------
|
|
|
|
Function InstallHunspellDictionaries
|
|
# installs the selected hunspell dictionaries except of already existing ones
|
|
|
|
# download the dictionaries
|
|
${Do}
|
|
# take the first code
|
|
StrCpy $Search ","
|
|
StrCpy $String $DictCodes
|
|
Call StrPoint
|
|
${if} $Pointer != "-1"
|
|
StrCpy $DictCode $DictCodes $Pointer
|
|
# remove the taken code from the list
|
|
IntOp $Pointer $Pointer + 1
|
|
StrCpy $DictCodes $DictCodes "" $Pointer
|
|
${endif}
|
|
# don't dowload existing ones thus check if $DictCode is in $FoundDict
|
|
StrCpy $String $FoundDict
|
|
StrCpy $Search $DictCode
|
|
Call StrPoint # function from LyXUtils.nsh
|
|
${if} $Pointer == "-1"
|
|
Call DownloadHunspellDictionaries
|
|
${endif}
|
|
${LoopUntil} $DictCodes == ""
|
|
|
|
FunctionEnd
|
|
|
|
#--------------------------------
|
|
|
|
Function InstallThesaurusDictionaries
|
|
# installs the selected thesaurus dictionaries except of already existing ones
|
|
|
|
# download the dictionaries
|
|
${Do}
|
|
# all codes have 5 characters
|
|
StrCpy $ThesCode $ThesCodes 5 # take the first code
|
|
StrCpy $ThesCodes $ThesCodes "" 5 # remove the taken code from the list
|
|
# don't dowload existing ones thus check if $ThesCode is in $FoundThes
|
|
StrCpy $String $FoundThes
|
|
StrCpy $Search $ThesCode
|
|
Call StrPoint # function from LyXUtils.nsh
|
|
${if} $Pointer == "-1"
|
|
Call DownloadThesaurusDictionaries
|
|
${endif}
|
|
${LoopUntil} $ThesCodes == ""
|
|
|
|
# some dictionaries of language variants are identic
|
|
# therefore copy and rename an existing dictionary
|
|
CreateDirectory "$INSTDIR\Resources\backup"
|
|
${if} ${FileExists} "$INSTDIR\Resources\thes\th_de_DE_v2.dat"
|
|
CopyFiles "$INSTDIR\Resources\thes\th_de_DE_v2.*" "$INSTDIR\Resources\backup"
|
|
Rename "$INSTDIR\Resources\backup\th_de_DE_v2.dat" "$INSTDIR\Resources\backup\th_de_AT_v2.dat"
|
|
Rename "$INSTDIR\Resources\backup\th_de_DE_v2.idx" "$INSTDIR\Resources\backup\th_de_AT_v2.idx"
|
|
CopyFiles "$INSTDIR\Resources\backup\th_de_AT_v2.*" "$INSTDIR\Resources\thes"
|
|
${endif}
|
|
${if} ${FileExists} "$INSTDIR\Resources\thes\th_en_US_v2.dat"
|
|
CopyFiles "$INSTDIR\Resources\thes\th_en_US_v2.*" "$INSTDIR\Resources\backup"
|
|
Rename "$INSTDIR\Resources\backup\th_en_US_v2.dat" "$INSTDIR\Resources\backup\th_en_AU_v2.dat"
|
|
Rename "$INSTDIR\Resources\backup\th_en_US_v2.idx" "$INSTDIR\Resources\backup\th_en_AU_v2.idx"
|
|
CopyFiles "$INSTDIR\Resources\backup\th_en_AU_v2.*" "$INSTDIR\Resources\thes"
|
|
${endif}
|
|
RMDir "$INSTDIR\Resources\backup"
|
|
|
|
FunctionEnd
|
|
|