proxool-cvs Mailing List for Proxool: Proxy JDBC Connection Pool (Page 15)
UNMAINTAINED!
Brought to you by:
billhorsman
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(9) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(12) |
Feb
(17) |
Mar
(20) |
Apr
(22) |
May
(4) |
Jun
(3) |
Jul
(11) |
Aug
(23) |
Sep
(60) |
Oct
(41) |
Nov
(15) |
Dec
(29) |
2004 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(5) |
Jun
(29) |
Jul
(6) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(8) |
Jun
|
Jul
(1) |
Aug
|
Sep
(8) |
Oct
(19) |
Nov
|
Dec
|
2006 |
Jan
(17) |
Feb
|
Mar
(5) |
Apr
(1) |
May
(2) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2007 |
Jan
(9) |
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
(4) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <bil...@us...> - 2003-03-07 14:44:09
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv24190 Modified Files: build.xml Log Message: improved junit report format and added optional jvmargs to test target (for profiling) Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** build.xml 6 Mar 2003 11:33:03 -0000 1.45 --- build.xml 7 Mar 2003 14:43:59 -0000 1.46 *************** *** 39,42 **** --- 39,45 ---- <property name="log4jPath" value="src/java-test/org/logicalcobwebs/proxool/log4j-test.xml"/> + <!-- Passed to JVM when running tests --> + <property name="jvmargs" value=""/> + <!-- Classpath --> <path id="source" path="${build-dir}/classes"> *************** *** 303,309 **** depends="clean,init,build-test,deleteTestDb" > ! <java fork="yes" classpathref="source" classname="junit.textui.TestRunner"> <sysproperty key="log4jPath" value="${log4jPath}"/> <arg value="org.logicalcobwebs.proxool.GlobalTest"/> </java> </target> --- 306,313 ---- depends="clean,init,build-test,deleteTestDb" > ! <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > <sysproperty key="log4jPath" value="${log4jPath}"/> <arg value="org.logicalcobwebs.proxool.GlobalTest"/> + <jvmarg line="${jvmargs}"/> </java> </target> *************** *** 327,331 **** </junit> - <junitreport> <fileset dir="${build-dir}/reports"> --- 331,334 ---- *************** *** 342,346 **** file="${build-dir}/reports/${junit-report-name}" token="<h1>Unit Test Results</h1>" ! value='<div style="font-size: 110%;"><div style="float: right; font-weight: bold;">${TODAY_FULL}</div><a href="../index.html">Proxool</a> - ${junit-report-description}</div>' /> --- 345,355 ---- file="${build-dir}/reports/${junit-report-name}" token="<h1>Unit Test Results</h1>" ! value="" ! /> ! ! <replace ! file="${build-dir}/reports/${junit-report-name}" ! token='Designed for use with <a href="http://www.junit.org">JUnit</a> and <a href="http://jakarta.apache.org/ant">Ant</a>.' ! value='${TODAY_FULL}' /> |
From: <bil...@us...> - 2003-03-06 11:33:06
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv29007 Modified Files: build.xml Log Message: fixed messages about JDK Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** build.xml 5 Mar 2003 18:53:06 -0000 1.44 --- build.xml 6 Mar 2003 11:33:03 -0000 1.45 *************** *** 225,229 **** if="build-jdk1.2" > ! <echo level="verbose" message="Using JDK1.2"/> <antcall target="build-src-common"/> <copy todir="${build-dir}/src/java" overwrite="yes"> --- 225,229 ---- if="build-jdk1.2" > ! <echo level="info" message="Using JDK1.2"/> <antcall target="build-src-common"/> <copy todir="${build-dir}/src/java" overwrite="yes"> *************** *** 271,275 **** if="build-jdk1.5" > ! <echo level="verbose" message="Using JDK1.4"/> <copy todir="${build-dir}/src/java" preservelastmodified="yes"> <fileset dir="src/java" includes="**/*.java"/> --- 271,275 ---- if="build-jdk1.5" > ! <echo level="info" message="Using JDK1.5"/> <copy todir="${build-dir}/src/java" preservelastmodified="yes"> <fileset dir="src/java" includes="**/*.java"/> |
From: <bil...@us...> - 2003-03-06 11:30:22
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv28121 Modified Files: CHANGES.txt Log Message: Index: CHANGES.txt =================================================================== RCS file: /cvsroot/proxool/proxool/CHANGES.txt,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** CHANGES.txt 26 Feb 2003 17:00:11 -0000 1.17 --- CHANGES.txt 6 Mar 2003 11:30:16 -0000 1.18 *************** *** 27,30 **** --- 27,43 ---- called definitionChanged (stupid spelling error). + - ConnectionListenerIF.onDeath now gets called for all connections + closed during shutdown. + + - Pools manually removed (using ProxoolFacade.removeConnectionPool) + are no longer attempted to be removed during shutdown. + + - Maximum-new-connections property has been deprecated in favour of + the more descriptive simultaneous-build-throttle property. + + - Refactoring of house keeper and prototyper so that the number of threads + used by Proxool is more scalable. (Proxool used to create two threads + per pool). + 0.7 - February 21, 2003 |
From: <bil...@us...> - 2003-03-05 18:53:11
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv25424 Modified Files: build.xml Log Message: cleaned up the way we build for each jdk Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** build.xml 4 Mar 2003 10:26:46 -0000 1.43 --- build.xml 5 Mar 2003 18:53:06 -0000 1.44 *************** *** 27,37 **** <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.7" /> <!-- Currect release, e.g. 0.6 --> ! <property name="junit-report-description" value="Unit Test Report for CVS Snapshot" /> <!-- Currect release, e.g. 0.6 --> ! <property name="junit-report-name" value="junit-cvs.html" /> <!-- Log4J configuration to use for testing. See proxool-ant.properties --- 27,37 ---- <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.7"/> <!-- Currect release, e.g. 0.6 --> ! <property name="junit-report-description" value="Unit Test Report for CVS Snapshot"/> <!-- Currect release, e.g. 0.6 --> ! <property name="junit-report-name" value="junit-cvs.html"/> <!-- Log4J configuration to use for testing. See proxool-ant.properties *************** *** 40,44 **** <!-- Classpath --> ! <path id="source" path="${build-dir}/classes" > <fileset dir="lib"> <include name="**/*.jar"/> --- 40,44 ---- <!-- Classpath --> ! <path id="source" path="${build-dir}/classes"> <fileset dir="lib"> <include name="**/*.jar"/> *************** *** 67,71 **** <format property="TODAY_FULL" pattern="dd-MMM-yyyy HH:mm zzz"/> </tstamp> ! <mkdir dir="${build-dir}/src/java" description="make source directory" /> <mkdir dir="${build-dir}/etc"/> <mkdir dir="${build-dir}/deploy"/> --- 67,71 ---- <format property="TODAY_FULL" pattern="dd-MMM-yyyy HH:mm zzz"/> </tstamp> ! <mkdir dir="${build-dir}/src/java" description="make source directory"/> <mkdir dir="${build-dir}/etc"/> <mkdir dir="${build-dir}/deploy"/> *************** *** 196,200 **** <javac srcdir="${build-dir}/src/java" destdir="${build-dir}/classes" debug="${debug}"> <classpath refid="source"/> ! </javac> <!-- Copy dtd's and properties into the compiled classes directory. --> <copy todir="${build-dir}/classes"> --- 196,200 ---- <javac srcdir="${build-dir}/src/java" destdir="${build-dir}/classes" debug="${debug}"> <classpath refid="source"/> ! </javac> <!-- Copy dtd's and properties into the compiled classes directory. --> <copy todir="${build-dir}/classes"> *************** *** 209,213 **** depends="init,build-src,compile" > ! <manifest file="${build-dir}/etc/MANIFEST.MF" > <attribute name="Proxool-Version" value="${version}"/> <attribute name="Date" value="${TODAY}"/> --- 209,213 ---- depends="init,build-src,compile" > ! <manifest file="${build-dir}/etc/MANIFEST.MF"> <attribute name="Proxool-Version" value="${version}"/> <attribute name="Date" value="${TODAY}"/> *************** *** 226,232 **** > <echo level="verbose" message="Using JDK1.2"/> ! <copy todir="${build-dir}/src/java" preservelastmodified="yes"> ! <fileset dir="src/java" includes="**/*.java" excludes="**/Jdk14Logger.java"/> ! </copy> <copy todir="${build-dir}/src/java" overwrite="yes"> <fileset dir="src/java-jdk1.2" includes="**/*.java"/> --- 226,230 ---- > <echo level="verbose" message="Using JDK1.2"/> ! <antcall target="build-src-common"/> <copy todir="${build-dir}/src/java" overwrite="yes"> <fileset dir="src/java-jdk1.2" includes="**/*.java"/> *************** *** 235,238 **** --- 233,248 ---- <target + name="build-src-common" + depends="init" + > + <copy todir="${build-dir}/src/java" preservelastmodified="yes"> + <fileset + dir="src/java" + includes="**/*.java" + excludes="**/Jdk14Logger.java,**/ProxyCallableStatement.java,**/ProxyConnection.java,**/ProxyDatabaseMetData.java,**/ProxyFactory.java,**/ProxyPreparedStatement.java,**/ShutdownHook.java,**/StatsRoller.java"/> + </copy> + </target> + + <target name="build-src-jdk1.3" depends="init" *************** *** 293,299 **** depends="clean,init,build-test,deleteTestDb" > ! <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > ! <sysproperty key="log4jPath" value="${log4jPath}" /> ! <arg value="org.logicalcobwebs.proxool.GlobalTest" /> </java> </target> --- 303,309 ---- depends="clean,init,build-test,deleteTestDb" > ! <java fork="yes" classpathref="source" classname="junit.textui.TestRunner"> ! <sysproperty key="log4jPath" value="${log4jPath}"/> ! <arg value="org.logicalcobwebs.proxool.GlobalTest"/> </java> </target> *************** *** 305,311 **** > ! <junit fork="true" printsummary="yes" > <classpath refid="source"/> ! <sysproperty key="log4jPath" value="${log4jPath}" /> <batchtest todir="${build-dir}/reports"> <fileset dir="src/java-test" --- 315,321 ---- > ! <junit fork="true" printsummary="yes"> <classpath refid="source"/> ! <sysproperty key="log4jPath" value="${log4jPath}"/> <batchtest todir="${build-dir}/reports"> <fileset dir="src/java-test" *************** *** 314,331 **** /> </batchtest> ! <formatter type="xml" /> </junit> <junitreport> ! <fileset dir="${build-dir}/reports" > ! <include name="TEST-*.xml" /> </fileset> ! <report format="noframes" todir="${build-dir}/reports" /> </junitreport> <move file="${build-dir}/reports/junit-noframes.html" ! tofile="${build-dir}/reports/${junit-report-name}" /> <replace --- 324,341 ---- /> </batchtest> ! <formatter type="xml"/> </junit> <junitreport> ! <fileset dir="${build-dir}/reports"> ! <include name="TEST-*.xml"/> </fileset> ! <report format="noframes" todir="${build-dir}/reports"/> </junitreport> <move file="${build-dir}/reports/junit-noframes.html" ! tofile="${build-dir}/reports/${junit-report-name}"/> <replace *************** *** 349,356 **** windowtitle="Proxool Developer's API}" private="true" ! > ! <sourcepath path="src/java" /> ! <sourcepath path="src/java-test" /> ! <sourcepath path="src/java-sandbox" /> </javadoc> --- 359,366 ---- windowtitle="Proxool Developer's API}" private="true" ! > ! <sourcepath path="src/java"/> ! <sourcepath path="src/java-test"/> ! <sourcepath path="src/java-sandbox"/> </javadoc> *************** *** 363,370 **** windowtitle="Proxool API}" public="true" ! /> <!-- Copy dtd's over to the doc. --> ! <copy todir="${build-dir}/api"><fileset dir="src/java" includes="**/*.dtd" /></copy> ! <copy todir="${build-dir}/api-dev"><fileset dir="src/java" includes="**/*.dtd" /></copy> </target> --- 373,384 ---- windowtitle="Proxool API}" public="true" ! /> <!-- Copy dtd's over to the doc. --> ! <copy todir="${build-dir}/api"> ! <fileset dir="src/java" includes="**/*.dtd"/> ! </copy> ! <copy todir="${build-dir}/api-dev"> ! <fileset dir="src/java" includes="**/*.dtd"/> ! </copy> </target> *************** *** 374,378 **** depends="init,compile" > ! <java classpathref="source" classname="org.logicalcobwebs.proxool.Version" /> </target> --- 388,392 ---- depends="init,compile" > ! <java classpathref="source" classname="org.logicalcobwebs.proxool.Version"/> </target> *************** *** 382,386 **** depends="init" > ! <java classpathref="binary" classname="org.logicalcobwebs.proxool.Version" /> </target> --- 396,400 ---- depends="init" > ! <java classpathref="binary" classname="org.logicalcobwebs.proxool.Version"/> </target> |
From: <bil...@us...> - 2003-03-04 10:26:49
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv25003 Modified Files: build.xml Log Message: junit now finds tests on its own for report (better layout) Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** build.xml 3 Mar 2003 12:41:03 -0000 1.42 --- build.xml 4 Mar 2003 10:26:46 -0000 1.43 *************** *** 308,315 **** <classpath refid="source"/> <sysproperty key="log4jPath" value="${log4jPath}" /> ! <test name="org.logicalcobwebs.proxool.GlobalTest" todir="${build-dir}/reports" /> <formatter type="xml" /> </junit> <junitreport> <fileset dir="${build-dir}/reports" > --- 308,321 ---- <classpath refid="source"/> <sysproperty key="log4jPath" value="${log4jPath}" /> ! <batchtest todir="${build-dir}/reports"> ! <fileset dir="src/java-test" ! includes="**/*Test.java" ! excludes="**/ThreadTest.java,**/PerformanceTest.java,**/GlobalTest.java,**/AbstractProxoolTest.java" ! /> ! </batchtest> <formatter type="xml" /> </junit> + <junitreport> <fileset dir="${build-dir}/reports" > *************** *** 325,329 **** <replace file="${build-dir}/reports/${junit-report-name}" ! token="Unit Test Results" value='<div style="font-size: 110%;"><div style="float: right; font-weight: bold;">${TODAY_FULL}</div><a href="../index.html">Proxool</a> - ${junit-report-description}</div>' /> --- 331,335 ---- <replace file="${build-dir}/reports/${junit-report-name}" ! token="<h1>Unit Test Results</h1>" value='<div style="font-size: 110%;"><div style="float: right; font-weight: bold;">${TODAY_FULL}</div><a href="../index.html">Proxool</a> - ${junit-report-description}</div>' /> |
From: <bil...@us...> - 2003-03-03 12:41:08
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv5634 Modified Files: build.xml Log Message: new header for junit test report Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** build.xml 3 Mar 2003 01:50:06 -0000 1.41 --- build.xml 3 Mar 2003 12:41:03 -0000 1.42 *************** *** 326,330 **** file="${build-dir}/reports/${junit-report-name}" token="Unit Test Results" ! value="${junit-report-description} - ${TODAY_FULL}" /> --- 326,330 ---- file="${build-dir}/reports/${junit-report-name}" token="Unit Test Results" ! value='<div style="font-size: 110%;"><div style="float: right; font-weight: bold;">${TODAY_FULL}</div><a href="../index.html">Proxool</a> - ${junit-report-description}</div>' /> |
From: <bil...@us...> - 2003-03-03 09:20:19
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv17585 Modified Files: LICENCE.txt Log Message: removed direct reference to Apache Licence Index: LICENCE.txt =================================================================== RCS file: /cvsroot/proxool/proxool/LICENCE.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** LICENCE.txt 26 Feb 2003 09:28:28 -0000 1.3 --- LICENCE.txt 3 Mar 2003 09:20:13 -0000 1.4 *************** *** 25,29 **** "This product includes software developed by the ! Proxool project (http://proxool.sourceforge.net/)." 4. The name "Proxool" must not be used to endorse or promote --- 25,29 ---- "This product includes software developed by the ! Proxool project (The latest version is available at http://proxool.sourceforge.net/)." 4. The name "Proxool" must not be used to endorse or promote *************** *** 39,43 **** "This product includes software developed by the ! Proxool project (http://proxool.sourceforge.net/)." THIS SOFTWARE IS PROVIDED BY THE PROXOOL PROJECT ``AS IS'' AND ANY --- 39,43 ---- "This product includes software developed by the ! Proxool project (The latest version is available at http://proxool.sourceforge.net/)." THIS SOFTWARE IS PROVIDED BY THE PROXOOL PROJECT ``AS IS'' AND ANY *************** *** 57,60 **** This software consists of voluntary contributions made by many individuals on behalf of the Proxool Project. For more information ! on the Proxool Project please see http://proxool.sourceforge.net. --- 57,60 ---- This software consists of voluntary contributions made by many individuals on behalf of the Proxool Project. For more information ! on the Proxool Project please see The latest version is available at http://proxool.sourceforge.net. |
From: <bil...@us...> - 2003-03-03 01:50:10
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv22360 Modified Files: build.xml Log Message: full date and time fdor junit report Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** build.xml 3 Mar 2003 01:29:26 -0000 1.40 --- build.xml 3 Mar 2003 01:50:06 -0000 1.41 *************** *** 64,68 **** name="init" > ! <tstamp/> <mkdir dir="${build-dir}/src/java" description="make source directory" /> <mkdir dir="${build-dir}/etc"/> --- 64,70 ---- name="init" > ! <tstamp> ! <format property="TODAY_FULL" pattern="dd-MMM-yyyy HH:mm zzz"/> ! </tstamp> <mkdir dir="${build-dir}/src/java" description="make source directory" /> <mkdir dir="${build-dir}/etc"/> *************** *** 324,328 **** file="${build-dir}/reports/${junit-report-name}" token="Unit Test Results" ! value="${junit-report-description} - ${TODAY}" /> --- 326,330 ---- file="${build-dir}/reports/${junit-report-name}" token="Unit Test Results" ! value="${junit-report-description} - ${TODAY_FULL}" /> |
From: <bil...@us...> - 2003-03-03 01:29:31
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv16772 Modified Files: build.xml Log Message: include date in junit report Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** build.xml 2 Mar 2003 01:20:44 -0000 1.39 --- build.xml 3 Mar 2003 01:29:26 -0000 1.40 *************** *** 324,328 **** file="${build-dir}/reports/${junit-report-name}" token="Unit Test Results" ! value="${junit-report-description}" /> --- 324,328 ---- file="${build-dir}/reports/${junit-report-name}" token="Unit Test Results" ! value="${junit-report-description} - ${TODAY}" /> |
From: <bil...@us...> - 2003-03-02 01:20:47
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv9309 Modified Files: build.xml Log Message: another dumb fix Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** build.xml 2 Mar 2003 01:13:24 -0000 1.38 --- build.xml 2 Mar 2003 01:20:44 -0000 1.39 *************** *** 322,326 **** <replace ! file="${build-dir}/reports/junit-${junit-report-name}" token="Unit Test Results" value="${junit-report-description}" --- 322,326 ---- <replace ! file="${build-dir}/reports/${junit-report-name}" token="Unit Test Results" value="${junit-report-description}" |
From: <bil...@us...> - 2003-03-02 01:13:29
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv7316 Modified Files: build.xml Log Message: fix Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** build.xml 2 Mar 2003 01:08:40 -0000 1.37 --- build.xml 2 Mar 2003 01:13:24 -0000 1.38 *************** *** 322,326 **** <replace ! file="${build-dir}/reports/junit-${junit-report-name}.html" token="Unit Test Results" value="${junit-report-description}" --- 322,326 ---- <replace ! file="${build-dir}/reports/junit-${junit-report-name}" token="Unit Test Results" value="${junit-report-description}" |
From: <bil...@us...> - 2003-03-02 01:08:44
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv5970 Modified Files: build.xml Log Message: reporting Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** build.xml 28 Feb 2003 12:13:28 -0000 1.36 --- build.xml 2 Mar 2003 01:08:40 -0000 1.37 *************** *** 29,32 **** --- 29,38 ---- <property name="release" value="0.7" /> + <!-- Currect release, e.g. 0.6 --> + <property name="junit-report-description" value="Unit Test Report for CVS Snapshot" /> + + <!-- Currect release, e.g. 0.6 --> + <property name="junit-report-name" value="junit-cvs.html" /> + <!-- Log4J configuration to use for testing. See proxool-ant.properties file for more infomation. --> *************** *** 66,70 **** <mkdir dir="${build-dir}/api-dev"/> <mkdir dir="${build-dir}/reports"/> ! <tstamp/> </target> --- 72,76 ---- <mkdir dir="${build-dir}/api-dev"/> <mkdir dir="${build-dir}/reports"/> ! <available classname="junit.ui.TestRunner" property="junit.present"/> </target> *************** *** 296,299 **** --- 302,306 ---- depends="clean,init,build-test,deleteTestDb" > + <junit fork="true" printsummary="yes" > <classpath refid="source"/> *************** *** 309,312 **** --- 316,329 ---- <report format="noframes" todir="${build-dir}/reports" /> </junitreport> + + <move + file="${build-dir}/reports/junit-noframes.html" + tofile="${build-dir}/reports/${junit-report-name}" /> + + <replace + file="${build-dir}/reports/junit-${junit-report-name}.html" + token="Unit Test Results" + value="${junit-report-description}" + /> </target> |
From: <bil...@us...> - 2003-02-28 12:13:31
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv18300 Modified Files: build.xml Log Message: damn. forgot depends attribute of test target Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** build.xml 28 Feb 2003 12:09:46 -0000 1.35 --- build.xml 28 Feb 2003 12:13:28 -0000 1.36 *************** *** 283,286 **** --- 283,287 ---- name="test" description="Runs the JUnit tests" + depends="clean,init,build-test,deleteTestDb" > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > |
From: <bil...@us...> - 2003-02-28 12:09:52
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv16617 Modified Files: build.xml Log Message: new produce-test-report target Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** build.xml 27 Feb 2003 18:06:53 -0000 1.34 --- build.xml 28 Feb 2003 12:09:46 -0000 1.35 *************** *** 65,68 **** --- 65,69 ---- <mkdir dir="${build-dir}/api"/> <mkdir dir="${build-dir}/api-dev"/> + <mkdir dir="${build-dir}/reports"/> <tstamp/> </target> *************** *** 282,292 **** name="test" description="Runs the JUnit tests" - depends="clean,init,build-test,deleteTestDb" > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > <sysproperty key="log4jPath" value="${log4jPath}" /> - <sysproperty key="script" value="src/java-test/org/logicalcobwebs/proxool/script.xml" /> <arg value="org.logicalcobwebs.proxool.GlobalTest" /> </java> </target> --- 283,312 ---- name="test" description="Runs the JUnit tests" > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > <sysproperty key="log4jPath" value="${log4jPath}" /> <arg value="org.logicalcobwebs.proxool.GlobalTest" /> </java> + </target> + + <target + name="produce-test-report" + description="Produce a report of the tests" + depends="clean,init,build-test,deleteTestDb" + > + <junit fork="true" printsummary="yes" > + <classpath refid="source"/> + <sysproperty key="log4jPath" value="${log4jPath}" /> + <test name="org.logicalcobwebs.proxool.GlobalTest" todir="${build-dir}/reports" /> + <formatter type="xml" /> + </junit> + + <junitreport> + <fileset dir="${build-dir}/reports" > + <include name="TEST-*.xml" /> + </fileset> + <report format="noframes" todir="${build-dir}/reports" /> + </junitreport> + </target> |
From: <bil...@us...> - 2003-02-27 18:06:58
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv10054 Modified Files: proxool-ant.properties build.xml Log Message: log4j simplification Index: proxool-ant.properties =================================================================== RCS file: /cvsroot/proxool/proxool/proxool-ant.properties,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** proxool-ant.properties 27 Feb 2003 18:03:44 -0000 1.8 --- proxool-ant.properties 27 Feb 2003 18:06:53 -0000 1.9 *************** *** 24,37 **** # Path to Log4J configuration ! # Default behaviour is to write to stdout. ! # ! # 1. To run chainsaw, just run this command: ! # java -classpath path-to-log4j-jar org.apache.log4j.chainsaw.Main ! # ! # (replacing path-to-log4j-jar with the correct value, of course) ! # ! log4jPath=src/java-test/org/logicalcobwebs/proxool/log4j-chainsaw.xml ! # ! # 2. Or log to file (see lo4j-file.xml for destination) ! # ! # log4jPath=src/java-test/org/logicalcobwebs/proxool/log4j-file.xml --- 24,28 ---- # Path to Log4J configuration ! # name: log4jPath ! # range: path to valid Log4J XML configuration file ! # default: src/java-test/org/logicalcobwebs/proxool/log4j-test.xml Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** build.xml 27 Feb 2003 18:03:44 -0000 1.33 --- build.xml 27 Feb 2003 18:06:53 -0000 1.34 *************** *** 31,39 **** <!-- Log4J configuration to use for testing. See proxool-ant.properties file for more infomation. --> ! <property name="log4jPath" value=""/> ! ! <!-- Log4J configuration to use for testing. See proxool-ant.properties ! file for more infomation. --> ! <property name="log4jTestPath" value="src/java-test/org/logicalcobwebs/proxool/log4j-test.xml"/> <!-- Classpath --> --- 31,35 ---- <!-- Log4J configuration to use for testing. See proxool-ant.properties file for more infomation. --> ! <property name="log4jPath" value="src/java-test/org/logicalcobwebs/proxool/log4j-test.xml"/> <!-- Classpath --> *************** *** 289,293 **** > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > ! <sysproperty key="log4jPath" value="${log4jTestPath}" /> <sysproperty key="script" value="src/java-test/org/logicalcobwebs/proxool/script.xml" /> <arg value="org.logicalcobwebs.proxool.GlobalTest" /> --- 285,289 ---- > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > ! <sysproperty key="log4jPath" value="${log4jPath}" /> <sysproperty key="script" value="src/java-test/org/logicalcobwebs/proxool/script.xml" /> <arg value="org.logicalcobwebs.proxool.GlobalTest" /> |
From: <bil...@us...> - 2003-02-27 18:03:48
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv8697 Modified Files: proxool-ant.properties build.xml Log Message: test task now defaults to ERROR to CONSOLE using log4j-test.xml file. Index: proxool-ant.properties =================================================================== RCS file: /cvsroot/proxool/proxool/proxool-ant.properties,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** proxool-ant.properties 26 Feb 2003 23:20:36 -0000 1.7 --- proxool-ant.properties 27 Feb 2003 18:03:44 -0000 1.8 *************** *** 31,35 **** # (replacing path-to-log4j-jar with the correct value, of course) # ! # log4jPath=src/java-test/org/logicalcobwebs/proxool/log4j-chainsaw.xml # # 2. Or log to file (see lo4j-file.xml for destination) --- 31,35 ---- # (replacing path-to-log4j-jar with the correct value, of course) # ! log4jPath=src/java-test/org/logicalcobwebs/proxool/log4j-chainsaw.xml # # 2. Or log to file (see lo4j-file.xml for destination) Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** build.xml 26 Feb 2003 23:20:35 -0000 1.32 --- build.xml 27 Feb 2003 18:03:44 -0000 1.33 *************** *** 33,36 **** --- 33,40 ---- <property name="log4jPath" value=""/> + <!-- Log4J configuration to use for testing. See proxool-ant.properties + file for more infomation. --> + <property name="log4jTestPath" value="src/java-test/org/logicalcobwebs/proxool/log4j-test.xml"/> + <!-- Classpath --> <path id="source" path="${build-dir}/classes" > *************** *** 282,289 **** name="test" description="Runs the JUnit tests" ! depends="init,build-test,deleteTestDb" > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > ! <sysproperty key="log4jPath" value="${log4jPath}" /> <sysproperty key="script" value="src/java-test/org/logicalcobwebs/proxool/script.xml" /> <arg value="org.logicalcobwebs.proxool.GlobalTest" /> --- 286,293 ---- name="test" description="Runs the JUnit tests" ! depends="clean,init,build-test,deleteTestDb" > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > ! <sysproperty key="log4jPath" value="${log4jTestPath}" /> <sysproperty key="script" value="src/java-test/org/logicalcobwebs/proxool/script.xml" /> <arg value="org.logicalcobwebs.proxool.GlobalTest" /> |
From: <bil...@us...> - 2003-02-26 23:20:43
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv26746 Modified Files: build.xml proxool-ant.properties Log Message: compiled with debug by default Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** build.xml 25 Feb 2003 16:51:59 -0000 1.31 --- build.xml 26 Feb 2003 23:20:35 -0000 1.32 *************** *** 21,25 **** <!-- Whether we include debug information in JAR file --> ! <property name="debug" value="false"/> <!-- Current version e.g. 0.6.* --> --- 21,25 ---- <!-- Whether we include debug information in JAR file --> ! <property name="debug" value="true"/> <!-- Current version e.g. 0.6.* --> Index: proxool-ant.properties =================================================================== RCS file: /cvsroot/proxool/proxool/proxool-ant.properties,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** proxool-ant.properties 6 Feb 2003 23:53:54 -0000 1.6 --- proxool-ant.properties 26 Feb 2003 23:20:36 -0000 1.7 *************** *** 21,26 **** # name: debug # range: true, false ! # default: false ! debug=false # Path to Log4J configuration --- 21,25 ---- # name: debug # range: true, false ! # default: true # Path to Log4J configuration |
From: <bil...@us...> - 2003-02-26 17:00:21
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv27996 Modified Files: CHANGES.txt Log Message: Index: CHANGES.txt =================================================================== RCS file: /cvsroot/proxool/proxool/CHANGES.txt,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** CHANGES.txt 21 Feb 2003 11:50:51 -0000 1.16 --- CHANGES.txt 26 Feb 2003 17:00:11 -0000 1.17 *************** *** 6,10 **** $Author$ ! 0.7 - scheduled for February, 2003 - We have dropped the dependency on commons-logging.jar --- 6,31 ---- $Author$ ! 0.8 - scheduled for March 2003 ! ! - New JMX component so that you can control Proxool from your ! favourite JMX Agent (like WebLogic, JBoss, MX4J) ! ! - Fixed display bug in AdminServlet - average active time was being ! displayed in milliseconds instead of seconds. ! ! - Refactoring of how definitions are updated and redefined. Use ! ProxoolFacade.updateConnectionPool to make incremental changes ! and ProxoolFacade.redefineConnectionPool to reset the definition ! and start again. (If you pass a Properties object to the DriverManager ! when asking for a connection this will call redefineConnectionPool.) ! ! - if you change the url or any of the delegate properties for a pool's ! definition then all existing connections are automatically killed so that ! new ones are created that conform to the new definition. ! ! - Change to ConfigurationListenerIF API. defintionChanged is now ! called definitionChanged (stupid spelling error). ! ! 0.7 - February 21, 2003 - We have dropped the dependency on commons-logging.jar |
From: <bil...@us...> - 2003-02-26 09:28:46
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv18380 Modified Files: LICENCE.txt Log Message: fixed licence to now reference Proxool not Apache! Doh. The licence is now *like* an Apache Licence. Index: LICENCE.txt =================================================================== RCS file: /cvsroot/proxool/proxool/LICENCE.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LICENCE.txt 24 Sep 2002 09:34:38 -0000 1.2 --- LICENCE.txt 26 Feb 2003 09:28:28 -0000 1.3 *************** *** 6,63 **** $Author$ ! /* ==================================================================== ! * Copyright (c) 1995-1999 The Apache Group. All rights reserved. ! * ! * Redistribution and use in source and binary forms, with or without ! * modification, are permitted provided that the following conditions ! * are met: ! * ! * 1. Redistributions of source code must retain the above copyright ! * notice, this list of conditions and the following disclaimer. ! * ! * 2. Redistributions in binary form must reproduce the above copyright ! * notice, this list of conditions and the following disclaimer in ! * the documentation and/or other materials provided with the ! * distribution. ! * ! * 3. All advertising materials mentioning features or use of this ! * software must display the following acknowledgment: ! * "This product includes software developed by the Apache Group ! * for use in the Apache HTTP server project (http://www.apache.org/)." ! * ! * 4. The names "Apache Server" and "Apache Group" must not be used to ! * endorse or promote products derived from this software without ! * prior written permission. For written permission, please contact ! * ap...@ap.... ! * ! * 5. Products derived from this software may not be called "Apache" ! * nor may "Apache" appear in their names without prior written ! * permission of the Apache Group. ! * ! * 6. Redistributions of any form whatsoever must retain the following ! * acknowledgment: ! * "This product includes software developed by the Apache Group ! * for use in the Apache HTTP server project (http://www.apache.org/)." ! * ! * THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY ! * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ! * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR ! * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR ! * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ! * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ! * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ! * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ! * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, ! * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ! * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ! * OF THE POSSIBILITY OF SUCH DAMAGE. ! * ==================================================================== ! * ! * This software consists of voluntary contributions made by many ! * individuals on behalf of the Apache Group and was originally based ! * on public domain software written at the National Center for ! * Supercomputing Applications, University of Illinois, Urbana-Champaign. ! * For more information on the Apache Group and the Apache HTTP server ! * project, please see . ! * ! */ --- 6,60 ---- $Author$ ! ==================================================================== ! Copyright (c) 2002 - 2003 Proxool. All rights reserved. ! ! Redistribution and use in source and binary forms, with or without ! modification, are permitted provided that the following conditions ! are met: ! ! 1. Redistributions of source code must retain the above copyright ! notice, this list of conditions and the following disclaimer. ! ! 2. Redistributions in binary form must reproduce the above copyright ! notice, this list of conditions and the following disclaimer in ! the documentation and/or other materials provided with the ! distribution. ! ! 3. All advertising materials mentioning features or use of this software ! must display the following acknowledgment: ! ! "This product includes software developed by the ! Proxool project (http://proxool.sourceforge.net/)." ! ! 4. The name "Proxool" must not be used to endorse or promote ! products derived from this software without prior written permission. ! For written permission, please contact bi...@lo.... ! ! 5. Products derived from this software may not be called "Proxool" ! nor may "Proxool" appear in their names without prior written ! permission of the Proxool Project. ! ! 6. Redistributions of any form whatsoever must retain the following ! acknowledgment: ! ! "This product includes software developed by the ! Proxool project (http://proxool.sourceforge.net/)." ! ! THIS SOFTWARE IS PROVIDED BY THE PROXOOL PROJECT ``AS IS'' AND ANY ! EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR ! PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PROXOOL PROJECT OR ! ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ! NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ! LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ! HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, ! STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ! OF THE POSSIBILITY OF SUCH DAMAGE. ! ==================================================================== ! ! This software consists of voluntary contributions made by many ! individuals on behalf of the Proxool Project. For more information ! on the Proxool Project please see http://proxool.sourceforge.net. ! |
From: <ch...@us...> - 2003-02-25 16:52:03
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv7553 Modified Files: build.xml Log Message: Started including .propety files in the class build directories. Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** build.xml 21 Feb 2003 15:17:07 -0000 1.30 --- build.xml 25 Feb 2003 16:51:59 -0000 1.31 *************** *** 188,194 **** <classpath refid="source"/> </javac> ! <!-- Copy dtd's into the compiled classes directory. --> <copy todir="${build-dir}/classes"> <fileset dir="src/java" includes="**/*.dtd"/> </copy> </target> --- 188,195 ---- <classpath refid="source"/> </javac> ! <!-- Copy dtd's and properties into the compiled classes directory. --> <copy todir="${build-dir}/classes"> <fileset dir="src/java" includes="**/*.dtd"/> + <fileset dir="src/java" includes="**/*.properties"/> </copy> </target> |
From: <bil...@us...> - 2003-02-21 15:17:11
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv30395 Modified Files: build.xml Log Message: update version Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** build.xml 19 Feb 2003 23:50:51 -0000 1.29 --- build.xml 21 Feb 2003 15:17:07 -0000 1.30 *************** *** 24,31 **** <!-- Current version e.g. 0.6.* --> ! <property name="version" value="0.6.*"/> <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.6.4" /> <!-- Log4J configuration to use for testing. See proxool-ant.properties --- 24,31 ---- <!-- Current version e.g. 0.6.* --> ! <property name="version" value="0.7.*"/> <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.7" /> <!-- Log4J configuration to use for testing. See proxool-ant.properties |
From: <bil...@us...> - 2003-02-21 11:50:55
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv27140 Modified Files: CHANGES.txt Log Message: Index: CHANGES.txt =================================================================== RCS file: /cvsroot/proxool/proxool/CHANGES.txt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** CHANGES.txt 12 Feb 2003 00:33:51 -0000 1.15 --- CHANGES.txt 21 Feb 2003 11:50:51 -0000 1.16 *************** *** 6,10 **** $Author$ ! 0.7 - scheduled for February 12, 2003 - We have dropped the dependency on commons-logging.jar --- 6,10 ---- $Author$ ! 0.7 - scheduled for February, 2003 - We have dropped the dependency on commons-logging.jar *************** *** 12,20 **** the Jakarta team, naturally). ! - New monitor package provides statistical and snapshot information so you can measure how well Proxool, and your database, is doing. ! - New MonitorServlet provides statistical information for your web application. --- 12,20 ---- the Jakarta team, naturally). ! - New admin package provides statistical and snapshot information so you can measure how well Proxool, and your database, is doing. ! - New AdminServlet provides statistical information for your web application. *************** *** 35,38 **** --- 35,44 ---- reliable shutdown of the pools when the JVM stops. + - Removed ReloadMonitor (added in 0.5) because it made use of + SystemProperties and this is prohbited by J2SE. You are now responsible + for ensuring Proxool is shutdown if your application is reloaded within + the same environment (as can sometimes happen in a web application). + See ProxoolFacade.shutdown(). + - Fixed bug when you asked DatabaseMetaData for the connection. It now gives you back the Proxool connection, not the underlying delegate *************** *** 41,44 **** --- 47,55 ---- - Fixed bug where if you registered, removed and then re-registered a pool then the new pool would not notice the Properties passed to it. + + - If a connection encounters a fatal SQLException (as defined by the + fatal-sql-exception property) it now wakes up the house keeper thread + so other connections are tested as soon as possible (with the + house-keeper-test-sql) rather than waiting for the next scheduled sweep. 0.6 (January 23, 2003) |
From: <bil...@us...> - 2003-02-19 23:50:57
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv27501 Modified Files: build.xml Log Message: snapshot Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** build.xml 11 Feb 2003 00:33:08 -0000 1.28 --- build.xml 19 Feb 2003 23:50:51 -0000 1.29 *************** *** 27,31 **** <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.6" /> <!-- Log4J configuration to use for testing. See proxool-ant.properties --- 27,31 ---- <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.6.4" /> <!-- Log4J configuration to use for testing. See proxool-ant.properties |
From: <bil...@us...> - 2003-02-12 00:33:55
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv26428 Modified Files: CHANGES.txt Log Message: merged from doc Index: CHANGES.txt =================================================================== RCS file: /cvsroot/proxool/proxool/CHANGES.txt,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** CHANGES.txt 24 Jan 2003 14:40:08 -0000 1.14 --- CHANGES.txt 12 Feb 2003 00:33:51 -0000 1.15 *************** *** 6,9 **** --- 6,45 ---- $Author$ + 0.7 - scheduled for February 12, 2003 + + - We have dropped the dependency on commons-logging.jar + by copying the code into our own project (retaining credit to + the Jakarta team, naturally). + + - New monitor package provides statistical + and snapshot information so you can measure how well Proxool, and + your database, is doing. + + - New MonitorServlet provides statistical + information for your web application. + + - The JDK 1.2 patch code has been brought up to date and now + passes all the unit tests. + + - The listener code has been redone. Proxool now allows multiple + listeners per pool. setFooListener has now been deprecated in + favour of addFooListener. And it's now thread safe (just in case you + add or remove a listener while the pool is running). + + - The new ServletConfigurator will help you + to configure and shutdown your pools simply by adding a few lines to + your servlet configuration (web.xml) file and perhaps writing an XML file. + No changes to your Java code. + + - By using ShutdownHooks (with JDK1.3 or later) we get a cleaner, more + reliable shutdown of the pools when the JVM stops. + + - Fixed bug when you asked DatabaseMetaData for the connection. It + now gives you back the Proxool connection, not the underlying delegate + connection. + + - Fixed bug where if you registered, removed and then re-registered a pool + then the new pool would not notice the Properties passed to it. + 0.6 (January 23, 2003) |
From: <bil...@us...> - 2003-02-11 00:33:11
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv17796 Modified Files: build.xml Log Message: delete test db before running test Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** build.xml 8 Feb 2003 14:29:03 -0000 1.27 --- build.xml 11 Feb 2003 00:33:08 -0000 1.28 *************** *** 51,55 **** <classpath refid="source"/> </taskdef> ! <!-- Build necessary directories --- 51,55 ---- <classpath refid="source"/> </taskdef> ! <!-- Build necessary directories *************** *** 281,285 **** name="test" description="Runs the JUnit tests" ! depends="init,build-test" > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > --- 281,285 ---- name="test" description="Runs the JUnit tests" ! depends="init,build-test,deleteTestDb" > <java fork="yes" classpathref="source" classname="junit.textui.TestRunner" > |