Index: win_installer/readme.txt =================================================================== RCS file: /usr/local/cvsroot/win_installer/Attic/readme.txt,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ win_installer/readme.txt 5 Dec 2006 02:03:45 -0000 1.1 @@ -0,0 +1,68 @@ +LAMS 2.0 - Learning Activity Management System +---------------------------------------------- + +This is a pre-packaged copy of LAMS 2.0 for Windows 2000, XP, or 2003. +For the source code, please see the 'Building LAMS' wiki at + + http://wiki.lamsfoundation.org/display/lams/Building+LAMS + +for more information. + + +1. Startup and Shutdown +======================= +To use LAMS 2.0, first make sure it is started - use the 'Start LAMS' shortcut +in the LAMSv2 Start Menu folder if you're not sure. MySQL must be running. + +While LAMS 2.0 is running, you may access the login page using the 'Access +LAMS' short cut in the LAMSv2 Start Menu folder. + +To stop LAMS 2.0, use the 'Stop LAMS' shortcut in the LAMSv2 Start Menu folder. + +2. Server Configuration +======================= +For single user installations (i.e., personal use on your own desktop), please +ignore this section. + +For server deployments, you will probably want to configure the default JVM +memory settings for your server. In C:\lams\jboss-4.0.2\bin\run.bat (or +wherever you installed LAMS 2.0), find the line near the bottom that says + + set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m + +and adjust the minimum and maximum amount of memory allocated there. + +We also recommend increasing the -XX:MaxPermSize option if you have more than +a couple of users. e.g. + + set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m -XX:MaxPermSize=128m + +For Sun JDK versions before 1.5.0_07, the default is 64m. If your Sun JDK +version is 1.5.0_07 or later, the default is 256m. + +3. Web Resources +================ + +Windows Installer Help wiki (includes download links) + + http://wiki.lamsfoundation.org/display/lamsdocs/Windows+Installer+Help + +LAMS 2.0 developer-oriented information + + http://wiki.lamsfoundation.org/display/lams + +LAMS 2.0 help documents + + http://wiki.lamsfoundation.org/display/lamsdocs + +Educational and technical forums for help and discussion + + http://www.lamscommunity.org + +LAMS 2.0 bug tracker + + https://bugs.lamsfoundation.org + +LAMS Foundation + + http://www.lamsfoundation.org Index: win_installer/src/installer.nsi =================================================================== RCS file: /usr/local/cvsroot/win_installer/src/Attic/installer.nsi,v diff -u -r1.28 -r1.29 --- win_installer/src/installer.nsi 4 Dec 2006 06:44:08 -0000 1.28 +++ win_installer/src/installer.nsi 5 Dec 2006 02:03:45 -0000 1.29 @@ -22,12 +22,6 @@ /* $$Id$$ */ -/* - * TODO: uninstaller option to keep database/repository - * TODO: installer option to use existing db/repo - * TODO: desktop icons, readme? - */ - # includes !include "TextFunc.nsh" !include "Functions.nsh" @@ -39,7 +33,7 @@ !insertmacro LineFind # constants -!define VERSION "2.0 RC2" +!define VERSION "2.0" !define SOURCE_JBOSS_HOME "D:\jboss-4.0.2" ; location of jboss where lams was deployed !define REG_HEAD "Software\LAMS Foundation\LAMSv2" @@ -78,8 +72,10 @@ # display finish page stuff !define MUI_FINISHPAGE_RUN $INSTDIR\lams-start.exe -!define MUI_FINISHPAGE_RUN_TEXT "Start LAMS now." +!define MUI_FINISHPAGE_RUN_TEXT "Start LAMS now" ;!define MUI_FINISHPAGE_TEXT "The LAMS Server has been successfully installed on your computer." +!define MUI_FINISHPAGE_SHOWREADME $INSTDIR\readme.txt +!define MUI_FINISHPAGE_SHOWREADME_TEXT "Open the readme file" !define MUI_FINISHPAGE_LINK "Visit LAMS Community" !define MUI_FINISHPAGE_LINK_LOCATION "http://www.lamscommunity.org" @@ -230,6 +226,8 @@ SetOutPath $INSTDIR File /a "..\build\lams-start.exe" File /a "..\build\lams-stop.exe" + File /a "..\license.txt" + File /a "..\readme.txt" Call SetupStartMenu ${if} $RETAIN_FILES == "1"