cvs commit: jakarta-log4j/src/xdocs download.xml
[email protected] 9 May 2002 20:15:02 -0000
| Newsgroups | gmane.comp.jakarta.log4j.cvs |
|---|---|
| Message-ID | <[email protected]> |
ceki 02/05/09 13:15:02
Modified: docs HISTORY
src/java/org/apache/log4j Category.java TTCCLayout.java
src/java/org/apache/log4j/net SMTPAppender.java
src/java/org/apache/log4j/spi OptionHandler.java
src/xdocs download.xml
Log:
Preparing to release 1.2 final.
Fixed a couple of javadoc problems.
Modified src/xdocs/download.xml to refer to 1.2 (final).
Revision Changes Path
1.96 +5 -1 jakarta-log4j/docs/HISTORY
Index: HISTORY
===================================================================
RCS file: /home/cvs/jakarta-log4j/docs/HISTORY,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- HISTORY 9 May 2002 17:44:54 -0000 1.95
+++ HISTORY 9 May 2002 20:15:01 -0000 1.96
@@ -9,9 +9,13 @@
- Release of version 1.2
+ - Fixed bug #8527. A closed TelnetAppender would continue waiting
+ for connections even if its ServerSocket was closed. This caused
+ the TelnetSocket to sit in a loop and complain about the closed
+ socket. [*]
- AsyncAppender throws NullPointerException problem. The bug was actually in
- AppenderSkeleton. See bug #5444 for more details. [*]
+ AppenderSkeleton. See bug #5444 details. [*]
- Added support for recursive variable substiuton as requested by
Eric Chastan. [*]
1.68 +6 -6 jakarta-log4j/src/java/org/apache/log4j/Category.java
Index: Category.java
===================================================================
RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/Category.java,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- Category.java 9 May 2002 17:44:54 -0000 1.67
+++ Category.java 9 May 2002 20:15:01 -0000 1.68
@@ -268,12 +268,12 @@
<p>This method first checks if this category is <code>ERROR</code>
enabled by comparing the level of this category with {@link
- Level#ERROR ERROR} Level. If this category is
- <code>ERROR</code> enabled, then it converts the message object
- passed as parameter to a string by invoking the appropriate {@link
- ObjectRenderer}. It proceeds to call all the registered appenders
- in this category and also higher in the hierarchy depending on
- the value of the additivity flag.
+ Level#ERROR ERROR} Level. If this category is <code>ERROR</code>
+ enabled, then it converts the message object passed as parameter
+ to a string by invoking the appropriate {@link
+ org.apache.log4j.or.ObjectRenderer}. It proceeds to call all the
+ registered appenders in this category and also higher in the
+ hierarchy depending on the value of the additivity flag.
<p><b>WARNING</b> Note that passing a {@link Throwable} to this
method will print the name of the <code>Throwable</code> but no
1.16 +3 -4 jakarta-log4j/src/java/org/apache/log4j/TTCCLayout.java
Index: TTCCLayout.java
===================================================================
RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/TTCCLayout.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- TTCCLayout.java 24 Apr 2002 15:03:44 -0000 1.15
+++ TTCCLayout.java 9 May 2002 20:15:01 -0000 1.16
@@ -75,11 +75,10 @@
/**
Instantiate a TTCCLayout object with {@link
- RelativeTimeDateFormat} as the date formatter in the local time
- zone.
+ org.apache.log4j.helpers.RelativeTimeDateFormat} as the date
+ formatter in the local time zone.
- @since 0.7.5
- */
+ @since 0.7.5 */
public TTCCLayout() {
this.setDateFormat(RELATIVE_TIME_DATE_FORMAT, null);
}
1.29 +2 -2 jakarta-log4j/src/java/org/apache/log4j/net/SMTPAppender.java
Index: SMTPAppender.java
===================================================================
RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/net/SMTPAppender.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- SMTPAppender.java 24 Apr 2002 01:16:12 -0000 1.28
+++ SMTPAppender.java 9 May 2002 20:15:02 -0000 1.29
@@ -190,8 +190,8 @@
/**
- The <code>SMTPAppender</code> requires a {@link Layout layout}.
- */
+ The <code>SMTPAppender</code> requires a {@link
+ org.apache.log4j.Layout layout}. */
public
boolean requiresLayout() {
return true;
1.11 +4 -5 jakarta-log4j/src/java/org/apache/log4j/spi/OptionHandler.java
Index: OptionHandler.java
===================================================================
RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/spi/OptionHandler.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- OptionHandler.java 24 Apr 2002 01:16:11 -0000 1.10
+++ OptionHandler.java 9 May 2002 20:15:02 -0000 1.11
@@ -25,11 +25,10 @@
options have been set. This is required for components which have
related options that remain ambigous until all are set.
- <p>For example, the FileAppender has the
- {@link FileAppender#setFile File} and
- {@link FileAppender#setAppend Append} options both of which are
- ambigous until the other is also set.
- */
+ <p>For example, the FileAppender has the {@link
+ org.apache.log4j.FileAppender#setFile File} and {@link
+ org.apache.log4j.FileAppender#setAppend Append} options both of
+ which are ambigous until the other is also set. */
void activateOptions();
/**
1.53 +4 -17 jakarta-log4j/src/xdocs/download.xml
Index: download.xml
===================================================================
RCS file: /home/cvs/jakarta-log4j/src/xdocs/download.xml,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- download.xml 24 Apr 2002 09:29:16 -0000 1.52
+++ download.xml 9 May 2002 20:15:02 -0000 1.53
@@ -9,11 +9,10 @@
<meta name="keywords" content="java, logging, tracing, component, framework, API, log4j"/>
<body>
- <section name="log4j version 1.2 (release candidate 1)">
- <p>log4j 1.2rc1 is now available in <a
- href="../jakarta-log4j-1.2rc1.tar.gz"><b>TAR.GZ</b></a> format
- or in <a href="../jakarta-log4j-1.2rc1.zip"><b>ZIP</b></a>
- format.
+ <section name="log4j version 1.2 (final)">
+ <p>log4j 1.2 is now available in <a
+ href="../jakarta-log4j-1.2.tar.gz"><b>TAR.GZ</b></a> format or
+ in <a href="../jakarta-log4j-1.2.zip"><b>ZIP</b></a> format.
</p>
@@ -46,18 +45,6 @@
paleontologist.
</p>
-
- </section>
-
-
- <section name="log4j version 1.1.3">
-
- <p>Download version 1.1.3 including <i>full source code</i>,
- class files and documentation in <a
- href="../jakarta-log4j-1.1.3.tar.gz"><b>TAR.GZ</b></a> format
- or in <a href="../jakarta-log4j-1.1.3.zip"><b>ZIP</b></a>
- format.
- </p>
</section>