From: Wolfgang M. M. <wol...@us...> - 2004-04-23 13:08:25
|
Update of /cvsroot/exist/eXist-1.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2156 Modified Files: build.xml conf.xml build.properties Log Message: A large number of XUpdate bugs has been fixed. Index: conf.xml =================================================================== RCS file: /cvsroot/exist/eXist-1.0/conf.xml,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** conf.xml 16 Apr 2004 14:44:24 -0000 1.48 --- conf.xml 23 Apr 2004 13:07:46 -0000 1.49 *************** *** 48,52 **** - max: maximum number of connections allowed. --> ! <pool min="1" max="20" sync-period="300000"/> </db-connection> --- 48,52 ---- - max: maximum number of connections allowed. --> ! <pool min="1" max="20" sync-period="300000"/> </db-connection> *************** *** 103,107 **** --> <indexer stemming="no" caseSensitive="no" suppress-whitespace="both" ! index-depth="1" tokenizer="org.exist.storage.analysis.SimpleTokenizer" validation="no"> --- 103,107 ---- --> <indexer stemming="no" caseSensitive="no" suppress-whitespace="both" ! index-depth="1" tokenizer="org.exist.storage.analysis.SimpleTokenizer" validation="no"> Index: build.xml =================================================================== RCS file: /cvsroot/exist/eXist-1.0/build.xml,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** build.xml 16 Apr 2004 14:44:24 -0000 1.45 --- build.xml 23 Apr 2004 13:07:46 -0000 1.46 *************** *** 151,155 **** <!-- =================================================================== --> <target name="jar" depends="compile"> ! <copy file="${src}/CatalogManager.properties" todir="${build.classes}"/> <copy todir="${build.classes}/org/exist/client"> <fileset dir="${src}/org/exist/client"> --- 151,155 ---- <!-- =================================================================== --> <target name="jar" depends="compile"> ! <copy file="${src}/CatalogManager.properties" todir="${build.classes}"/> <copy todir="${build.classes}/org/exist/client"> <fileset dir="${src}/org/exist/client"> *************** *** 168,172 **** todir="${build.classes}/org/exist"/> <copy file="${src}/org/exist/start/MANIFEST.MF" todir="${build.classes}/org/exist/start"/> ! <copy file="${src}/org/exist/start/start.config" todir="${build.classes}/org/exist/start"/> <echo message="Creating exist.jar ..."/> --- 168,173 ---- todir="${build.classes}/org/exist"/> <copy file="${src}/org/exist/start/MANIFEST.MF" todir="${build.classes}/org/exist/start"/> ! <copy file="${src}/org/exist/start/start.config" todir="${build.classes}/org/exist/start"/> ! <copy file="${src}/org/exist/security/security.properties" todir="${build.classes}/org/exist/security"/> <echo message="Creating exist.jar ..."/> *************** *** 198,201 **** --- 199,217 ---- </target> + <target name="standalone" depends="jar"> + <echo message="Creating exist-standalone.jar ..."/> + <jar basedir="${build.classes}" compress="true" + jarfile="exist-standalone.jar"> + <exclude name="org/exist/start/**"/> + <exclude name="org/exist/soap/**"/> + <exclude name="org/exist/ant/**"/> + <exclude name="org/exist/http/servlets/**"/> + <exclude name="org/exist/xquery/functions/request/**"/> + <exclude name="org/exist/cocoon/**"/> + <exclude name="org/exist/*.xsl"/> + <exclude name="org/exist/client/**"/> + <exclude name="org/exist/backup/**"/> + </jar> + </target> <!-- ================================================================== --> <!-- Build all --> Index: build.properties =================================================================== RCS file: /cvsroot/exist/eXist-1.0/build.properties,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** build.properties 1 Mar 2004 13:20:35 -0000 1.17 --- build.properties 23 Apr 2004 13:07:46 -0000 1.18 *************** *** 21,25 **** # IZPack is required to create the installer package ! izpack.dir = /home/wolf/Java/IzPac # sources of the XML:DB API. Needed for javadoc --- 21,25 ---- # IZPack is required to create the installer package ! izpack.dir = /home/wolf/Java/IzPack # sources of the XML:DB API. Needed for javadoc |