]> git.lyx.org Git - lyx.git/blobdiff - development/Win32/packaging/installer/LyXWinInstaller/InstallActions-update.nsh
Changed comment character from ';' to '#*
[lyx.git] / development / Win32 / packaging / installer / LyXWinInstaller / InstallActions-update.nsh
index 7336741b68b89acdae295a07a5971e8739384d83..344f14279259ee6236be7baecdc1cbbe5447b3af 100644 (file)
@@ -1,38 +1,38 @@
-; this file contains the main installer section
+# this file contains the main installer section
 
-; The '-' makes the section invisible.
+# The '-' makes the section invisible.
 Section "-Installation actions" SecInstallation
 
-  ; dummy actions to avoid NSIS warnings
+  # dummy actions to avoid NSIS warnings
   StrCpy $AspellBaseReg ""
   StrCpy $LangCode ""
   StrCpy $LangCodeSys ""
   StrCpy $LangName ""
   StrCpy $LangNameSys ""
   
-  ; init, this variable is later only set to a value in function InstDirChange
-  ; when the $INSTDIR is changed
+  # init, this variable is later only set to a value in function InstDirChange
+  # when the $INSTDIR is changed
   StrCpy $INSTDIR_OLD ""
   
-  ; extract modified files
-  Call UpdateModifiedFiles ; macro from Updated.nsh
+  # extract modified files
+  Call UpdateModifiedFiles # macro from Updated.nsh
   
-  ; delete files
-  Call DeleteFiles ; macro from Deleted.nsh
+  # delete files
+  Call DeleteFiles # macro from Deleted.nsh
   
-  ; delete old uninstaller
+  # delete old uninstaller
   Delete "${PRODUCT_UNINSTALL_EXE}"
   
-  ; delete old start menu folder
+  # delete old start menu folder
   ReadRegStr $0 SHCTX "${PRODUCT_UNINST_KEY_OLD}" "StartMenu"
   RMDir /r $0
-  ; delete desktop icon
+  # delete desktop icon
   Delete "$DESKTOP\${PRODUCT_VERSION_OLD}.lnk"
   
-  ; delete old registry entries
+  # delete old registry entries
   ${if} $CreateFileAssociations == "true"
    DeleteRegKey SHCTX "${PRODUCT_DIR_REGKEY}"
-   ; remove file extension .lyx
+   # remove file extension .lyx
    ReadRegStr $R0 SHCTX "Software\Classes\${PRODUCT_EXT}" ""
    ${if} $R0 == "${PRODUCT_REGNAME}"
     DeleteRegKey SHCTX "Software\Classes\${PRODUCT_EXT}"
@@ -43,16 +43,16 @@ Section "-Installation actions" SecInstallation
   DeleteRegKey HKCR "Applications\lyx.bat"
   DeleteRegKey HKCR "${PRODUCT_NAME}"
   
-  ; determine the new name of the install location,
-  ; Change the old install path to the new one (currently only when the user
-  ; has used the default path settings of the previous LyX-version)
+  # determine the new name of the install location,
+  # Change the old install path to the new one (currently only when the user
+  # has used the default path settings of the previous LyX-version)
   Call InstDirChange
   
-  ; Refresh registry setings for the uninstaller
+  # Refresh registry setings for the uninstaller
   Call RefreshRegUninst
   
-  ; Create a batch file to start LyX with the environment variables set
-  ; !only needed in this version! remove it for the next release
+  # Create a batch file to start LyX with the environment variables set
+  # !only needed in this version! remove it for the next release
   ClearErrors
   Delete "${PRODUCT_BAT}"
   FileOpen $R1 "${PRODUCT_BAT}" w
@@ -64,7 +64,7 @@ Section "-Installation actions" SecInstallation
   IfErrors 0 +2
    MessageBox MB_OK|MB_ICONEXCLAMATION "$(CreateCmdFilesFailed)"
   
-  ; register LyX
+  # register LyX
   ${if} $CreateFileAssociations == "true"
    WriteRegStr SHCTX "${PRODUCT_DIR_REGKEY}" "" "${PRODUCT_EXE}"
   ${endif}
@@ -81,53 +81,53 @@ Section "-Installation actions" SecInstallation
   WriteRegDWORD SHCTX "${PRODUCT_UNINST_KEY}" "NoModify" 0x00000001
   WriteRegDWORD SHCTX "${PRODUCT_UNINST_KEY}" "NoRepair" 0x00000001
   
-  ; create start menu entry
+  # create start menu entry
   SetOutPath "$INSTDIR\bin"
   CreateDirectory "$SMPROGRAMS\$StartmenuFolder"
   CreateShortCut "$SMPROGRAMS\$StartmenuFolder\${PRODUCT_NAME}.lnk" "${PRODUCT_BAT}" "" "${PRODUCT_EXE}"
   SetOutPath "$INSTDIR"
   CreateShortCut "$SMPROGRAMS\$StartmenuFolder\Uninstall.lnk" "${PRODUCT_UNINSTALL_EXE}"
   
-  ; create desktop icon
+  # create desktop icon
   ${if} $CreateDesktopIcon == "true"
    SetOutPath "$INSTDIR\bin"
    CreateShortCut "$DESKTOP\LyX ${PRODUCT_VERSION}.lnk" "${PRODUCT_BAT}" "" "${PRODUCT_EXE}"
   ${endif}
   
-  ; register the extension .lyx
+  # register the extension .lyx
   ${if} $CreateFileAssociations == "true"
-   ; write informations about file type
+   # write informations about file type
    WriteRegStr SHCTX "Software\Classes\${PRODUCT_REGNAME}" "" "${PRODUCT_NAME} Document"
    WriteRegStr SHCTX "Software\Classes\${PRODUCT_REGNAME}\DefaultIcon" "" "${PRODUCT_EXE}"
    WriteRegStr SHCTX "Software\Classes\${PRODUCT_REGNAME}\Shell\open\command" "" '"${LAUNCHER_EXE}" "%1"'
-   ; write informations about file extensions
+   # write informations about file extensions
    WriteRegStr SHCTX "Software\Classes\${PRODUCT_EXT}" "" "${PRODUCT_REGNAME}"
    WriteRegStr SHCTX "Software\Classes\${PRODUCT_EXT}" "Content Type" "${PRODUCT_MIME_TYPE}"  
-   ; refresh shell
+   # refresh shell
    System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) (${SHCNE_ASSOCCHANGED}, ${SHCNF_IDLIST}, 0, 0)'
   ${endif}
   
-  ; create Uninstaller
+  # create Uninstaller
   WriteUninstaller "${PRODUCT_UNINSTALL_EXE}"
   
-  ; test if Python is installed
-  ; only use an existing python when it is version 2.5 because many Compaq and Dell PC are delivered
-  ; with outdated Python interpreters
+  # test if Python is installed
+  # only use an existing python when it is version 2.5 because many Compaq and Dell PC are delivered
+  # with outdated Python interpreters
   ReadRegStr $PythonPath HKLM "Software\Python\PythonCore\2.5\InstallPath" ""
   ${if} $PythonPath == ""
    StrCpy $PythonPath "$INSTDIR\bin"
   ${else}
-   StrCpy $PythonPath $PythonPath -1 ; remove the "\" at the end
+   StrCpy $PythonPath $PythonPath -1 # remove the "\" at the end
   ${endif}
   
-  ; run LyX's configure script
-  ; create a bat-file to start configure in a console window so that the user see the progress
-  ; of the configuration and to have a signal when the configuration is ready to start LyX
-  ; this is important when LyX is installed together with MiKTeX or when LyX is installed for the first
-  ; time on a computer, because the installation of missing LaTeX-files required by LyX could last minutes
-  ; a batch file is needed because simply calling ExecWait '"$PythonPath\python.exe" "$INSTDIR\Resources\configure.py"'
-  ; creates the config files in $INSTDIR\bin
-  StrCpy $1 $INSTDIR 2 ; get drive letter
+  # run LyX's configure script
+  # create a bat-file to start configure in a console window so that the user see the progress
+  # of the configuration and to have a signal when the configuration is ready to start LyX
+  # this is important when LyX is installed together with MiKTeX or when LyX is installed for the first
+  # time on a computer, because the installation of missing LaTeX-files required by LyX could last minutes
+  # a batch file is needed because simply calling ExecWait '"$PythonPath\python.exe" "$INSTDIR\Resources\configure.py"'
+  # creates the config files in $INSTDIR\bin
+  StrCpy $1 $INSTDIR 2 # get drive letter
   FileOpen $R1 "$INSTDIR\Resources\configLyX.bat" w
   FileWrite $R1 '$1$\r$\n\
                 cd $INSTDIR\Resources\$\r$\n\
@@ -137,107 +137,107 @@ Section "-Installation actions" SecInstallation
   ExecWait '"$INSTDIR\Resources\configLyX.bat"'
   Delete "$INSTDIR\Resources\configLyX.bat"
   
-  ; for some unknown odd reason the folder $INSTDIR_OLD\Resources\ui
-  ; is not deleted in function InstDirChange, so the deletion has to be called
-  ; again to make it work
+  # for some unknown odd reason the folder $INSTDIR_OLD\Resources\ui
+  # is not deleted in function InstDirChange, so the deletion has to be called
+  # again to make it work
   ${if} $INSTDIR_OLD != ""
    RMDir /r $INSTDIR_OLD
   ${endif}
 
 SectionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function InstDirChange
        
-  ; determine the new name of the install location,
-  ; Change the old install path to the new one (currently only when the user
-  ; has used the default path settings of the previous LyX-version)
+  # determine the new name of the install location,
+  # Change the old install path to the new one (currently only when the user
+  # has used the default path settings of the previous LyX-version)
   StrCpy $String $INSTDIR
   StrCpy $Search "${PRODUCT_VERSION_OLD}"
   StrLen $3 $String
-  Call StrPoint ; search the $INSTDIR for the phrase in ${PRODUCT_VERSION_OLD} ; function from LyXUtils.nsh
-  ${if} $Pointer != "-1" ; if something was found
+  Call StrPoint # search the $INSTDIR for the phrase in ${PRODUCT_VERSION_OLD} ; function from LyXUtils.nsh
+  ${if} $Pointer != "-1" # if something was found
   
-   IntOp $Pointer $Pointer - 1 ; jump before the first "\" of "\${PRODUCT_VERSION_OLD}"
-   StrCpy $String $String "$Pointer" ; $String is now the part before "\${PRODUCT_VERSION_OLD}"
-   ; rename the installation folder by copying LyX files
+   IntOp $Pointer $Pointer - 1 # jump before the first "\" of "\${PRODUCT_VERSION_OLD}"
+   StrCpy $String $String "$Pointer" # $String is now the part before "\${PRODUCT_VERSION_OLD}"
+   # rename the installation folder by copying LyX files
    StrCpy $INSTDIR_NEW "$String\LyX ${PRODUCT_VERSION}"
    CreateDirectory "$INSTDIR_NEW"
    CopyFiles "$INSTDIR\*.*" "$INSTDIR_NEW"
-   ; delete the old folder
+   # delete the old folder
    RMDir /r $INSTDIR
    StrCpy $INSTDIR_OLD $INSTDIR
    StrCpy $INSTDIR $INSTDIR_NEW
    
-   ; set new PATH_PREFIX in the file lyxrc.dist
+   # set new PATH_PREFIX in the file lyxrc.dist
    FileOpen $R1 "$INSTDIR\Resources\lyxrc.dist" a
    FileRead $R1 $PathPrefix
    ${WordReplace} $PathPrefix "${PRODUCT_VERSION_OLD}" "LyX ${PRODUCT_VERSION}" "+" $PathPrefix
-   FileSeek $R1 0 ; set file pointer to the beginning
-   FileWrite $R1 '$PathPrefix' ; overwrite the existing path with the actual one
+   FileSeek $R1 0 # set file pointer to the beginning
+   FileWrite $R1 '$PathPrefix' # overwrite the existing path with the actual one
    FileClose $R1
    
-   ; set the new path to the preferences file for all users
+   # set the new path to the preferences file for all users
    StrCpy $FileName "preferences"
    StrCpy $OldString "${PRODUCT_VERSION_OLD}"
    StrCpy $NewString "LyX ${PRODUCT_VERSION}"
-   Call CheckAppPathPreferences ; function from LyXUtils.nsh
+   Call CheckAppPathPreferences # function from LyXUtils.nsh
    
-   ; set the new path to the session file for all users
+   # set the new path to the session file for all users
    StrCpy $FileName "session"
-   Call CheckAppPathPreferences ; function from LyXUtils.nsh
+   Call CheckAppPathPreferences # function from LyXUtils.nsh
    
-   ; set new path to ImageMagick
+   # set new path to ImageMagick
    ReadRegStr $ImageMagickPath SHCTX "SOFTWARE\Classes\Applications" "AutoRun"
    ${if} $ImageMagickPath != ""
-    ${WordReplace} $ImageMagickPath "${PRODUCT_VERSION_OLD}" "LyX ${PRODUCT_VERSION}" "+" $ImageMagickPath ; macro from WordFunc.nsh
+    ${WordReplace} $ImageMagickPath "${PRODUCT_VERSION_OLD}" "LyX ${PRODUCT_VERSION}" "+" $ImageMagickPath # macro from WordFunc.nsh
     WriteRegStr SHCTX "SOFTWARE\Classes\Applications" "AutoRun" "$ImageMagickPath"
    ${endif}
   
-  ${endif} ; end ${if} $Pointer != "-1" (if the folder is renamed)
+  ${endif} # end ${if} $Pointer != "-1" (if the folder is renamed)
   
 FunctionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function RefreshRegUninst
 
-  ; Refresh registry setings for the uninstaller
+  # Refresh registry setings for the uninstaller
 
-  ; Aspell
-  ReadRegStr $0 SHCTX "Software\Aspell" "OnlyWithLyX" ; special entry to test if it was installed with LyX
+  # Aspell
+  ReadRegStr $0 SHCTX "Software\Aspell" "OnlyWithLyX" # special entry to test if it was installed with LyX
   ${if} $0 == "Yes${PRODUCT_VERSION_SHORT}"
    WriteRegStr HKLM "SOFTWARE\Aspell" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}"
   ${endif}
   
-  ; MiKTeX
+  # MiKTeX
   ReadRegStr $0 HKLM "SOFTWARE\MiKTeX.org\MiKTeX" "OnlyWithLyX"
   ${if} $0 == "Yes${PRODUCT_VERSION_SHORT}"
    WriteRegStr HKLM "SOFTWARE\MiKTeX.org\MiKTeX" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}"
    StrCpy $MiKTeXVersionVar ${MiKTeXDeliveredVersionOld}
   ${endif}
   
-  ; JabRef
+  # JabRef
   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${JabRefVersionOld}" "OnlyWithLyX"
   ${if} $0 == "Yes${PRODUCT_VERSION_SHORT}"
    WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\${JabRefVersionOld}" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}"
    StrCpy $JabRefVersionVar ${JabRefVersionOld}
   ${endif}
   
-  ; Aiksaurus
-  ReadRegStr $0 SHCTX "Software\Aiksaurus" "OnlyWithLyX" ; special entry to test if it was installed with LyX
+  # Aiksaurus
+  ReadRegStr $0 SHCTX "Software\Aiksaurus" "OnlyWithLyX" # special entry to test if it was installed with LyX
   ${if} $0 == "Yes${PRODUCT_VERSION_SHORT_OLD}"
    WriteRegStr HKLM "SOFTWARE\Aiksaurus" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}"
   ${endif}
   
-  ; ImageMagick
+  # ImageMagick
   ReadRegStr $0 SHCTX "Software\ImageMagick" "OnlyWithLyX"
   ${if} $0 == "Yes${PRODUCT_VERSION_SHORT_OLD}"
    WriteRegStr HKLM "SOFTWARE\ImageMagick" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}"
   ${endif}
   
-  ; Ghostscript and GSview
+  # Ghostscript and GSview
   ReadRegStr $0 HKLM "SOFTWARE\GPL Ghostscript" "OnlyWithLyX"
   ${if} $0 == "Yes${PRODUCT_VERSION_SHORT_OLD}"
    WriteRegStr HKLM "SOFTWARE\GPL Ghostscript" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}"