diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index b9a4422..52f8fde 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -26,7 +26,7 @@ $Id$
INTRODUCTION:
============
-This release of Jakarta Commons Logging (JCL) is a maintenance release, with
+This release of Apache Commons Logging (JCL) is a maintenance release, with
just a couple of fixes for using JCL under restrictive security policies.
All core classes were compiled with a 1.2.x JDK. JCL may work on some
@@ -34,11 +34,11 @@ augmented 1.1 series JREs but it is recommended that those wish to run
on 1.1 JREs download the source and create a custom implementation by
stripping out all the complex classloader management code.
-For further details, please see the Jakarta Commons Logging website:
- http://jakarta.apache.org/commons/logging.
+For further details, please see the Apache Commons Logging website:
+ http://commons.apache.org/logging/
For the very latest news, hints, FAQs etc. please see the
-Jakarta Commons Logging wiki site:
+Apache Commons Logging wiki site:
http://wiki.apache.org/jakarta-commons/Logging
Note that some containers (some versions of Apache Tomcat and JBoss in
@@ -97,13 +97,13 @@ recreate an equivalent of this jar file.
== General Notes ==
-The jakarta commons project has migrated to the Subversion version control system
+The Apache Commons project has migrated to the Subversion version control system
(previously, CVS was used). There should be no effect on users of the JCL
library, but obviously the process of examining the latest source code, and of
-creating patches for JCL has now changed. Please see the jakarta commons
-website for details (http://jakarta.apache.org/commons).
+creating patches for JCL has now changed. Please see the Apache Commons
+website for details (http://commons.apache.org/).
-The jakarta commons project has now moved to using the Apache JIRA installation
+The Apache Commons project has now moved to using the Apache JIRA installation
as its bugtracking system (formerly, the Apache Bugzilla installation was used).
All source files for this release have been updated to reflect the new Apache
diff --git a/STATUS.html b/STATUS.html
index 4572017..56ba3b0 100644
--- a/STATUS.html
+++ b/STATUS.html
@@ -19,13 +19,13 @@
-Status File for Jakarta Commons "Logging" Component
+Status File for Apache Commons "Logging" Component
-
The Jakarta Commons Logging Component
+
The Apache Commons Logging Component
$Id$
[Introduction]
[Dependencies]
@@ -61,7 +61,7 @@ The package does :
Provide support for JDK 1.4 logging
Provide support for Log4J
Provide support for Avalon-Framework's Logger
-
Provide support for
LumberJack logger
Provide pluggable support for other logging APIs
Privide a simple System.out logger
@@ -86,7 +86,7 @@ components for compilation:
- Java Development Kit
(Version 1.2 or later)
-- Jakarta Log4j
+
- Apache Logging Log4j
(Optional, Version 1.2.6 or later)
- Apache Avalon
LogKit (Optional, Version 1.0.1 or later)
@@ -122,12 +122,12 @@ to use are present in the classpath when they use this component.
|
- commons-logging-1.0.1 |
+ commons-logging-1.0.1
12-Aug-2002 |
|
- commons-logging-1.0 |
+ commons-logging-1.0
20-Feb-2002 |
diff --git a/commons-logging-api.pom b/commons-logging-api.pom
index c7f48f7..f90a3df 100644
--- a/commons-logging-api.pom
+++ b/commons-logging-api.pom
@@ -32,7 +32,7 @@
/images/logo.png
- http://jakarta.apache.org/commons/logging/
+ http://commons.apache.org/logging/
org.apache.commons.logging
@@ -49,15 +49,15 @@
- jakarta
+ commons
http://issues.apache.org/jira/browse/LOGGING
people.apache.org
- /www/jakarta.apache.org/commons/logging/
+ /www/commons.apache.org/logging/
/www/jakarta.apache.org/builds/jakarta-commons/logging/
- scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk/
- http://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk/
+ scm:svn:http://svn.apache.org/repos/asf/commons/proper/logging/trunk/
+ http://svn.apache.org/repos/asf/commons/proper/logging/trunk/
@@ -91,15 +91,15 @@
Commons Dev List
- commons-dev-subscribe@jakarta.apache.org
- commons-dev-unsubscribe@jakarta.apache.org
- http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/
+ dev-subscribe@commons.apache.org
+ dev-unsubscribe@commons.apache.org
+ http://mail-archives.apache.org/mod_mbox/commons-dev/
Commons User List
- commons-user-subscribe@jakarta.apache.org
- commons-user-unsubscribe@jakarta.apache.org
- http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/
+ user-subscribe@commons.apache.org
+ user-unsubscribe@commons.apache.org
+ http://mail-archives.apache.org/mod_mbox/commons-user/
diff --git a/project.properties b/project.properties
index 821dd53..cc279c5 100644
--- a/project.properties
+++ b/project.properties
@@ -23,7 +23,7 @@ maven.checkstyle.properties=checkstyle.xml
# documentation properties
maven.xdoc.date=left
maven.xdoc.version=${pom.currentVersion}
-maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
+maven.xdoc.developmentProcessUrl=http://commons.apache.org/charter.html
maven.xdoc.poweredby.image=maven-feather.png
# Jar Manifest Additional Attributes
diff --git a/src/java/org/apache/commons/logging/LogFactory.java b/src/java/org/apache/commons/logging/LogFactory.java
index 6968991..f4247c9 100644
--- a/src/java/org/apache/commons/logging/LogFactory.java
+++ b/src/java/org/apache/commons/logging/LogFactory.java
@@ -1195,7 +1195,7 @@ public abstract class LogFactory {
+ LogFactory.class.getName() + "'. ";
if (implementsLogFactory) {
msg = msg + "The conflict is caused by the presence of multiple LogFactory classes in incompatible classloaders. " +
- "Background can be found in http://jakarta.apache.org/commons/logging/tech.html. " +
+ "Background can be found in http://commons.apache.org/logging/tech.html. " +
"If you have not explicitly specified a custom LogFactory then it is likely that " +
"the container has set one without your knowledge. " +
"In this case, consider using the commons-logging-adapters.jar file or " +
@@ -1203,7 +1203,7 @@ public abstract class LogFactory {
} else {
msg = msg + "Please check the custom implementation. ";
}
- msg = msg + "Help can be found @http://jakarta.apache.org/commons/logging/troubleshooting.html.";
+ msg = msg + "Help can be found @http://commons.apache.org/logging/troubleshooting.html.";
if (isDiagnosticsEnabled()) {
logDiagnostic(msg);
diff --git a/src/java/org/apache/commons/logging/package.html b/src/java/org/apache/commons/logging/package.html
index 096f4c7..e9b32a5 100644
--- a/src/java/org/apache/commons/logging/package.html
+++ b/src/java/org/apache/commons/logging/package.html
@@ -28,7 +28,7 @@ can be used around a variety of different logging implementations, including
prebuilt support for the following:
- Log4J (version 1.2 or later)
- from Apache's Jakarta project. Each named Log
+ from Apache's Logging project. Each named Log
instance is connected to a corresponding Log4J Logger.
-
JDK Logging API, included in JDK 1.4 or later systems. Each named
diff --git a/src/java/overview.html b/src/java/overview.html
index 641f540..4fc581b 100644
--- a/src/java/overview.html
+++ b/src/java/overview.html
@@ -22,7 +22,7 @@
Overview Documentation for COMMONS-LOGGING
-
The Logging Wrapper Library component of the Jakarta Commons
+
The Logging Wrapper Library component of the Apache Commons
subproject offers wrappers around an extensible set of concrete logging
implementations, so that application code based on it does not need to be
modified in order to select a different logging implementation.
diff --git a/src/site/site.xml b/src/site/site.xml
index 28723ea..a4702db 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -2,8 +2,8 @@
Commons Logging
- http://jakarta.apache.org/commons/logging/images/logo.png
- http://jakarta.apache.org/commons/logging/
+ http://commons.apache.org/logging/images/logo.png
+ http://commons.apache.org/logging/
diff --git a/xdocs/building.xml b/xdocs/building.xml
index c978751..30ec3e5 100644
--- a/xdocs/building.xml
+++ b/xdocs/building.xml
@@ -37,7 +37,7 @@ limitations under the License.
Further details can be found in the
- commons build instructions.
+ commons build instructions.
diff --git a/xdocs/cvs-usage.xml b/xdocs/cvs-usage.xml
index 31022c2..210de07 100644
--- a/xdocs/cvs-usage.xml
+++ b/xdocs/cvs-usage.xml
@@ -26,20 +26,20 @@ limitations under the License.
- Jakarta Commons Logging is hosted on the Apache
+ Apcahe Commons Logging is hosted on the Apache
subversion repository.
The project URL is:
- http://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk
+ http://svn.apache.org/repos/asf/commons/proper/logging/trunk
The best way to view the repository is via the
- subversion viewer.
+ subversion viewer.
The alternative is to use the
- native subversion display.
+ native subversion display.
diff --git a/xdocs/guide.xml b/xdocs/guide.xml
index 2b4c4ad..ea0b7e4 100644
--- a/xdocs/guide.xml
+++ b/xdocs/guide.xml
@@ -22,7 +22,7 @@
- Users Guide : Jakarta Commons Logging
+ Users Guide : Apache Commons Logging
Commons Documentation Team
@@ -89,7 +89,7 @@
-The Jakarta Commons Logging (JCL) provides a Log interface that
+The Apache Commons Logging (JCL) provides a Log interface that
is intended to be both light-weight and an independent abstraction of other logging toolkits.
It provides the middleware/tooling developer with a simple
logging abstraction, that allows the user (application developer) to plug in
@@ -166,16 +166,16 @@ compatibility to pre-1.0 versions of this API, a system property
-
If the Log4J logging system is available in the application
class path, use the corresponding wrapper class
-(Log4JLogger).
+(Log4JLogger).
-
If the application is executing on a JDK 1.4 system, use
the corresponding wrapper class
-(Jdk14Logger).
+(Jdk14Logger).
-
Fall back to the default simple logging wrapper
-(SimpleLog).
+(SimpleLog).
@@ -239,7 +239,7 @@ and
Likewise, setting
log4j.logger.org.apache.component=DEBUG
will enable debug message for all 'component' classes,
-but not for other Jakarta projects.
+but not for other Apache projects.
-
log4j.appender.appender.Threshold=priority
diff --git a/xdocs/index.xml b/xdocs/index.xml
index 71c5dd4..35d0cbb 100644
--- a/xdocs/index.xml
+++ b/xdocs/index.xml
@@ -60,7 +60,7 @@ containing any code that is specific to the logging implementation used.
Release Notes document the new features and bug fixes that have been
included in the latest release.
-
The
+The
JavaDoc API documents for the latest release are available online.
In particular, you should read the package overview of the org.apache.commons.logging
package. In addition, there is a (short)
diff --git a/xdocs/issue-tracking.xml b/xdocs/issue-tracking.xml
index a35496c..14d7dcf 100644
--- a/xdocs/issue-tracking.xml
+++ b/xdocs/issue-tracking.xml
@@ -40,7 +40,7 @@ limitations under the License.
- Search existing open bugs.
If you find your issue listed then please add a comment with your details.
- - Search the mailing list archive.
+
- Search the mailing list archive.
You may find your issue or idea has already been discussed.
- Submit a bug report or enhancement request.
diff --git a/xdocs/junit-report.xml b/xdocs/junit-report.xml
index af79214..e867fa0 100644
--- a/xdocs/junit-report.xml
+++ b/xdocs/junit-report.xml
@@ -26,7 +26,7 @@ limitations under the License.
- The Jakarta Commons Logging test cases make extensive use of
+ The Apache Commons Logging test cases make extensive use of
sophisticated classloader configurations in order to simulate the
behaviour of various containers. It is difficult to run these tests
under Maven (which is used to generate the website). Once JCL is
diff --git a/xdocs/navigation.xml b/xdocs/navigation.xml
index b9a7c3f..df7651a 100755
--- a/xdocs/navigation.xml
+++ b/xdocs/navigation.xml
@@ -18,18 +18,18 @@
limitations under the License.
-->
-
+
Logging
-
- Jakarta
+
+ Apache Commons
-
+
&commons;
diff --git a/xdocs/style/project.css b/xdocs/style/project.css
index 0130204..c1d541c 100644
--- a/xdocs/style/project.css
+++ b/xdocs/style/project.css
@@ -1 +1 @@
-@import url("http://jakarta.apache.org/style/jakarta-maven.css");
+@import url("http://commons.apache.org/style/commons-maven.css");
diff --git a/xdocs/tech.xml b/xdocs/tech.xml
index 9da1d78..4e112d1 100644
--- a/xdocs/tech.xml
+++ b/xdocs/tech.xml
@@ -183,10 +183,10 @@ limitations under the License.
diff --git a/xdocs/troubleshooting.xml b/xdocs/troubleshooting.xml
index 6332240..266670e 100644
--- a/xdocs/troubleshooting.xml
+++ b/xdocs/troubleshooting.xml
@@ -301,7 +301,7 @@ classloader used to load LogFactory and to the TCCL.
- WebSphere Application Server (other versions).
-The Jakarta Commons team would be grateful if reports were posted to the development list
+The Apache Commons team would be grateful if reports were posted to the development list
of other containers using a custom implementation.
@@ -315,10 +315,10 @@ of other containers using a custom implementation.
implementation should be used but Class 'com.ibm.ws.commons.logging.TrLogFactory' cannot be converted
to 'org.apache.commons.logging.LogFactory'. The conflict is caused by the presence of multiple
LogFactory classes in incompatible classloaders. Background can be found in
- http://jakarta.apache.org/commons/logging/tech.html. If you have not explicitly specified a custom
+ http://commons.apache.org/logging/tech.html. If you have not explicitly specified a custom
LogFactory then it is likely that the container has set one without your knowledge.
In this case, consider using the commons-logging-adapters.jar file or specifying the standard
- LogFactory from the command line. Help can be found @http://jakarta.apache.org/commons/logging.
+ LogFactory from the command line. Help can be found @http://commons.apache.org/logging.
This is a WebSphere example so the name of the custom LogFactory is