Index: lams_build/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_build/build.xml,v
diff -u -r1.99 -r1.100
--- lams_build/build.xml 26 Feb 2012 19:53:15 -0000 1.99
+++ lams_build/build.xml 6 Mar 2012 11:16:14 -0000 1.100
@@ -121,8 +121,6 @@
-
-
@@ -169,7 +167,7 @@
-
+
@@ -201,7 +199,16 @@
-
+
+
+
+
+
+
+
+
+
+
@@ -491,7 +498,9 @@
-
+
+
+
Index: lams_build/buildcombinedtasks.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_build/Attic/buildcombinedtasks.xml,v
diff -u -r1.4 -r1.5
--- lams_build/buildcombinedtasks.xml 28 Oct 2009 05:23:33 -0000 1.4
+++ lams_build/buildcombinedtasks.xml 6 Mar 2012 11:16:14 -0000 1.5
@@ -16,13 +16,14 @@
-
+
-
+
+
+
+
-
-
@@ -60,11 +61,6 @@
-
-
-
-
-
@@ -77,17 +73,10 @@
configFile="${assembly.activity}/deploy.xml"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
/>
-
-
-
-
-
-
-
Copying language files
@@ -98,7 +87,7 @@
Index: lams_build/common.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_build/common.properties,v
diff -u -r1.38 -r1.39
--- lams_build/common.properties 30 Jul 2009 18:23:15 -0000 1.38
+++ lams_build/common.properties 6 Mar 2012 11:16:14 -0000 1.39
@@ -42,21 +42,44 @@
#deploy tool directory
tag.web.dir=../lams_central/web/WEB-INF
-#database access
-db.name=${conf.application}
+
+#=========DATABASE PROPERTIES==========
+db.driver.dir=${sharedlib}/mysql/
db.driver=com.mysql.jdbc.Driver
-db.url=jdbc:mysql://localhost/${db.name}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true
+db.name=${conf.application}
db.encoding=utf8
db.username=lams
db.password=lamsdemo
-db.driver.jar=${sharedlib}/mysql/mysql-connector-java-5.0.8-bin.jar
db.scripts=${basedir}/db/sql
db.schema=
db.catalog=
-
# db scripts
lamsconf.table.sql=insert_${conf.application}_${osPropertiesName}_config_data.sql
+
+# Basedir of embedded MySQL server. This is also the place where data is stored.
+# Set it if you use MXJ for running and/or building LAMS.
+db.location=C:/${conf.application}/database
+
+# To build LAMS using standalone MySQL server, use properties below
+db.url.build=jdbc:mysql://localhost:3306/${db.name}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true
+db.url.init.build=${db.url.build}
+
+# To build LAMS using embedded MySQL server, use properties below
+# If you build LAMS this way, you will also need to run it using the embedded server.
+# db.config.build configuration is a replacement for my.ini and it's optional. If left blank, server defaults will be used.
+#db.config.build=&server.skip-external-locking&server.key_buffer_size=16K&server.max_allowed_packet=1M&server.table_open_cache=4&server.sort_buffer_size=64K&server.read_buffer_size=256K&server.read_rnd_buffer_size=257K&server.net_buffer_length=2K&server.thread_stack=128K
+#db.url.build=jdbc:mysql:mxj://localhost:13306/${db.name}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true&server.basedir=${db.location}${db.config.build}
+#db.url.init.build=${db.url.build}&server.initialize-user=true&createDatabaseIfNotExist=true
+
+# To run LAMS using standalone MySQL server, use properties below
+db.url.run=jdbc:mysql://localhost:3306/${db.name}
+
+# To run LAMS using embedded MySQL server, use properties below
+#db.url.run=jdbc:mysql:mxj://localhost:13306/${db.name}
+
+#======END OF DATABASE PROPERTIES=======
+
#xdoclet version number
xdoclet.version=1.2.3
Index: lams_build/conf/unix/jboss/service/mysql-ds.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_build/conf/unix/jboss/service/mysql-ds.xml,v
diff -u -r1.8 -r1.9
--- lams_build/conf/unix/jboss/service/mysql-ds.xml 1 Jul 2009 02:48:32 -0000 1.8
+++ lams_build/conf/unix/jboss/service/mysql-ds.xml 6 Mar 2012 11:16:14 -0000 1.9
@@ -9,12 +9,26 @@
jdbc/lams-ds
- jdbc:mysql://localhost:3306/@db.name@
- com.mysql.jdbc.Driver
+ @db.url.run@
+ @db.driver@
utf8
convertToNull
+
+
+ @db.location@
+ false
+ false
+ 16K
+ 1M
+ 4
+ 64K
+ 256K
+ 256K
+ 2K
+ 128K
+
TRANSACTION_READ_COMMITTED
@db.username@
Index: lams_build/conf/windows/jboss/service/mysql-ds.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_build/conf/windows/jboss/service/mysql-ds.xml,v
diff -u -r1.7 -r1.8
--- lams_build/conf/windows/jboss/service/mysql-ds.xml 26 Mar 2009 10:00:27 -0000 1.7
+++ lams_build/conf/windows/jboss/service/mysql-ds.xml 6 Mar 2012 11:16:14 -0000 1.8
@@ -9,12 +9,26 @@
jdbc/lams-ds
- jdbc:mysql://localhost:3306/@db.name@
- com.mysql.jdbc.Driver
+ @db.url.run@
+ @db.driver@
utf8
convertToNull
+
+
+ @db.location@
+ false
+ false
+ 16K
+ 1M
+ 4
+ 64K
+ 256K
+ 256K
+ 2K
+ 128K
+
TRANSACTION_READ_COMMITTED
@db.username@
Index: lams_build/deploy-tool/lib/lams-tool-deploy.jar
===================================================================
RCS file: /usr/local/cvsroot/lams_build/deploy-tool/lib/lams-tool-deploy.jar,v
diff -u -r1.29 -r1.30
Binary files differ
Index: lams_build/lib/mysql/.cvsignore
===================================================================
RCS file: /usr/local/cvsroot/lams_build/lib/mysql/.cvsignore,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ lams_build/lib/mysql/.cvsignore 6 Mar 2012 11:16:14 -0000 1.1
@@ -0,0 +1 @@
+mysql-connector-mxj-*.jar
Index: lams_common/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_common/build.xml,v
diff -u -r1.73 -r1.74
--- lams_common/build.xml 13 Feb 2011 23:45:23 -0000 1.73
+++ lams_common/build.xml 6 Mar 2012 11:16:44 -0000 1.74
@@ -10,6 +10,7 @@
+
@@ -65,12 +66,12 @@
-
+
The JDBC driver you have specified by including one of the files in ${basedir}/config/database
- doesn't exist. You have to download this driver separately and put it in ${db.driver.jar}
+ doesn't exist. You have to download this driver separately and put it in ${db.driver.dir}
Please make sure you're using a version that is equal or superior to the one we looked for.
If you name the driver jar file differently, please update the database.driver.jar property
in the ${basedir}/config/database/xxx.xml file accordingly.
@@ -97,7 +98,7 @@
appname="learningdesign"
prefsdir="${middlegen}"
gui="${middlegen.gui}"
- databaseurl="${db.url}"
+ databaseurl="${db.url.build}"
driver="${db.driver}"
username="${db.username}"
password="${db.password}"
@@ -297,11 +298,19 @@
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -333,10 +342,10 @@
-
-
+
Index: lams_learning/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_learning/build.xml,v
diff -u -r1.30 -r1.31
--- lams_learning/build.xml 16 Oct 2008 06:23:35 -0000 1.30
+++ lams_learning/build.xml 6 Mar 2012 11:15:38 -0000 1.31
@@ -147,7 +147,7 @@
-
-
+
-
-
+
@@ -176,10 +176,10 @@
-
-
+
@@ -360,12 +360,14 @@
+------------------------------------------+
-
+
-
+
+
+
+
-
@@ -408,12 +410,6 @@
-
-
-
-
-
-
@@ -439,7 +435,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -474,11 +470,13 @@
-
-
+
+
-
-
+
+
+
+
Deploying the Assessment tool
-
+
-
+
-
+
-
+
@@ -339,10 +339,13 @@
+
+
+
-
+
@@ -386,12 +389,6 @@
-
-
-
-
-
-
@@ -416,7 +413,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -449,9 +446,12 @@
-
-
+
+
+
+
+
Deploying the Chat Tool
Index: lams_tool_daco/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_daco/build.xml,v
diff -u -r1.8 -r1.9
--- lams_tool_daco/build.xml 6 Apr 2009 17:07:20 -0000 1.8
+++ lams_tool_daco/build.xml 6 Mar 2012 11:15:48 -0000 1.9
@@ -150,20 +150,20 @@
-
-
+
-
-
+
@@ -172,10 +172,10 @@
-
-
+
@@ -306,12 +306,15 @@
+------------------------------------------+
-
+
-
+
+
+
+
-
+
@@ -354,12 +357,6 @@
-
-
-
-
-
-
@@ -385,7 +382,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrL="${db.url}"
+ dbDriverUrL="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -419,11 +416,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the Daco tool
Index: lams_tool_deploy/.classpath
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_deploy/.classpath,v
diff -u -r1.4 -r1.5
--- lams_tool_deploy/.classpath 16 Apr 2009 07:58:13 -0000 1.4
+++ lams_tool_deploy/.classpath 6 Mar 2012 11:16:28 -0000 1.5
@@ -3,17 +3,21 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_tool_deploy/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_deploy/build.xml,v
diff -u -r1.10 -r1.11
--- lams_tool_deploy/build.xml 13 Feb 2007 00:28:53 -0000 1.10
+++ lams_tool_deploy/build.xml 6 Mar 2012 11:16:28 -0000 1.11
@@ -7,6 +7,7 @@
+
@@ -19,6 +20,12 @@
+
+
+
+
+
+
Index: lams_tool_dimdim/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_dimdim/build.xml,v
diff -u -r1.4 -r1.5
--- lams_tool_dimdim/build.xml 6 Apr 2009 17:07:26 -0000 1.4
+++ lams_tool_dimdim/build.xml 6 Mar 2012 11:15:54 -0000 1.5
@@ -135,18 +135,18 @@
-
+
-
+
-
+
-
+
@@ -339,10 +339,13 @@
+
+
+
-
+
@@ -386,12 +389,6 @@
-
-
-
-
-
-
@@ -416,7 +413,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -449,9 +446,12 @@
-
-
+
+
+
+
+
Deploying the Dimdim Tool
Index: lams_tool_eadventure/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_eadventure/build.xml,v
diff -u -r1.4 -r1.5
--- lams_tool_eadventure/build.xml 12 Dec 2011 09:21:50 -0000 1.4
+++ lams_tool_eadventure/build.xml 6 Mar 2012 11:16:35 -0000 1.5
@@ -154,20 +154,20 @@
-
-
+
-
-
+
@@ -176,10 +176,10 @@
-
-
+
@@ -311,14 +311,17 @@
+------------------------------------------+
| Generate the deployment package. |
+------------------------------------------+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -362,12 +365,6 @@
-
-
-
-
-
-
@@ -392,7 +389,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -427,10 +424,13 @@
-
-
+
+
-
+
+
+
+
Deploying the Eadventure tool
Index: lams_tool_example/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_example/build.xml,v
diff -u -r1.15 -r1.16
--- lams_tool_example/build.xml 15 Feb 2007 04:47:39 -0000 1.15
+++ lams_tool_example/build.xml 6 Mar 2012 11:16:40 -0000 1.16
@@ -118,20 +118,20 @@
-
-
+
-
-
+
@@ -285,14 +285,17 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -326,12 +329,6 @@
-
-
-
-
-
-
@@ -355,7 +352,7 @@
outputPath="${build.deploy}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -387,10 +384,13 @@
-
-
+
+
-
+
+
+
+
Deploying the Example Tool
Index: lams_tool_forum/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_forum/build.xml,v
diff -u -r1.58 -r1.59
--- lams_tool_forum/build.xml 6 Oct 2010 10:16:15 -0000 1.58
+++ lams_tool_forum/build.xml 6 Mar 2012 11:16:26 -0000 1.59
@@ -154,20 +154,20 @@
-
-
+
-
-
+
@@ -176,10 +176,10 @@
-
-
+
@@ -339,12 +339,15 @@
+------------------------------------------+
-
+
-
+
+
+
+
-
+
@@ -389,12 +392,6 @@
-
-
-
-
-
-
@@ -420,7 +417,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -453,10 +450,13 @@
-
-
+
+
-
+
+
+
+
Deploying the Forum tool
Index: lams_tool_gmap/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_gmap/build.xml,v
diff -u -r1.7 -r1.8
--- lams_tool_gmap/build.xml 6 Apr 2009 17:08:01 -0000 1.7
+++ lams_tool_gmap/build.xml 6 Mar 2012 11:15:23 -0000 1.8
@@ -135,18 +135,18 @@
-
+
-
+
-
+
-
+
@@ -358,10 +358,13 @@
+
+
+
-
+
@@ -405,12 +408,6 @@
-
-
-
-
-
-
@@ -435,7 +432,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -467,11 +464,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the Gmap Tool
Index: lams_tool_images/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_images/build.xml,v
diff -u -r1.5 -r1.6
--- lams_tool_images/build.xml 9 Jun 2011 14:44:42 -0000 1.5
+++ lams_tool_images/build.xml 6 Mar 2012 11:16:21 -0000 1.6
@@ -156,20 +156,20 @@
-
-
+
-
-
+
@@ -178,10 +178,10 @@
-
-
+
@@ -310,14 +310,17 @@
+------------------------------------------+
| Generate the deployment package. |
+------------------------------------------+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -361,12 +364,6 @@
-
-
-
-
-
-
@@ -391,7 +388,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -425,12 +422,14 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the ImageGallery tool
-
-
+
-
-
+
@@ -176,10 +176,10 @@
-
-
+
@@ -311,14 +311,17 @@
+------------------------------------------+
| Generate the deployment package. |
+------------------------------------------+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -362,12 +365,6 @@
-
-
-
-
-
-
@@ -392,7 +389,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -426,12 +423,14 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the CommonCartridge tool
-
+
The JDBC driver you have specified by including one of the files in ${basedir}/config/database
- doesn't exist. You have to download this driver separately and put it in ${db.driver.jar}
+ doesn't exist. You have to download this driver separately and put it in ${db.driver.dir}
Please make sure you're using a version that is equal or superior to the one we looked for.
- If you name the driver jar file differently, please update the db.driver.jar property
+ If you name the driver jar file differently, please update the db.driver.dir property
in the ${basedir}/config/database/xxx.xml file accordingly.
@@ -73,7 +73,7 @@
-
-
+
@@ -302,10 +302,10 @@
-
-
+
@@ -320,12 +320,15 @@
-
+
-
+
+
+
+
-
+
@@ -369,12 +372,6 @@
-
-
-
-
-
-
@@ -399,7 +396,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -430,11 +427,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the MCQ tool
Index: lams_tool_laqa/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_laqa/build.xml,v
diff -u -r1.49 -r1.50
--- lams_tool_laqa/build.xml 28 Feb 2011 12:21:58 -0000 1.49
+++ lams_tool_laqa/build.xml 6 Mar 2012 11:16:01 -0000 1.50
@@ -59,14 +59,14 @@
-
+
The JDBC driver you have specified by including one of the files in ${basedir}/config/database
- doesn't exist. You have to download this driver separately and put it in ${db.driver.jar}
+ doesn't exist. You have to download this driver separately and put it in ${db.driver.dir}
Please make sure you're using a version that is equal or superior to the one we looked for.
- If you name the driver jar file differently, please update the db.driver.jar property
+ If you name the driver jar file differently, please update the db.driver.dir property
in the ${basedir}/config/database/xxx.xml file accordingly.
@@ -76,7 +76,7 @@
-
+
@@ -255,9 +255,9 @@
-
+
-
+
@@ -269,9 +269,9 @@
-
+
-
+
@@ -287,10 +287,13 @@
+
+
+
-
+
@@ -334,12 +337,6 @@
-
-
-
-
-
-
@@ -357,7 +354,7 @@
-
+
@@ -386,11 +383,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the QA tool
Index: lams_tool_larsrc/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_larsrc/build.xml,v
diff -u -r1.26 -r1.27
--- lams_tool_larsrc/build.xml 18 Aug 2009 04:29:08 -0000 1.26
+++ lams_tool_larsrc/build.xml 6 Mar 2012 11:15:50 -0000 1.27
@@ -154,20 +154,20 @@
-
-
+
-
-
+
@@ -176,10 +176,10 @@
-
-
+
@@ -314,14 +314,17 @@
+------------------------------------------+
| Generate the deployment package. |
+------------------------------------------+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -365,12 +368,6 @@
-
-
-
-
-
-
@@ -395,7 +392,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -429,11 +426,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the Share Resources tool
Index: lams_tool_mindmap/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_mindmap/build.xml,v
diff -u -r1.2 -r1.3
--- lams_tool_mindmap/build.xml 6 Apr 2009 17:08:42 -0000 1.2
+++ lams_tool_mindmap/build.xml 6 Mar 2012 11:15:26 -0000 1.3
@@ -148,21 +148,21 @@
===================================================================
-->
-
-
+
-
-
+
@@ -400,14 +400,17 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -452,12 +455,6 @@
-
-
-
-
-
-
@@ -480,7 +477,7 @@
-
-
+
+
+
+
+
Deploying the Mindmap Tool
Index: lams_tool_nb/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_nb/build.xml,v
diff -u -r1.42 -r1.43
--- lams_tool_nb/build.xml 29 Feb 2012 21:30:20 -0000 1.42
+++ lams_tool_nb/build.xml 6 Mar 2012 11:16:07 -0000 1.43
@@ -133,30 +133,30 @@
-
-
+
-
-
+
-
+
-
+
-
+
-
+
@@ -368,10 +368,13 @@
+
+
+
-
+
@@ -415,12 +418,6 @@
-
-
-
-
-
-
@@ -445,7 +442,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -478,9 +475,12 @@
-
-
+
+
+
+
+
Deploying the Notebook Tool
Index: lams_tool_pixlr/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_pixlr/build.xml,v
diff -u -r1.4 -r1.5
--- lams_tool_pixlr/build.xml 24 Apr 2009 01:49:28 -0000 1.4
+++ lams_tool_pixlr/build.xml 6 Mar 2012 11:16:47 -0000 1.5
@@ -135,18 +135,18 @@
-
+
-
+
-
+
-
+
@@ -335,14 +335,17 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -386,12 +389,6 @@
-
-
-
-
-
-
@@ -416,7 +413,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -449,11 +446,13 @@
-
-
+
+
+
+
+
-
Deploying the Pixlr Tool
Index: lams_tool_sbmt/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_sbmt/build.xml,v
diff -u -r1.52 -r1.53
--- lams_tool_sbmt/build.xml 12 Apr 2011 12:21:32 -0000 1.52
+++ lams_tool_sbmt/build.xml 6 Mar 2012 11:15:28 -0000 1.53
@@ -56,7 +56,7 @@
-
+
@@ -76,7 +76,7 @@
-
-
+
@@ -312,10 +312,10 @@
-
-
+
@@ -329,12 +329,15 @@
-
+
-
+
+
+
+
-
+
@@ -378,12 +381,6 @@
-
-
-
-
-
-
@@ -408,7 +405,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="${db.driver}"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -441,10 +438,13 @@
-
-
+
+
-
+
+
+
+
Deploying the Submission tool
Index: lams_tool_scribe/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_scribe/build.xml,v
diff -u -r1.16 -r1.17
--- lams_tool_scribe/build.xml 6 Apr 2009 17:07:46 -0000 1.16
+++ lams_tool_scribe/build.xml 6 Mar 2012 11:15:31 -0000 1.17
@@ -135,18 +135,18 @@
-
+
-
+
-
+
-
+
@@ -335,14 +335,17 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -386,12 +389,6 @@
-
-
-
-
-
-
@@ -416,7 +413,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -450,9 +447,12 @@
-
-
+
+
+
+
+
Deploying the Scribe Tool
@@ -463,9 +463,9 @@
Index: lams_tool_spreadsheet/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_spreadsheet/build.xml,v
diff -u -r1.7 -r1.8
--- lams_tool_spreadsheet/build.xml 6 Apr 2009 17:08:22 -0000 1.7
+++ lams_tool_spreadsheet/build.xml 6 Mar 2012 11:15:20 -0000 1.8
@@ -150,20 +150,20 @@
-
-
+
-
-
+
@@ -172,10 +172,10 @@
-
-
+
@@ -308,14 +308,17 @@
+------------------------------------------+
| Generate the deployment package. |
+------------------------------------------+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -359,12 +362,6 @@
-
-
-
-
-
-
@@ -389,7 +386,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -423,11 +420,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the Spreadsheet tool
Index: lams_tool_survey/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_survey/build.xml,v
diff -u -r1.16 -r1.17
--- lams_tool_survey/build.xml 6 Apr 2009 17:09:03 -0000 1.16
+++ lams_tool_survey/build.xml 6 Mar 2012 11:15:43 -0000 1.17
@@ -151,20 +151,20 @@
-
-
+
-
-
+
@@ -173,10 +173,10 @@
-
-
+
@@ -307,12 +307,15 @@
+------------------------------------------+
-
+
-
+
+
+
+
-
+
@@ -356,12 +359,6 @@
-
-
-
-
-
-
@@ -386,7 +383,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -421,11 +418,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the Survey tool
Index: lams_tool_task/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_task/build.xml,v
diff -u -r1.7 -r1.8
--- lams_tool_task/build.xml 6 Apr 2009 17:07:53 -0000 1.7
+++ lams_tool_task/build.xml 6 Mar 2012 11:15:58 -0000 1.8
@@ -155,20 +155,20 @@
-
-
+
-
-
+
@@ -177,10 +177,10 @@
-
-
+
@@ -309,14 +309,17 @@
+------------------------------------------+
| Generate the deployment package. |
+------------------------------------------+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -360,12 +363,6 @@
-
-
-
-
-
-
@@ -390,7 +387,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -424,11 +421,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the TaskList tool
Index: lams_tool_videorecorder/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_videorecorder/build.xml,v
diff -u -r1.5 -r1.6
--- lams_tool_videorecorder/build.xml 7 May 2009 06:15:46 -0000 1.5
+++ lams_tool_videorecorder/build.xml 6 Mar 2012 11:16:32 -0000 1.6
@@ -135,18 +135,18 @@
-
+
-
+
-
+
-
+
@@ -358,10 +358,13 @@
+
+
+
-
+
@@ -405,12 +408,6 @@
-
-
-
-
-
-
@@ -435,7 +432,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -467,11 +464,14 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
Deploying the VideoRecorder Tool
Index: lams_tool_vote/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_vote/build.xml,v
diff -u -r1.23 -r1.24
--- lams_tool_vote/build.xml 10 Feb 2012 21:13:21 -0000 1.23
+++ lams_tool_vote/build.xml 6 Mar 2012 11:15:40 -0000 1.24
@@ -73,14 +73,14 @@
-
+
The JDBC driver you have specified by including one of the files in ${basedir}/config/database
- doesn't exist. You have to download this driver separately and put it in ${db.driver.jar}
+ doesn't exist. You have to download this driver separately and put it in ${db.driver.dir}
Please make sure you're using a version that is equal or superior to the one we looked for.
- If you name the driver jar file differently, please update the db.driver.jar property
+ If you name the driver jar file differently, please update the db.driver.dir property
in the ${basedir}/config/database/xxx.xml file accordingly.
@@ -93,7 +93,7 @@
-
-
+
@@ -318,10 +318,10 @@
-
-
+
@@ -334,14 +334,17 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -385,12 +388,6 @@
-
-
-
-
-
-
@@ -415,7 +412,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -448,10 +445,13 @@
-
-
+
+
-
+
+
+
+
Deploying the Voting tool
Index: lams_tool_wiki/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/build.xml,v
diff -u -r1.5 -r1.6
--- lams_tool_wiki/build.xml 30 Jul 2009 18:23:09 -0000 1.5
+++ lams_tool_wiki/build.xml 6 Mar 2012 11:16:16 -0000 1.6
@@ -152,18 +152,18 @@
-
+
-
+
-
+
-
+
@@ -387,10 +387,13 @@
+
+
+
-
+
@@ -434,12 +437,6 @@
-
-
-
-
-
-
@@ -464,7 +461,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -497,9 +494,12 @@
-
-
+
+
+
+
+
Deploying the Wiki Tool
Index: lams_tool_wookie/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wookie/build.xml,v
diff -u -r1.2 -r1.3
--- lams_tool_wookie/build.xml 6 Aug 2009 04:29:49 -0000 1.2
+++ lams_tool_wookie/build.xml 6 Mar 2012 11:16:23 -0000 1.3
@@ -135,18 +135,18 @@
-
+
-
+
-
+
-
+
@@ -336,14 +336,17 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -387,12 +390,6 @@
-
-
-
-
-
-
@@ -417,7 +414,7 @@
generateForInstallers="${generate.for.installers}"
dbPassword="${db.password}"
dbUsername="${db.username}"
- dbDriverUrl="${db.url}"
+ dbDriverUrl="${db.url.build}"
dbDriverClass="com.mysql.jdbc.Driver"
deployFiles="${build.deploy}/${product}.war,${build.deploy}/${product}.jar"
toolJarFileName="${product}.jar"
@@ -450,9 +447,12 @@
-
-
+
+
+
+
+
Deploying the Wookie Tool