Index: lams_build/build.xml
===================================================================
diff -u -rc63a99d66e9ebb605672aeab4d591e72e0d962a4 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_build/build.xml (.../build.xml) (revision c63a99d66e9ebb605672aeab4d591e72e0d962a4)
+++ lams_build/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -121,8 +121,6 @@
-
-
@@ -169,7 +167,7 @@
-
+
@@ -201,7 +199,16 @@
-
+
+
+
+
+
+
+
+
+
+
@@ -491,7 +498,9 @@
-
+
+
+
Index: lams_build/buildcombinedtasks.xml
===================================================================
diff -u -rea2fc9d773d5151414fea0a71dba64ba36880cd0 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_build/buildcombinedtasks.xml (.../buildcombinedtasks.xml) (revision ea2fc9d773d5151414fea0a71dba64ba36880cd0)
+++ lams_build/buildcombinedtasks.xml (.../buildcombinedtasks.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r958ff334a0e0eefe817c84e80d6d87551ab43243 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_build/common.properties (.../common.properties) (revision 958ff334a0e0eefe817c84e80d6d87551ab43243)
+++ lams_build/common.properties (.../common.properties) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r2f21856ec2ab85b47c93cfcc3fa2c8769be65077 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_build/conf/unix/jboss/service/mysql-ds.xml (.../mysql-ds.xml) (revision 2f21856ec2ab85b47c93cfcc3fa2c8769be65077)
+++ lams_build/conf/unix/jboss/service/mysql-ds.xml (.../mysql-ds.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r126d84999e520648cb187e465cb4aaa3baad222e -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_build/conf/windows/jboss/service/mysql-ds.xml (.../mysql-ds.xml) (revision 126d84999e520648cb187e465cb4aaa3baad222e)
+++ lams_build/conf/windows/jboss/service/mysql-ds.xml (.../mysql-ds.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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/commons-collections.jar
===================================================================
diff -u -rbc4c13e34d34c094ad4ef1d23d3c8d630d6b5609 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_build/deploy-tool/lib/commons-io-1.0.jar
===================================================================
diff -u -rbc4c13e34d34c094ad4ef1d23d3c8d630d6b5609 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_build/deploy-tool/lib/commons-lang-2.0.jar
===================================================================
diff -u -rbc4c13e34d34c094ad4ef1d23d3c8d630d6b5609 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_build/deploy-tool/lib/commons-logging.jar
===================================================================
diff -u -rbc4c13e34d34c094ad4ef1d23d3c8d630d6b5609 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_build/deploy-tool/lib/lams-tool-deploy.jar
===================================================================
diff -u -rd2588e0437fdc1206a3a52a02a93c84e582dff44 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_build/deploy-tool/lib/mysql-connector-java-5.0.8-bin.jar
===================================================================
diff -u -r3cae36fc3c73c4ce595adc48b7ef2f8ac166daaf -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_build/deploy-tool/lib/xstream-1.1.2.jar
===================================================================
diff -u -rf697f404cc7d769569ca0a457f4e2ed28f47830e -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_build/lib/mysql/.cvsignore
===================================================================
diff -u
--- lams_build/lib/mysql/.cvsignore (revision 0)
+++ lams_build/lib/mysql/.cvsignore (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -0,0 +1 @@
+mysql-connector-mxj-*.jar
Index: lams_common/build.xml
===================================================================
diff -u -r6d0e19e0d48a4950c9afbb40823a2bc49c2bb5a5 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_common/build.xml (.../build.xml) (revision 6d0e19e0d48a4950c9afbb40823a2bc49c2bb5a5)
+++ lams_common/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rb5f1c6147aeaaec0f5084813209fe0cf59a1c386 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_learning/build.xml (.../build.xml) (revision b5f1c6147aeaaec0f5084813209fe0cf59a1c386)
+++ lams_learning/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_daco/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_daco/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r3cae36fc3c73c4ce595adc48b7ef2f8ac166daaf -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_deploy/.classpath (.../.classpath) (revision 3cae36fc3c73c4ce595adc48b7ef2f8ac166daaf)
+++ lams_tool_deploy/.classpath (.../.classpath) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -3,17 +3,21 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_tool_deploy/build.xml
===================================================================
diff -u -r3a8216a0f97d66b941870386f80f9288f2a4c4dc -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_deploy/build.xml (.../build.xml) (revision 3a8216a0f97d66b941870386f80f9288f2a4c4dc)
+++ lams_tool_deploy/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -7,6 +7,7 @@
+
@@ -19,6 +20,12 @@
+
+
+
+
+
+
Index: lams_tool_deploy/lib/jakarta-commmons/commons-collections.jar
===================================================================
diff -u -r60f8ad90ac03834ede1c4a45585f7f117d5844de -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_tool_deploy/lib/jakarta-commmons/commons-io-1.0.jar
===================================================================
diff -u -r5a1e4424a7fee54a37abf1504b699077bd9f41fa -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_tool_deploy/lib/jakarta-commmons/commons-lang-2.0.jar
===================================================================
diff -u -r5a1e4424a7fee54a37abf1504b699077bd9f41fa -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_tool_deploy/lib/jakarta-commmons/commons-logging.jar
===================================================================
diff -u -r5a1e4424a7fee54a37abf1504b699077bd9f41fa -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_tool_deploy/lib/junit/junit.jar
===================================================================
diff -u -ra174a94fcb9db22380a89926f460afbef0216c91 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_tool_deploy/lib/mysql/mysql-connector-java-5.0.8-bin.jar
===================================================================
diff -u -r3cae36fc3c73c4ce595adc48b7ef2f8ac166daaf -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_tool_deploy/lib/xstream/xstream-1.1.2.jar
===================================================================
diff -u -r491c46761832079b55758b07e6fb31e8ed70c4db -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
Binary files differ
Index: lams_tool_dimdim/build.xml
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_dimdim/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_dimdim/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r6ea6b66ee54c1f8523ca68af071fcf82caeb5e98 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_eadventure/build.xml (.../build.xml) (revision 6ea6b66ee54c1f8523ca68af071fcf82caeb5e98)
+++ lams_tool_eadventure/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rf124bb5b1ed07b1d5dca8e235453d8d1035a6215 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_example/build.xml (.../build.xml) (revision f124bb5b1ed07b1d5dca8e235453d8d1035a6215)
+++ lams_tool_example/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r8179037dc958585c054547eb7de9be14c6aed233 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_forum/build.xml (.../build.xml) (revision 8179037dc958585c054547eb7de9be14c6aed233)
+++ lams_tool_forum/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_gmap/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_gmap/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rba26f4ad68fd58cbf431a64bb597bf688221b1b9 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_images/build.xml (.../build.xml) (revision ba26f4ad68fd58cbf431a64bb597bf688221b1b9)
+++ lams_tool_images/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r2a3012f2276337d5f3b2e7eb2a30acc2d4af4176 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_laqa/build.xml (.../build.xml) (revision 2a3012f2276337d5f3b2e7eb2a30acc2d4af4176)
+++ lams_tool_laqa/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -ra20a8a284fe4d12369cefbec952022b58f437811 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_larsrc/build.xml (.../build.xml) (revision a20a8a284fe4d12369cefbec952022b58f437811)
+++ lams_tool_larsrc/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_mindmap/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_mindmap/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r93aa85a72fd9f1ae7500829c8371d4b90765a1b1 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_nb/build.xml (.../build.xml) (revision 93aa85a72fd9f1ae7500829c8371d4b90765a1b1)
+++ lams_tool_nb/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -re6db9414403d1ec43af7ffbe94a9efeb14b7ec79 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_pixlr/build.xml (.../build.xml) (revision e6db9414403d1ec43af7ffbe94a9efeb14b7ec79)
+++ lams_tool_pixlr/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -reab46de044a4c899fb8c8759c375402c6dba8783 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_sbmt/build.xml (.../build.xml) (revision eab46de044a4c899fb8c8759c375402c6dba8783)
+++ lams_tool_sbmt/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_scribe/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_scribe/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_spreadsheet/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_spreadsheet/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_survey/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_survey/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rd2057fdd8708c4c7e5665bdc3ee25b72212aaecb -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_task/build.xml (.../build.xml) (revision d2057fdd8708c4c7e5665bdc3ee25b72212aaecb)
+++ lams_tool_task/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -rf0bef7d11b4f82936c417e6e55c25fe9bfdb9a82 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_videorecorder/build.xml (.../build.xml) (revision f0bef7d11b4f82936c417e6e55c25fe9bfdb9a82)
+++ lams_tool_videorecorder/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r15dba48903f459fd983b525047ce21373d5a44ec -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_vote/build.xml (.../build.xml) (revision 15dba48903f459fd983b525047ce21373d5a44ec)
+++ lams_tool_vote/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r958ff334a0e0eefe817c84e80d6d87551ab43243 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_wiki/build.xml (.../build.xml) (revision 958ff334a0e0eefe817c84e80d6d87551ab43243)
+++ lams_tool_wiki/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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
===================================================================
diff -u -r705d4b051cba5f8acaf541cd23d0846b92d82869 -r09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a
--- lams_tool_wookie/build.xml (.../build.xml) (revision 705d4b051cba5f8acaf541cd23d0846b92d82869)
+++ lams_tool_wookie/build.xml (.../build.xml) (revision 09e1ed92cb07d7de4564f9dd3a0b4465d8c94e8a)
@@ -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