Index: win_installer/database/dump.sql =================================================================== RCS file: /usr/local/cvsroot/win_installer/database/dump.sql,v diff -u -r1.6 -r1.7 Binary files differ Index: win_installer/installer/documents/license.txt =================================================================== RCS file: /usr/local/cvsroot/win_installer/installer/documents/license.txt,v diff -u -r1.1 -r1.2 --- win_installer/installer/documents/license.txt 21 Apr 2008 06:44:23 -0000 1.1 +++ win_installer/installer/documents/license.txt 27 Dec 2010 13:36:44 -0000 1.2 @@ -1,9 +1,12 @@ -LAMS 2.1 RC1 is released under the GPL license detailed below. This package +LAMS 2.3.5 is released under the GPL license detailed below. This package also includes other libraries/packages, whose respective licenses are detailed below. Library/Package License -------------------------------------------------------------------------------- +aspirin.jar Apache License 2.0 +batik-1.7.ja Apache License 2.0 +dnsjava-2.0.6.jar BSD License wrapper.jar Silver Egg Techology License (see license-wrapper.txt) antlr.jar Antlr 3 License axis-ant.jar Apache License 2.0 @@ -60,7 +63,7 @@ xpp3-1.1.3.4d_b4.jar XPP3 License xstream-1.1.jar xstream Licanse -SHARE RECOURCES LIBRARY LICENSES +SHARE RESOURCES LIBRARY LICENSES castor-0.9.5.3-xml.jar Castor License jdom.jar Jdom Jar License moonunitsrc.jar Reload License Index: win_installer/installer/documents/readme.txt =================================================================== RCS file: /usr/local/cvsroot/win_installer/installer/documents/readme.txt,v diff -u -r1.1 -r1.2 --- win_installer/installer/documents/readme.txt 21 Apr 2008 06:44:23 -0000 1.1 +++ win_installer/installer/documents/readme.txt 27 Dec 2010 13:36:44 -0000 1.2 @@ -1,18 +1,8 @@ -LAMS 2.1 RC1 - Learning Activity Management System +LAMS 2.3.5 Learning Activity Management System ---------------------------------------------- -This is a pre-packaged copy of LAMS 2.1 RC1 for Windows 2000, XP, or 2003. -It is designed for LAMS users to explore the new Branching and Optional -Sequences features. We would love some feedback on things you like, things -you don't like, or suggestions for improvements in the wording or icons on -the branching screens. +This is a pre-packaged copy of LAMS 2.3.5 for Windows. -This is a "play" version of LAMS. It is NOT designed for production and you -will NOT be able to upgrade it to the real LAMS 2.1. - -If you want to install a production version of LAMS, you should -install LAMS 2.0.4. - 1. Startup and Shutdown ======================= To use LAMS 2, first make sure it is started - use the 'Start LAMS' shortcut Index: win_installer/installer/src/build.xml =================================================================== RCS file: /usr/local/cvsroot/win_installer/installer/src/build.xml,v diff -u -r1.1 -r1.2 --- win_installer/installer/src/build.xml 18 Dec 2007 02:01:48 -0000 1.1 +++ win_installer/installer/src/build.xml 27 Dec 2010 13:35:57 -0000 1.2 @@ -81,11 +81,12 @@ + encoding="utf8" + keepformat="yes"> Index: win_installer/installer/src/installer.nsi =================================================================== RCS file: /usr/local/cvsroot/win_installer/installer/src/installer.nsi,v diff -u -r1.5 -r1.6 --- win_installer/installer/src/installer.nsi 17 Jun 2008 03:28:26 -0000 1.5 +++ win_installer/installer/src/installer.nsi 27 Dec 2010 13:35:58 -0000 1.6 @@ -34,25 +34,26 @@ !insertmacro LineFind # constants -!define VERSION "2.1 RC1" -!define LANGUAGE_PACK_VERSION "2008-03-15" -!define LANGUAGE_PACK_VERSION_INT "20080315" -!define DATE_TIME_STAMP "200803151000" -!define SERVER_VERSION_NUMBER "2.0.99.200803121303" -!define BASE_VERSION "2.0" -!define SOURCE_JBOSS_HOME "D:\jboss-4.0.2" ; location of jboss where lams was deployed +!define VERSION "2.3.5" +!define LANGUAGE_PACK_VERSION "2010-12-15" +!define LANGUAGE_PACK_VERSION_INT "20101215" +!define DATE_TIME_STAMP "201012151000" +!define SERVER_VERSION_NUMBER "2.3.5.201012151303" +!define BASE_VERSION "2.3" +!define SOURCE_JBOSS_HOME "C:\jboss-4.0.2" ; location of jboss where lams was deployed !define REG_HEAD "Software\LAMS Foundation\LAMSv2" !define BASE_DEV_DIR "..\..\" !define BUILD "..\..\build\" !define DATABASE "..\..\database\" +!define DEFAULT_REPOSITORY "..\..\repository\" # installer settings !define MUI_ICON "..\graphics\lams2.ico" !define MUI_UNICON "..\graphics\lams2.ico" Name "LAMS ${VERSION}" ;BrandingText "LAMS ${VERSION} -- built on ${__TIMESTAMP__}" BrandingText "LAMS ${VERSION} -- built on ${__DATE__} ${__TIME__}" -OutFile "${BUILD}\LAMS-2.1-RC1.exe" +OutFile "${BUILD}\LAMS-2.3.5.exe" InstallDir "C:\lams" InstallDirRegKey HKLM "${REG_HEAD}" "" LicenseForceSelection radiobuttons "I Agree" "I Do Not Agree" @@ -64,10 +65,7 @@ # set welcome page !define MUI_WELCOMEPAGE_TITLE "LAMS ${VERSION} Install Wizard" -!define MUI_WELCOMEPAGE_TEXT "This wizard will guide you through the installation of LAMS ${VERSION}.\r\n\r\n\ - LAMS 2.1 RC1 has been released for users to explore the new Branching features coming in LAMS 2.1.\r\n\r\n\ - Do NOT use this installer to set up production server for LAMS.\r\n\r\n\ - You cannot use this installer to upgrade an existing copy of LAMS 2.0.\r\n\r\n\ +!define MUI_WELCOMEPAGE_TEXT "This wizard will guide you through the installation of LAMS ${VERSION}.\r\n\r\n\ Please ensure you have a copy of MySQL 5.x installed and running, and Java JDK version 1.5.x. or 1.6.x\r\n\r\n\ Click Next to continue." @@ -198,8 +196,10 @@ CreateDirectory "$INSTDIR\dump" CreateDirectory "$LAMS_REPOSITORY" - - # Log mode is set to INFO in this template + SetOutPath "$LAMS_REPOSITORY" + File /r "${DEFAULT_REPOSITORY}\*" + + # Log mode is set to INFO in this template SetOutPath "$INSTDIR\jboss-4.0.2\server\default\conf" File /a "..\conf\log4j.xml" @@ -574,6 +574,7 @@ SetOutPath $INSTDIR File /r "${BASE_DEV_DIR}\apache-ant-1.6.5" File /r "${BASE_DEV_DIR}\zip" + SetOutPath $TEMP File "build.xml" File "..\templates\mysql-ds.xml" @@ -845,6 +846,7 @@ WriteRegStr HKLM "${REG_HEAD}" "dir_jdk" $JDK_DIR WriteRegStr HKLM "${REG_HEAD}" "dir_mysql" "$MYSQL_DIR\" WriteRegStr HKLM "${REG_HEAD}" "mysql_host" "$MYSQL_HOST" + WriteRegStr HKLM "${REG_HEAD}" "mysql_port" "3306" WriteRegStr HKLM "${REG_HEAD}" "dir_inst" $INSTDIR WriteRegStr HKLM "${REG_HEAD}" "dir_repository" $LAMS_REPOSITORY WriteRegStr HKLM "${REG_HEAD}" "version" "${VERSION}" @@ -1156,7 +1158,7 @@ ; DUMP the database file into the retained install directory CreateDirectory "$RETAIN_DIR" - Strcpy $4 "$0\bin\mysqldump -r $WINTEMP\lams\backup\lamsDump.sql $1 -u $2 -p$3" + Strcpy $4 "$0\bin\mysqldump --hex-blob-r $WINTEMP\lams\backup\lamsDump.sql $1 -u $2 -p$3" nsExec::ExecToStack $4 Pop $8 Pop $9 Index: win_installer/utils/src/backup.nsi =================================================================== RCS file: /usr/local/cvsroot/win_installer/utils/src/backup.nsi,v diff -u -r1.1 -r1.2 Binary files differ Index: win_installer/utils/src/lams-start.nsi =================================================================== RCS file: /usr/local/cvsroot/win_installer/utils/src/lams-start.nsi,v diff -u -r1.3 -r1.4 Binary files differ Index: win_installer/utils/src/ant/revert.xml =================================================================== RCS file: /usr/local/cvsroot/win_installer/utils/src/ant/revert.xml,v diff -u -r1.3 -r1.4 --- win_installer/utils/src/ant/revert.xml 26 May 2009 01:05:45 -0000 1.3 +++ win_installer/utils/src/ant/revert.xml 27 Dec 2010 13:44:02 -0000 1.4 @@ -5,7 +5,7 @@