ceki 01/09/25 03:29:04
Modified: . build.sh
build build.xml
docs download.html
src/java/org/apache/log4j/helpers OptionConverter.java
src/java/org/apache/log4j/or/jms MessageRenderer.java
src/java/org/apache/log4j/or/sax AttributesRenderer.java
src/java/org/apache/log4j/spi LoggerRepository.java
src/xdocs download.xml
Log:
Javadoc corrections.
Revision Changes Path
1.4 +1 -1 jakarta-log4j/build.sh
Index: build.sh
===================================================================
RCS file: /home/cvs/jakarta-log4j/build.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.sh 2001/09/25 09:05:56 1.3
+++ build.sh 2001/09/25 10:29:04 1.4
@@ -21,7 +21,7 @@
for l in build/lib/*.jar
do
-echo L=$l
+echo "Adding $l to CLASSPATH."
CLASSPATH=${CLASSPATH}:$l
done
1.49 +2 -1 jakarta-log4j/build/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-log4j/build/build.xml,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- build.xml 2001/09/24 22:43:04 1.48
+++ build.xml 2001/09/25 10:29:04 1.49
@@ -272,8 +272,8 @@
packagenames="org.apache.log4j,
org.apache.log4j.config,
org.apache.log4j.examples,
- org.apache.log4j.examples.appserver,
org.apache.log4j.helpers,
+ org.apache.log4j.jmx,
org.apache.log4j.net,
org.apache.log4j.nt,
org.apache.log4j.or,
@@ -353,6 +353,7 @@
manifest.mf,
INSTALL,
LICENSE.APL,
+ LICENSE.txt,
dist/lib/*.jar,
org/**,
icons/**,
1.35 +6 -4 jakarta-log4j/docs/download.html
Index: download.html
===================================================================
RCS file: /home/cvs/jakarta-log4j/docs/download.html,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- download.html 2001/09/25 10:06:35 1.34
+++ download.html 2001/09/25 10:29:04 1.35
@@ -87,12 +87,14 @@
<p>A alpha version of log4j 1.2 is now
available in in <a href="../jakarta-log4j-1.2alpha.tar.gz"><b>TAR.GZ</b></a>
format or in <a href="../jakarta-log4j-1.2alpha.zip"><b>ZIP</b></a> format.
</p>
- <p>Log4j version 1.2 is still in
alpha stage. It is not feature
- complete, requries fair amount of testing, nor is the
- documentation complete. We have gone to great lengths to
+ <p>Log4j version 1.2 is still in
alpha stage. It is not
+ feature-omplete, requries fair amount of testing, nor is the
+ documentation up to date. We have gone to great lengths to
ensure that version 1.2 is backward compatible with earlier
versions. However, some previously deprecated APIs are now
- removed. See the HISTORY file for more details.
+ removed. Moreover, users who have written sub-classes of
+ Category will need to modify their code. See the HISTORY file
+ for more details.
</p>
</blockquote>
</p>
1.29 +1 -1
jakarta-log4j/src/java/org/apache/log4j/helpers/OptionConverter.java
Index: OptionConverter.java
===================================================================
RCS file:
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/helpers/OptionConverter.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- OptionConverter.java 2001/09/05 06:45:28 1.28
+++ OptionConverter.java 2001/09/25 10:29:04 1.29
@@ -423,7 +423,7 @@
{@link Configurator}, or null. If this value is null then a default
configurator of {@link PropertyConfigurator} is used, unless the
filename pointed to by <code>url</code> ends in '.xml', in which case
- {@link DOMConfigurator} is used.
+ {@link org.apache.log4j.xml.DOMConfigurator} is used.
@param hierarchy The {@link Hierarchy} to act on.
@since 1.1.4 */
1.2 +1 -1
jakarta-log4j/src/java/org/apache/log4j/or/jms/MessageRenderer.java
Index: MessageRenderer.java
===================================================================
RCS file:
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/or/jms/MessageRenderer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MessageRenderer.java 2001/09/10 09:31:01 1.1
+++ MessageRenderer.java 2001/09/25 10:29:04 1.2
@@ -29,7 +29,7 @@
/**
- Render a {@link Message}.
+ Render a {@link javax.jms.Message}.
*/
public
String doRender(Object o) {
1.4 +3 -3
jakarta-log4j/src/java/org/apache/log4j/or/sax/AttributesRenderer.java
Index: AttributesRenderer.java
===================================================================
RCS file:
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/or/sax/AttributesRenderer.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- AttributesRenderer.java 2001/09/10 15:47:38 1.3
+++ AttributesRenderer.java 2001/09/25 10:29:04 1.4
@@ -15,10 +15,10 @@
import org.xml.sax.Attributes;
/**
- Render <code>javax.jms.Message</code> objects.
+ Render <code>org.xml.sax.Attributes</code> objects.
@author Ceki Gülcü
- @since 1.0 */
+ @since 1.2 */
public class AttributesRenderer implements ObjectRenderer {
public
@@ -27,7 +27,7 @@
/**
- Render a {@link Message}.
+ Render a {@link org.xml.sax.Attributes}.
*/
public
String doRender(Object o) {
1.5 +1 -1
jakarta-log4j/src/java/org/apache/log4j/spi/LoggerRepository.java
Index: LoggerRepository.java
===================================================================
RCS file:
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/spi/LoggerRepository.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- LoggerRepository.java 2001/09/24 22:43:05 1.4
+++ LoggerRepository.java 2001/09/25 10:29:04 1.5
@@ -45,7 +45,7 @@
Enumeration getCurrentLoggers();
/**
- @deprecated Please use {@link getCurrentLoggers} instead.
+ @deprecated Please use {@link #getCurrentLoggers} instead.
*/
public
Enumeration getCurrentCategories();
1.34 +6 -4 jakarta-log4j/src/xdocs/download.xml
Index: download.xml
===================================================================
RCS file: /home/cvs/jakarta-log4j/src/xdocs/download.xml,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- download.xml 2001/09/25 10:06:36 1.33
+++ download.xml 2001/09/25 10:29:04 1.34
@@ -65,12 +65,14 @@
</p>
- <p>Log4j version 1.2 is still in alpha stage. It is not feature
- complete, requries fair amount of testing, nor is the
- documentation complete. We have gone to great lengths to
+ <p>Log4j version 1.2 is still in alpha stage. It is not
+ feature-omplete, requries fair amount of testing, nor is the
+ documentation up to date. We have gone to great lengths to
ensure that version 1.2 is backward compatible with earlier
versions. However, some previously deprecated APIs are now
- removed. See the HISTORY file for more details.
+ removed. Moreover, users who have written sub-classes of
+ Category will need to modify their code. See the HISTORY file
+ for more details.
</p>
</section>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]