ceki 2002/06/11 06:21:59 Modified: docs Tag: v1_2-branch HISTORY src/java/org/apache/log4j Tag: v1_2-branch PropertyConfigurator.java src/xdocs Tag: v1_2-branch download.xml tests Tag: v1_2-branch build.xml Log: Small javadoc corrections. Preparing release 1.2.4. Revision Changes Path No revision No revision 1.97.2.6 +18 -0 jakarta-log4j/docs/HISTORY Index: HISTORY =================================================================== RCS file: /home/cvs/jakarta-log4j/docs/HISTORY,v retrieving revision 1.97.2.5 retrieving revision 1.97.2.6 diff -u -r1.97.2.5 -r1.97.2.6 --- HISTORY 28 May 2002 14:24:59 -0000 1.97.2.5 +++ HISTORY 11 Jun 2002 13:21:57 -0000 1.97.2.6 @@ -6,6 +6,24 @@ [***] Changes requiring important modifications to existing client code. + - Release of version 1.2.4 + + - XMLLayout can now output messages which contain embedded CDATA + sections. This resolves bug #9750. Many thanks Michael + A. McAngus for supplying the relevant patch. [*] + + - The dispatcher thread associated with AsyncAppender is now marked + as a deamon thread. This resolves bug #9750. [*] + + - Added missing NTEventLogAppender.dll as reported in bug #9606. [*] + + - In response to bug report 9435, the log4j.dtd was changed so that + <log4j:event> is now made of logger and level attributes instead of + category and priority. Changed XMLLayout to conform to the + DTD. Chainsaw was changed to adapt to the XMLLayout. [*] + + - Added missing LevelRangeFilter file. [*] + May 24th, 2002, - Release of version 1.2.3 No revision No revision 1.54.2.3 +1 -1 jakarta-log4j/src/java/org/apache/log4j/PropertyConfigurator.java Index: PropertyConfigurator.java =================================================================== RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/PropertyConfigurator.java,v retrieving revision 1.54.2.2 retrieving revision 1.54.2.3 diff -u -r1.54.2.2 -r1.54.2.3 --- PropertyConfigurator.java 24 May 2002 12:58:43 -0000 1.54.2.2 +++ PropertyConfigurator.java 11 Jun 2002 13:21:58 -0000 1.54.2.3 @@ -118,7 +118,7 @@ </pre> <p>The level value can consist of the string values OFF, FATAL, - ERROR, WARN, INFO, DEBUG, ALL or a <em>custom level</e> value. A + ERROR, WARN, INFO, DEBUG, ALL or a <em>custom level</em> value. A custom level value can be specified in the form level#classname. By default the repository-wide threshold is set to the lowest possible value, namely the level <code>ALL</code>. No revision No revision 1.53.2.5 +5 -5 jakarta-log4j/src/xdocs/download.xml Index: download.xml =================================================================== RCS file: /home/cvs/jakarta-log4j/src/xdocs/download.xml,v retrieving revision 1.53.2.4 retrieving revision 1.53.2.5 diff -u -r1.53.2.4 -r1.53.2.5 --- download.xml 28 May 2002 14:25:00 -0000 1.53.2.4 +++ download.xml 11 Jun 2002 13:21:59 -0000 1.53.2.5 @@ -9,14 +9,14 @@ <meta name="keywords" content="java, logging, tracing, component, framework, API, log4j"/> <body> - <section name="log4j version 1.2.3"> - <p>log4j 1.2.3 is available in <a - href="../jakarta-log4j-1.2.3.tar.gz"><b>TAR.GZ</b></a> format - or in <a href="../jakarta-log4j-1.2.3.zip"><b>ZIP</b></a> + <section name="log4j version 1.2.4"> + <p>log4j 1.2.4 is available in <a + href="../jakarta-log4j-1.2.4.tar.gz"><b>TAR.GZ</b></a> format + or in <a href="../jakarta-log4j-1.2.4.zip"><b>ZIP</b></a> format. </p> - <p>Release 1.2.3 fixes several relatively minor bugs. See the + <p>Release 1.2.4 fixes several relatively minor bugs. See the <a href="HISTORY">HISTORY</a> file for the exact details. </p> No revision No revision 1.16.2.2 +8 -3 jakarta-log4j/tests/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-log4j/tests/build.xml,v retrieving revision 1.16.2.1 retrieving revision 1.16.2.2 diff -u -r1.16.2.1 -r1.16.2.2 --- build.xml 17 May 2002 11:54:06 -0000 1.16.2.1 +++ build.xml 11 Jun 2002 13:21:59 -0000 1.16.2.2 @@ -51,9 +51,7 @@ build - compile all project files, if a certain library is missing, then the compilation of its dependents are skipped. - regression - Run regression ests which check large parts of log4j. - unit - Run unit tests which check one component at a time. - longUnit - Run long unit tests which check one component at a time. + regression - Run regression tests which check large parts of log4j. runAll - run all available tests </echo> @@ -212,6 +210,13 @@ </junit> </target> + <target name="ErrorHandler" depends="build"> + <junit printsummary="yes" fork="yes" haltonfailure="yes"> + <classpath refid="tests.classpath"/> + <formatter type="plain" usefile="false" /> + <test name="org.apache.log4j.varia.ErrorHandlerTestCase" /> + </junit> + </target> <target name="OptionConverter" depends="build"> <junit printsummary="yes" fork="yes" haltonfailure="yes">
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>