Index: lams_contentrepository/.classpath
===================================================================
diff -u
--- lams_contentrepository/.classpath (revision 0)
+++ lams_contentrepository/.classpath (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_contentrepository/.project
===================================================================
diff -u
--- lams_contentrepository/.project (revision 0)
+++ lams_contentrepository/.project (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,28 @@
+
+
+ lams_contentrepository
+
+
+ lams_common
+
+
+
+ org.eclipse.jdt.core.javabuilder
+
+
+
+
+ com.ibm.sse.model.structuredbuilder
+
+
+
+
+ com.ibm.etools.validation.validationbuilder
+
+
+
+
+
+ org.eclipse.jdt.core.javanature
+
+
Index: lams_contentrepository/.xdoclet
===================================================================
diff -u
--- lams_contentrepository/.xdoclet (revision 0)
+++ lams_contentrepository/.xdoclet (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,2 @@
+
+
Index: lams_contentrepository/build.xml
===================================================================
diff -u
--- lams_contentrepository/build.xml (revision 0)
+++ lams_contentrepository/build.xml (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,311 @@
+
+
+
+
+]>
+
+
+
+
+ &properties;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ You must download several jar files before you can build Middlegen.
+ Execute the "download-deps" target. Then try to build again.
+
+ If you are behind a proxy, you should define the properties
+ http.proxyHost and http.proxyPort. Example:
+
+ ant -Dhttp.proxyHost=foo.com -Dhttp.proxyPort=8080
+
+ It's also possible to download the jars manually.
+
+
+
+
+
+
+
+
+ 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 ${database.driver.file}
+ 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.file property
+ in the ${basedir}/config/database/xxx.xml file accordingly.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_contentrepository/properties.xml
===================================================================
diff -u
--- lams_contentrepository/properties.xml (revision 0)
+++ lams_contentrepository/properties.xml (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_contentrepository/start_mysql.bat
===================================================================
diff -u
--- lams_contentrepository/start_mysql.bat (revision 0)
+++ lams_contentrepository/start_mysql.bat (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,25 @@
+@echo off
+
+:CHECK_HOME
+if not "%MYSQL_HOME%" == "" goto CHECK_MYSQL
+echo .
+echo Error: MYSQL_HOME is not set correctly.
+echo .
+goto END
+
+:CHECK_MYSQL
+
+if exist "%MYSQL_HOME%\bin\mysqld-nt.exe" goto RUN
+echo .
+echo Error: %MYSQL_HOME%\bin\mysqld-nt.exe not found.
+echo .
+goto END
+
+:RUN
+
+echo Starting MySQL daemon stand-alone...
+start "MySQL" "%MYSQL_HOME%\bin\mysqld-nt.exe" --standalone -l --default-table-type=InnoDB
+echo done!
+:END
+
+pause
Index: lams_contentrepository/stop_mysql.bat
===================================================================
diff -u
--- lams_contentrepository/stop_mysql.bat (revision 0)
+++ lams_contentrepository/stop_mysql.bat (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,26 @@
+@echo off
+
+:CHECK_HOME
+if not "%MYSQL_HOME%" == "" goto CHECK_MYSQL
+echo .
+echo Error: MYSQL_HOME is not set correctly.
+echo .
+goto END
+
+:CHECK_MYSQL
+
+if exist "%MYSQL_HOME%\bin\mysqladmin.exe" goto RUN
+echo .
+echo Error: %MYSQL_HOME%\bin\mysqladmin.exe not found.
+echo .
+goto END
+
+:RUN
+
+echo Shutting down MySQL daemon...
+start "MySQL" "%MYSQL_HOME%\bin\mysqladmin.exe" -u root shutdown
+echo done!
+:END
+
+pause
+
Index: lams_contentrepository/xdoclet-build.xml
===================================================================
diff -u
--- lams_contentrepository/xdoclet-build.xml (revision 0)
+++ lams_contentrepository/xdoclet-build.xml (revision 5442f0b50a7695f8bac06aaaf4da7321ca5e7110)
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+