Changes between Initial Version and Version 1 of InstallationGuidelines/Windows/Maintenance


Ignore:
Timestamp:
09/25/10 22:54:45 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/Windows/Maintenance

    v1 v1  
     1= Maintenance of the End-user =
     2
     3End-user Instructions: InstallationGuidelinesWindows
     4
     5 * {{{static/scripts/tools/standalone_exe.py}}}
     6  * Clean the Eden folder (databases/errors/sessions)
     7  * rename it as 'init'
     8  * Zip-up folder contents
     9  * Customise {{{NSIS\Contrib\zip2exe\Modern.nsh}}}:
     10{{{
     11!include "MUI.nsh"
     12!define MUI_ICON "c:\bin\web2py\applications\eden\static\favicon.ico"
     13
     14!insertmacro MUI_PAGE_DIRECTORY
     15!insertmacro MUI_PAGE_INSTFILES
     16
     17!insertmacro MUI_LANGUAGE "English"
     18
     19Section "install"
     20 
     21    ;Add files
     22    SetOutPath "$INSTDIR"
     23
     24    ;create desktop shortcut
     25    CreateShortCut "$DESKTOP\Sahana Eden.lnk" "$INSTDIR\web2py.exe" ""
     26 
     27    ;create start-menu shortcut
     28    CreateShortCut "$SMPROGRAMS\Sahana Eden.lnk" "$INSTDIR\web2py.exe"
     29
     30SectionEnd
     31}}}
     32  * use NSIS' {{{zip2exe.exe}}} to convert to an .exe
     33
     34----
     35[InstallationGuidelinesWindowsPythonInstaller Developer installer]
     36
     37BluePrintInstallerWindows