|
From: Johannes M. <j_m...@us...> - 2004-04-03 10:58:40
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6719 Modified Files: build.xml Log Message: added xindice target Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- build.xml 24 Feb 2004 12:47:10 -0000 1.8 +++ build.xml 3 Apr 2004 10:46:23 -0000 1.9 @@ -385,7 +385,7 @@ <!-- copy other web applications to webapps directory --> <antcall target="copyjetspeed"/> - + <antcall target="copyxindice"/> </target> <target name="copyjetspeed" if="jetspeed.home"> @@ -394,6 +394,12 @@ </copy> </target> +<target name="copyxindice" if="xindice_tomcat.home"> + <mkdir dir="${build.home}/webapps/xindice"/> + <copy todir="${build.home}/webapps/xindice"> + <fileset dir="${xindice-tomcat.home}" includes="**/*"/> + </copy> +</target> <!-- ==================== Start Targets ================================= --> <target name="start" depends="compile,prepare"> |
|
From: Johannes M. <j_m...@us...> - 2004-04-09 09:33:17
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6215 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- build.xml 3 Apr 2004 10:46:23 -0000 1.9 +++ build.xml 9 Apr 2004 09:19:55 -0000 1.10 @@ -397,7 +397,7 @@ <target name="copyxindice" if="xindice_tomcat.home"> <mkdir dir="${build.home}/webapps/xindice"/> <copy todir="${build.home}/webapps/xindice"> - <fileset dir="${xindice-tomcat.home}" includes="**/*"/> + <fileset dir="${xindice_tomcat.home}" includes="**/*"/> </copy> </target> |
|
From: Michael K. <ko...@us...> - 2004-05-28 12:54:10
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13890 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- build.xml 9 Apr 2004 09:19:55 -0000 1.10 +++ build.xml 28 May 2004 12:53:30 -0000 1.11 @@ -18,8 +18,8 @@ <property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> <property name="axis.home" value="/usr/proj/java/axis-1.1"/> <property name="dist.home" value="${basedir}/dist"/> -<property name="distbin" value="${basedir}/dist/cobricks2-v0.10"/> -<property name="distsrc" value="${basedir}/dist/cobricks2-v0.10-src"/> +<property name="distbin" value="${basedir}/dist/cobricks2-v0.20"/> +<property name="distsrc" value="${basedir}/dist/cobricks2-v0.20-src"/> <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> <property name="conf.home" value="${basedir}/conf"/> @@ -555,7 +555,7 @@ <target name="cwall" depends="compile"> <java fork="yes" classname="org.cobricks.cwall.CWall" classpathref="exec.classpath"> - <arg line="-lhttp://localhost:8080/services/user"/> + <arg line="-c src/org/cobricks/cwall/properties.txt"/> </java> </target> |
|
From: Michael K. <ko...@us...> - 2004-06-24 06:56:13
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5952 Modified Files: build.xml Log Message: Moving static config files to classes directory; some debugging in item and user components. Debugging database storage and retrieving in portal component. Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- build.xml 28 May 2004 12:53:30 -0000 1.11 +++ build.xml 24 Jun 2004 06:55:33 -0000 1.12 @@ -1,5 +1,8 @@ <!-- General purpose build script for web applications and web services. + + Please do not change this file for local development + installations, but add your property changes to build.properties --> <project name="cobricks-2" default="compile" basedir="."> |
|
From: Michael K. <ko...@us...> - 2004-07-05 08:10:07
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25495 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- build.xml 24 Jun 2004 06:55:33 -0000 1.12 +++ build.xml 5 Jul 2004 08:09:52 -0000 1.13 @@ -558,7 +558,7 @@ <target name="cwall" depends="compile"> <java fork="yes" classname="org.cobricks.cwall.CWall" classpathref="exec.classpath"> - <arg line="-c src/org/cobricks/cwall/properties.txt"/> + <arg line="-c conf -u testuser -p testpw"/> </java> </target> |
|
From: Michael K. <ko...@us...> - 2004-07-09 09:12:34
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19872 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- build.xml 8 Jul 2004 14:19:25 -0000 1.14 +++ build.xml 9 Jul 2004 09:12:22 -0000 1.15 @@ -22,8 +22,8 @@ <property name="axis.home" value="/usr/proj/java/axis-1.1"/> <property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> <property name="dist.home" value="${basedir}/dist"/> -<property name="distbin" value="${basedir}/dist/cobricks2-v0.20"/> -<property name="distsrc" value="${basedir}/dist/cobricks2-v0.20-src"/> +<property name="distbin" value="${basedir}/dist/cobricks2-v0.21"/> +<property name="distsrc" value="${basedir}/dist/cobricks2-v0.21-src"/> <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> <property name="conf.home" value="${basedir}/conf"/> @@ -65,7 +65,7 @@ </fileset> <!-- Include Xindice libraries --> - <fileset dir="${xindice.home}/webapps/xindice/WEB-INF/lib"> + <fileset dir="${xindice.home}/lib"> <include name="xml*.jar"/> <exclude name="xmldb-api-sdk*.jar"/> </fileset> @@ -394,7 +394,7 @@ </copy> <copy todir="${build.home}/webapps/ROOT/WEB-INF/lib"> - <fileset dir="${xindice.home}/webapps/xindice/WEB-INF/lib"> + <fileset dir="${xindice.home}/lib"> <include name="xml*.jar" if="xindice.home"/> <exclude name="xmldb-api-sdk*"/> </fileset> |
|
From: Ilian S. <sap...@us...> - 2004-07-11 13:07:11
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15821 Modified Files: build.xml Log Message: added migration section Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- build.xml 9 Jul 2004 09:12:22 -0000 1.15 +++ build.xml 11 Jul 2004 13:07:02 -0000 1.16 @@ -569,6 +569,10 @@ </java> </target> +<target name="migrate" depends="compile"> + <java fork="yes" classname="org.cobricks.util.migration.MigrationTool" + classpathref="exec.classpath"> + </java> +</target> -</project> - +</project> \ No newline at end of file |
|
From: Michael K. <ko...@us...> - 2004-07-27 07:12:38
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29423 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- build.xml 11 Jul 2004 13:07:02 -0000 1.16 +++ build.xml 27 Jul 2004 07:12:27 -0000 1.17 @@ -337,6 +337,51 @@ </target> +<target name="copydoc" + description="Copies documentation from Wiki to docs directory"> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc -O Cobricks2_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Env_doc -O Env_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Migration_doc -O Migration_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Core_doc -O Core_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/User_doc -O User_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Category_doc -O Category_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Context_doc -O Context_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Message_doc -O Message_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Portal_doc -O Portal_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Course_doc -O Course_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/CWall_doc -O CWall_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Voting_doc -O Voting_doc.html"/> + </exec> + <java classname="convFiles" fork="true" dir="docs"> + </java> +</target> + <!-- ==================== Prepare Target ================================ --> @@ -575,4 +620,4 @@ </java> </target> -</project> \ No newline at end of file +</project> |
|
From: Michael K. <ko...@us...> - 2004-08-27 07:08:22
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31138 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- build.xml 27 Jul 2004 07:12:27 -0000 1.17 +++ build.xml 27 Aug 2004 07:08:09 -0000 1.18 @@ -22,8 +22,8 @@ <property name="axis.home" value="/usr/proj/java/axis-1.1"/> <property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> <property name="dist.home" value="${basedir}/dist"/> -<property name="distbin" value="${basedir}/dist/cobricks2-v0.21"/> -<property name="distsrc" value="${basedir}/dist/cobricks2-v0.21-src"/> +<property name="distbin" value="${basedir}/dist/cobricks2-v0.22"/> +<property name="distsrc" value="${basedir}/dist/cobricks2-v0.22-src"/> <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> <property name="conf.home" value="${basedir}/conf"/> |
|
From: Ilian S. <sap...@us...> - 2004-09-11 13:43:53
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11322 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- build.xml 11 Sep 2004 13:22:42 -0000 1.19 +++ build.xml 11 Sep 2004 13:43:44 -0000 1.20 @@ -287,13 +287,13 @@ <target name="test_Windows_OS" depends="check_Windows_OS" if="is_Windows_OS"> -<echo message="Is checker-Windows"/> + <echo message="Is checker-Windows"/> </target> <target name="test_Unix_OS" depends="check_Unix_OS" if="is_Unix_OS"> -<echo message="Is checker-Unix"/> + <echo message="Is checker-Unix"/> </target> @@ -462,22 +462,6 @@ <antcall target="start_Unix_OS" /> </target> -<target name="restart"> - <antcall target="stop" /> - <antcall target="start" /> -</target> - -<target name="updateweb"> - <!-- Create build directories as needed --> - <mkdir dir="${build.home}"/> - <mkdir dir="${build.home}/webapps"/> - <mkdir dir="${build.home}/webapps/ROOT"/> - <!-- Copy static content of this web application --> - <copy todir="${build.home}/webapps/ROOT"> - <fileset dir="${web.home}"/> - </copy> -</target> - <target name="s"> <antcall target="start_Windows_OS" /> <antcall target="start_Unix_OS" /> @@ -492,13 +476,13 @@ <antcall target="stop_Windows_OS" /> <antcall target="stop_Unix_OS" /> </target> - + <target name="stop_Windows_OS" depends="check_Windows_OS" if="is_Windows_OS"> <echo message="********************************"/> <echo message="Stopping for Windows-environment"/> <echo message="********************************"/> <exec dir="." executable="${catalina.home}/bin/shutdown.bat"> - <!--env key="JAVA_HOME" path="${java.home}"/--> + <env key="JAVA_HOME" path="${java.home}"/> <env key="CATALINA_HOME" path="${catalina.home}"/> <env key="CATALINA_BASE" path="${build.home}"/> <arg line=""/> |
|
From: Michael K. <ko...@us...> - 2004-09-16 08:16:21
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2293 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- build.xml 11 Sep 2004 13:43:44 -0000 1.20 +++ build.xml 16 Sep 2004 08:16:11 -0000 1.21 @@ -571,17 +571,10 @@ </target> -<target name="wsdeploy" depends="compile"> - <java fork="yes" classname="org.apache.axis.client.AdminClient" - classpathref="exec.classpath"> - <arg line="-lhttp://localhost:8080/services/AdminService conf/org.cobricks.user/deploy.wsdd"/> - </java> -</target> - <target name="wsclient" depends="compile"> <java fork="yes" classname="org.cobricks.core.ws.clientWS" classpathref="exec.classpath"> - <arg line="-lhttp://localhost:8080/services/user"/> + <arg line="-lhttp://localhost:${catalina.serverport}/services/user"/> </java> </target> @@ -600,17 +593,10 @@ </target> -<target name="testldap"> - <java fork="yes" classname="org.cobricks.user.ldapClient" - classpathref="exec.classpath"> - <arg line=""/> - </java> -</target> - <target name="cwall" depends="compile"> <java fork="yes" classname="org.cobricks.cwall.CWall" classpathref="exec.classpath"> - <arg line="-c conf -u testuser -p testpw"/> + <arg line="-c conf -e http://localhost:${catalina.serverport}/ -u testuser -p testpw"/> </java> </target> |
|
From: Michael K. <ko...@us...> - 2004-09-16 14:40:23
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13455 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- build.xml 16 Sep 2004 08:16:11 -0000 1.21 +++ build.xml 16 Sep 2004 14:39:41 -0000 1.22 @@ -355,6 +355,9 @@ <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_doc.html"/> </exec> <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_BSCW_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/User_doc -O User_doc.html"/> </exec> <exec executable="/usr/bin/wget" dir="docs"> |
|
From: Michael K. <ko...@us...> - 2004-10-04 09:59:15
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14113 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- build.xml 16 Sep 2004 14:39:41 -0000 1.22 +++ build.xml 4 Oct 2004 09:59:02 -0000 1.23 @@ -29,6 +29,7 @@ <property name="conf.home" value="${basedir}/conf"/> <property name="web.home" value="${basedir}/web"/> <property name="weblib.home" value="${basedir}/web/WEB-INF/lib"/> +<property name="webappname" value="ROOT"/> <property name="catalina.serverport" value="8005"/> <property name="catalina.httpport" value="8080"/> @@ -86,7 +87,7 @@ </path> <path id="exec.classpath"> - <pathelement location="${build.home}/webapps/ROOT/WEB-INF/classes" /> + <pathelement location="${build.home}/webapps/${webappname}/WEB-INF/classes" /> <path refid="compile.classpath"/> </path> @@ -112,9 +113,9 @@ description="Compile Java sources"> <!-- Compile Java classes as necessary --> - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/classes"/> + <mkdir dir="${build.home}/webapps/${webappname}/WEB-INF/classes"/> <javac srcdir="${src.home}" - destdir="${build.home}/webapps/ROOT/WEB-INF/classes" + destdir="${build.home}/webapps/${webappname}/WEB-INF/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}"> @@ -127,10 +128,10 @@ <!-- Create RMI stubs and skeletons --> <rmic classname="org.cobricks.user.rpc.UserManagerRMIImpl" - base="${build.home}/webapps/ROOT/WEB-INF/classes" /> + base="${build.home}/webapps/${webappname}/WEB-INF/classes" /> <!-- Copy application resources --> - <copy todir="${build.home}/webapps/ROOT/WEB-INF/classes"> + <copy todir="${build.home}/webapps/${webappname}/WEB-INF/classes"> <fileset dir="${src.home}" excludes="**/*.java"/> </copy> @@ -184,34 +185,34 @@ <!-- Create JAR file for core components --> <jar destfile="${distbin}/web/WEB-INF/lib/cobricks.jar"> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/core/**" /> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/user/**" /> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/item/**" /> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/category/**" /> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/context/**" /> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/message/**" /> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/portal/**" /> </jar> <jar jarfile="${distbin}/web/WEB-INF/lib/cobricksVoting.jar"> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/voting/**" /> </jar> <jar jarfile="${distbin}/web/WEB-INF/lib/cobricksCourse.jar"> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/course/**" /> </jar> <jar jarfile="${distbin}/web/WEB-INF/lib/cobricksCwall.jar"> - <fileset dir="${build.home}/webapps/ROOT/WEB-INF/classes" + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/cwall/**" /> </jar> @@ -393,10 +394,10 @@ <!-- Create build directories as needed --> <mkdir dir="${build.home}"/> <mkdir dir="${build.home}/webapps"/> - <mkdir dir="${build.home}/webapps/ROOT"/> - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF"/> - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/conf"/> - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/classes"/> + <mkdir dir="${build.home}/webapps/${webappname}"/> + <mkdir dir="${build.home}/webapps/${webappname}/WEB-INF"/> + <mkdir dir="${build.home}/webapps/${webappname}/WEB-INF/conf"/> + <mkdir dir="${build.home}/webapps/${webappname}/WEB-INF/classes"/> <mkdir dir="${build.home}/conf"/> <mkdir dir="${build.home}/logs"/> @@ -415,12 +416,12 @@ value="${catalina.httpsport}" /> <!-- Copy static content of this web application --> - <copy todir="${build.home}/webapps/ROOT"> + <copy todir="${build.home}/webapps/${webappname}"> <fileset dir="${web.home}"/> </copy> <!-- copy Cobricks configuration --> - <copy todir="${build.home}/webapps/ROOT/WEB-INF/conf"> + <copy todir="${build.home}/webapps/${webappname}/WEB-INF/conf"> <fileset dir="${conf.home}"/> </copy> @@ -434,14 +435,14 @@ <fileset dir="${basedir}/tomcat/webapps" excludes="**/CVS"/> </copy> - <copy todir="${build.home}/webapps/ROOT/WEB-INF/lib"> + <copy todir="${build.home}/webapps/${webappname}/WEB-INF/lib"> <fileset dir="${axis.home}/webapps/axis/WEB-INF/lib"> <include name="*"/> <exclude name="commons-logging.jar"/> </fileset> </copy> - <copy todir="${build.home}/webapps/ROOT/WEB-INF/lib"> + <copy todir="${build.home}/webapps/${webappname}/WEB-INF/lib"> <fileset dir="${xindice.home}/lib"> <include name="xml*.jar" if="xindice.home"/> <exclude name="xmldb-api-sdk*"/> |
|
From: Michael K. <ko...@us...> - 2004-10-14 06:01:43
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27999 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- build.xml 4 Oct 2004 09:59:02 -0000 1.23 +++ build.xml 14 Oct 2004 06:01:12 -0000 1.24 @@ -22,8 +22,8 @@ <property name="axis.home" value="/usr/proj/java/axis-1.1"/> <property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> <property name="dist.home" value="${basedir}/dist"/> -<property name="distbin" value="${basedir}/dist/cobricks2-v0.22"/> -<property name="distsrc" value="${basedir}/dist/cobricks2-v0.22-src"/> +<property name="distbin" value="${basedir}/dist/cobricks2-v0.23"/> +<property name="distsrc" value="${basedir}/dist/cobricks2-v0.23-src"/> <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> <property name="conf.home" value="${basedir}/conf"/> @@ -218,7 +218,15 @@ <!-- and make JAR file --> <jar jarfile="${distbin}.jar" basedir="${distbin}" /> - + + <!-- finally, a WAR distribution ... --> + <copy file="${basedir}/conf/localproperties.txt.orig" tofile="${build.home}/webapps/ROOT/WEB-INF/conf/localproperties.txt" overwrite="true" /> + <jar destfile="${dist.home}/cobricks.war"> + <fileset dir="${build.home}/webapps/ROOT" + includes="*/**" /> + </jar> + <copy file="${basedir}/conf/localproperties.txt" tofile="${build.home}/webapps/ROOT/WEB-INF/conf/localproperties.txt" overwrite="true" /> + </target> <target name="distsrc" depends="" |
|
From: Michael K. <ko...@us...> - 2004-10-23 15:51:19
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6883 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- build.xml 14 Oct 2004 06:01:12 -0000 1.24 +++ build.xml 23 Oct 2004 15:51:10 -0000 1.25 @@ -17,7 +17,7 @@ <property name="app.path" value=""/> <property name="app.version" value="0.9"/> <property name="build.home" value="${basedir}/build"/> -<property name="java.home" value="/usr/proj/java/jdk1.4.2"/> +<property name="java.home.dir" value="/usr/proj/java/jdk1.4.2"/> <property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> <property name="axis.home" value="/usr/proj/java/axis-1.1"/> <property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> @@ -494,7 +494,7 @@ <echo message="Stopping for Windows-environment"/> <echo message="********************************"/> <exec dir="." executable="${catalina.home}/bin/shutdown.bat"> - <env key="JAVA_HOME" path="${java.home}"/> + <env key="JAVA_HOME" path="${java.home.dir}"/> <env key="CATALINA_HOME" path="${catalina.home}"/> <env key="CATALINA_BASE" path="${build.home}"/> <arg line=""/> @@ -506,7 +506,7 @@ <echo message="Stopping for Unix-environment"/> <echo message="*****************************"/> <exec dir="." executable="${catalina.home}/bin/shutdown.sh"> - <env key="JAVA_HOME" path="${java.home}"/> + <env key="JAVA_HOME" path="${java.home.dir}"/> <env key="CATALINA_HOME" path="${catalina.home}"/> <env key="CATALINA_BASE" path="${build.home}"/> <arg line=""/> @@ -518,6 +518,7 @@ <echo message="Starting for Windows-environment"/> <echo message="********************************"/> <exec dir="." executable="${catalina.home}/bin/startup-run.bat"> + <env key="JAVA_HOME" path="${java.home.dir}"/> <env key="CATALINA_HOME" path="${catalina.home}"/> <env key="CATALINA_BASE" path="${build.home}"/> <arg line=""/> @@ -529,6 +530,7 @@ <echo message="Starting for Unix-environment"/> <echo message="*****************************"/> <exec dir="." executable="${catalina.home}/bin/startup-run.sh"> + <env key="JAVA_HOME" path="${java.home.dir}"/> <env key="CATALINA_HOME" path="${catalina.home}"/> <env key="CATALINA_BASE" path="${build.home}"/> <arg line=""/> @@ -540,7 +542,7 @@ <echo message="Starting in background-mode for Windows-environment"/> <echo message="***************************************************"/> <exec dir="." executable="${catalina.home}/bin/startup.bat"> - <env key="JAVA_HOME" path="${java.home}"/> + <env key="JAVA_HOME" path="${java.home.dir}"/> <env key="CATALINA_HOME" path="${catalina.home}"/> <env key="CATALINA_BASE" path="${build.home}"/> <arg line=""/> @@ -552,7 +554,7 @@ <echo message="Starting in background-mode for Unix-environment"/> <echo message="************************************************"/> <exec dir="." executable="${catalina.home}/bin/startup.sh"> - <env key="JAVA_HOME" path="${java.home}"/> + <env key="JAVA_HOME" path="${java.home.dir}"/> <env key="CATALINA_HOME" path="${catalina.home}"/> <env key="CATALINA_BASE" path="${build.home}"/> <arg line=""/> |
|
From: Ilian S. <sap...@us...> - 2004-10-27 15:58:34
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv908 Modified Files: build.xml Log Message: Added RESTART and UPDATEWEB targets Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- build.xml 23 Oct 2004 15:51:10 -0000 1.25 +++ build.xml 27 Oct 2004 15:58:25 -0000 1.26 @@ -473,6 +473,11 @@ <antcall target="start_Windows_OS" /> <antcall target="start_Unix_OS" /> </target> + +<target name="restart"> + <antcall target="stop" /> + <antcall target="start" /> +</target> <target name="s"> <antcall target="start_Windows_OS" /> @@ -619,5 +624,17 @@ classpathref="exec.classpath"> </java> </target> + +<target name="updateweb"> + <!-- Create build directories as needed --> + <mkdir dir="${build.home}"/> + <mkdir dir="${build.home}/webapps"/> + <mkdir dir="${build.home}/webapps/ROOT"/> + <!-- Copy static content of this web application --> + <copy todir="${build.home}/webapps/ROOT"> + <fileset dir="${web.home}"/> + </copy> +</target> + </project> |
|
From: Michael K. <ko...@us...> - 2004-11-04 17:32:20
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21206 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- build.xml 27 Oct 2004 15:58:25 -0000 1.26 +++ build.xml 4 Nov 2004 17:32:01 -0000 1.27 @@ -352,6 +352,9 @@ <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc -O Cobricks2_doc.html"/> </exec> <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH -r --ignore-tags=a --accept=gif,png,jpg --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Env_doc -O Env_doc.html"/> </exec> <exec executable="/usr/bin/wget" dir="docs"> @@ -625,6 +628,13 @@ </java> </target> +<target name="adminuser" depends="compile"> + <java fork="yes" classname="org.cobricks.util.createAdminUser" + classpathref="exec.classpath"> + <arg line="-c conf"/> + </java> +</target> + <target name="updateweb"> <!-- Create build directories as needed --> <mkdir dir="${build.home}"/> |
|
From: Florian F. <flo...@us...> - 2004-12-03 23:15:09
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24275 Modified Files: build.xml Log Message: Various improvements to enable the community feature Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- build.xml 4 Nov 2004 17:32:01 -0000 1.27 +++ build.xml 3 Dec 2004 23:14:29 -0000 1.28 @@ -17,10 +17,10 @@ <property name="app.path" value=""/> <property name="app.version" value="0.9"/> <property name="build.home" value="${basedir}/build"/> -<property name="java.home.dir" value="/usr/proj/java/jdk1.4.2"/> -<property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> -<property name="axis.home" value="/usr/proj/java/axis-1.1"/> -<property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> +<property name="java.home.dir" value="/usr/local/java/"/> +<property name="catalina.home" value="/usr/local/tomcat"/> +<property name="axis.home" value="/usr/local/axis"/> +<property name="xindice.home" value="/usr/local/xindice"/> <property name="dist.home" value="${basedir}/dist"/> <property name="distbin" value="${basedir}/dist/cobricks2-v0.23"/> <property name="distsrc" value="${basedir}/dist/cobricks2-v0.23-src"/> |
|
From: Michael K. <ko...@us...> - 2004-12-06 18:51:58
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25085 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- build.xml 3 Dec 2004 23:14:29 -0000 1.28 +++ build.xml 6 Dec 2004 18:51:39 -0000 1.29 @@ -22,8 +22,8 @@ <property name="axis.home" value="/usr/local/axis"/> <property name="xindice.home" value="/usr/local/xindice"/> <property name="dist.home" value="${basedir}/dist"/> -<property name="distbin" value="${basedir}/dist/cobricks2-v0.23"/> -<property name="distsrc" value="${basedir}/dist/cobricks2-v0.23-src"/> +<property name="distbin" value="${basedir}/dist/cobricks2-v0.30"/> +<property name="distsrc" value="${basedir}/dist/cobricks2-v0.30-src"/> <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> <property name="conf.home" value="${basedir}/conf"/> @@ -348,53 +348,26 @@ <target name="copydoc" description="Copies documentation from Wiki to docs directory"> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc -O Cobricks2_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH -r --ignore-tags=a --accept=gif,png,jpg --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Env_doc -O Env_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Migration_doc -O Migration_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Core_doc -O Core_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_BSCW_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/User_doc -O User_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Category_doc -O Category_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Context_doc -O Context_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Message_doc -O Message_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Portal_doc -O Portal_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Course_doc -O Course_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/CWall_doc -O CWall_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Voting_doc -O Voting_doc.html"/> + + <exec executable="/usr/local/dist/bin/wget" dir="docs"> + <arg line="-r -nc -nd -E -k -q -I /wiki/mw/images,/wiki/mw/index.php/ http://131.159.24.138/wiki/mw/index.php/Main_Page"/> </exec> - <java classname="convFiles" fork="true" dir="docs"> - </java> + + <delete> + <fileset dir="docs" includes="Special%3A*" /> + <fileset dir="docs" includes="Talk%3A*" /> + <fileset dir="docs" includes="Help%3A*" /> + <fileset dir="docs" includes="Image%3A*.html" /> + <fileset dir="docs" includes="CobricksWiki%3A*.html" /> + <fileset dir="docs" includes="Comparable.html" /> + <fileset dir="docs" includes="Current_events.html" /> + <fileset dir="docs" includes="*.doc" /> + </delete> + + <java classname="convFiles" fork="true" dir="docs" /> + + <copy file="docs/Main_Page.html" tofile="docs/index.html"/> + </target> |
|
From: Mazan A. <ma...@us...> - 2004-12-08 21:33:59
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26905 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- build.xml 6 Dec 2004 18:51:39 -0000 1.29 +++ build.xml 8 Dec 2004 21:33:18 -0000 1.30 @@ -17,10 +17,10 @@ <property name="app.path" value=""/> <property name="app.version" value="0.9"/> <property name="build.home" value="${basedir}/build"/> -<property name="java.home.dir" value="/usr/local/java/"/> -<property name="catalina.home" value="/usr/local/tomcat"/> -<property name="axis.home" value="/usr/local/axis"/> -<property name="xindice.home" value="/usr/local/xindice"/> +<property name="java.home.dir" value="/usr/proj/java/jdk1.4.2"/> +<property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> +<property name="axis.home" value="/usr/proj/java/axis-1.1"/> +<property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> <property name="dist.home" value="${basedir}/dist"/> <property name="distbin" value="${basedir}/dist/cobricks2-v0.30"/> <property name="distsrc" value="${basedir}/dist/cobricks2-v0.30-src"/> |
|
From: Mazan A. <ma...@us...> - 2004-12-09 11:20:27
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29613 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- build.xml 8 Dec 2004 21:33:18 -0000 1.30 +++ build.xml 9 Dec 2004 11:20:06 -0000 1.31 @@ -17,10 +17,10 @@ <property name="app.path" value=""/> <property name="app.version" value="0.9"/> <property name="build.home" value="${basedir}/build"/> -<property name="java.home.dir" value="/usr/proj/java/jdk1.4.2"/> -<property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> -<property name="axis.home" value="/usr/proj/java/axis-1.1"/> -<property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> +<property name="java.home.dir" value="/usr/local/java"/> +<property name="catalina.home" value="/usr/local/tomcat"/> +<property name="axis.home" value="/usr/local/axis"/> +<property name="xindice.home" value="/usr/local/xindice"/> <property name="dist.home" value="${basedir}/dist"/> <property name="distbin" value="${basedir}/dist/cobricks2-v0.30"/> <property name="distsrc" value="${basedir}/dist/cobricks2-v0.30-src"/> |
|
From: Rene B. <bo...@us...> - 2004-12-29 19:26:08
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6905 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- build.xml 9 Dec 2004 11:20:06 -0000 1.31 +++ build.xml 29 Dec 2004 19:25:59 -0000 1.32 @@ -17,13 +17,13 @@ <property name="app.path" value=""/> <property name="app.version" value="0.9"/> <property name="build.home" value="${basedir}/build"/> -<property name="java.home.dir" value="/usr/local/java"/> -<property name="catalina.home" value="/usr/local/tomcat"/> -<property name="axis.home" value="/usr/local/axis"/> -<property name="xindice.home" value="/usr/local/xindice"/> +<property name="java.home.dir" value="/usr/proj/java/jdk1.4.2"/> +<property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> +<property name="axis.home" value="/usr/proj/java/axis-1.1"/> +<property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> <property name="dist.home" value="${basedir}/dist"/> -<property name="distbin" value="${basedir}/dist/cobricks2-v0.30"/> -<property name="distsrc" value="${basedir}/dist/cobricks2-v0.30-src"/> +<property name="distbin" value="${basedir}/dist/cobricks2-v0.23"/> +<property name="distsrc" value="${basedir}/dist/cobricks2-v0.23-src"/> <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> <property name="conf.home" value="${basedir}/conf"/> @@ -348,26 +348,53 @@ <target name="copydoc" description="Copies documentation from Wiki to docs directory"> - - <exec executable="/usr/local/dist/bin/wget" dir="docs"> - <arg line="-r -nc -nd -E -k -q -I /wiki/mw/images,/wiki/mw/index.php/ http://131.159.24.138/wiki/mw/index.php/Main_Page"/> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc -O Cobricks2_doc.html"/> </exec> - - <delete> - <fileset dir="docs" includes="Special%3A*" /> - <fileset dir="docs" includes="Talk%3A*" /> - <fileset dir="docs" includes="Help%3A*" /> - <fileset dir="docs" includes="Image%3A*.html" /> - <fileset dir="docs" includes="CobricksWiki%3A*.html" /> - <fileset dir="docs" includes="Comparable.html" /> - <fileset dir="docs" includes="Current_events.html" /> - <fileset dir="docs" includes="*.doc" /> - </delete> - - <java classname="convFiles" fork="true" dir="docs" /> - - <copy file="docs/Main_Page.html" tofile="docs/index.html"/> - + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH -r --ignore-tags=a --accept=gif,png,jpg --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Env_doc -O Env_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Migration_doc -O Migration_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Core_doc -O Core_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_BSCW_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/User_doc -O User_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Category_doc -O Category_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Context_doc -O Context_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Message_doc -O Message_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Portal_doc -O Portal_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Course_doc -O Course_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/CWall_doc -O CWall_doc.html"/> + </exec> + <exec executable="/usr/bin/wget" dir="docs"> + <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Voting_doc -O Voting_doc.html"/> + </exec> + <java classname="convFiles" fork="true" dir="docs"> + </java> </target> |
|
From: Florian F. <flo...@us...> - 2005-01-06 18:13:35
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1520 Modified Files: build.xml Log Message: Optimized explorer-like navigation view Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- build.xml 29 Dec 2004 19:25:59 -0000 1.32 +++ build.xml 6 Jan 2005 18:13:13 -0000 1.33 @@ -17,7 +17,7 @@ <property name="app.path" value=""/> <property name="app.version" value="0.9"/> <property name="build.home" value="${basedir}/build"/> -<property name="java.home.dir" value="/usr/proj/java/jdk1.4.2"/> +<property name="java.home.dir" value="/usr/local/java"/> <property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> <property name="axis.home" value="/usr/proj/java/axis-1.1"/> <property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> |
|
From: Michael K. <ko...@us...> - 2005-01-19 15:37:32
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31929 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- build.xml 6 Jan 2005 18:13:13 -0000 1.33 +++ build.xml 19 Jan 2005 15:36:50 -0000 1.34 @@ -60,6 +60,10 @@ <fileset dir="${catalina.home}/common/lib"> <include name="*.jar"/> </fileset> + <fileset dir="${catalina.home}/server/lib"> + <include name="servlets-webdav.jar"/> + <include name="servlets-default.jar"/> + </fileset> <pathelement location="${catalina.home}/shared/classes"/> <fileset dir="${catalina.home}/shared/lib"> <include name="*.jar"/> @@ -460,6 +464,13 @@ </fileset> </copy> + <!-- this is needed for making the portal.webdav.WebdavServlet work --> + <copy todir="${build.home}/webapps/${webappname}/WEB-INF/lib"> + <fileset dir="${catalina.home}/server/lib"> + <include name="*.jar"/> + </fileset> + </copy> + <!-- copy other web applications to webapps directory --> <antcall target="copyjetspeed"/> </target> |
|
From: Michael K. <ko...@us...> - 2005-01-27 15:29:30
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4325 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- build.xml 19 Jan 2005 15:36:50 -0000 1.34 +++ build.xml 27 Jan 2005 15:29:13 -0000 1.35 @@ -352,53 +352,14 @@ <target name="copydoc" description="Copies documentation from Wiki to docs directory"> + <!-- use wget version 1.9 or higher --> + <!-- keep file convFiles.java and style.css !!! --> <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc -O Cobricks2_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH -r --ignore-tags=a --accept=gif,png,jpg --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Env_doc -O Env_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Migration_doc -O Migration_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Core_doc -O Core_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Item_doc -O Item_BSCW_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/User_doc -O User_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Category_doc -O Category_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Context_doc -O Context_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Message_doc -O Message_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Portal_doc -O Portal_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Course_doc -O Course_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/CWall_doc -O CWall_doc.html"/> - </exec> - <exec executable="/usr/bin/wget" dir="docs"> - <arg line="-q -k -nH --cut-dirs=3 http://131.159.24.138/wiki/mw/index.php/Voting_doc -O Voting_doc.html"/> + <arg line="-q -r -l 2 -nd -E -k -p -R 'index.php*' -R 'Image:*' -R 'Help:*' -R 'CobricksWiki:*' -R 'Special:*' http://131.159.24.138/wiki/mw/index.php/Cobricks2_doc" /> </exec> <java classname="convFiles" fork="true" dir="docs"> </java> + <move file="docs/Main_Page.html" tofile="docs/index.html" /> </target> |