You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by de...@apache.org on 2007/10/02 00:01:07 UTC

svn commit: r581090 - in /commons/proper/logging/trunk: ./ src/java/org/apache/commons/logging/ src/java/org/apache/commons/logging/impl/ src/test/org/apache/commons/logging/ src/test/org/apache/commons/logging/avalon/ src/test/org/apache/commons/loggi...

Author: dennisl
Date: Mon Oct  1 15:01:06 2007
New Revision: 581090

URL: http://svn.apache.org/viewvc?rev=581090&view=rev
Log:
Replace tab characters with spaces. No other changes.

Modified:
    commons/proper/logging/trunk/build.xml
    commons/proper/logging/trunk/maven.xml
    commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java
    commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
    commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/SimpleLog.java
    commons/proper/logging/trunk/src/test/org/apache/commons/logging/AbstractLogTest.java
    commons/proper/logging/trunk/src/test/org/apache/commons/logging/SimpleLogTestCase.java
    commons/proper/logging/trunk/src/test/org/apache/commons/logging/avalon/AvalonLoggerTestCase.java
    commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java
    commons/proper/logging/trunk/xdocs/guide.xml
    commons/proper/logging/trunk/xdocs/tech.xml
    commons/proper/logging/trunk/xdocs/troubleshooting.xml

Modified: commons/proper/logging/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/build.xml?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/build.xml (original)
+++ commons/proper/logging/trunk/build.xml Mon Oct  1 15:01:06 2007
@@ -526,8 +526,8 @@
         but try to load them by reflection from particular loaders.
         They will therefore fail unless this logger is available.
         -->
-    	<include name='**/pathable/**'/>
-    	<!-- END NOTE -->
+        <include name='**/pathable/**'/>
+        <!-- END NOTE -->
     </javac>
   </target>
 
@@ -541,23 +541,23 @@
             source="${source.version}"
             target="${target.version}">
       <classpath refid="test.classpath"/>
-        <include name='**/avalon/**'/>
+      <include name='**/avalon/**'/>
     </javac>
   </target>
   
   <target name='compile.logkit.tests' if='logkit.present'>
-	 <javac  srcdir="${test.home}"
-	           destdir="${build.home}/tests"
-	             debug="${compile.debug}"
-	       deprecation="${compile.deprecation}"
-            optimize="${compile.optimize}"
-              source="${source.version}"
-              target="${target.version}">
-	    <classpath refid="test.classpath"/>
-	    <include name='**/logkit/**'/>
-	 </javac>
+    <javac  srcdir="${test.home}"
+           destdir="${build.home}/tests"
+             debug="${compile.debug}"
+       deprecation="${compile.deprecation}"
+          optimize="${compile.optimize}"
+            source="${source.version}"
+            target="${target.version}">
+      <classpath refid="test.classpath"/>
+      <include name='**/logkit/**'/>
+    </javac>
   </target>
-	
+
   <target name="compile.tests" depends="compile"
    description="Compile unit test cases">
     <javac  srcdir="${test.home}"
@@ -584,7 +584,7 @@
     <antcall target='compile.log4j.tests'/>
     <antcall target='compile.jdk1.4.tests'/>
     <antcall target='compile.avalon.tests'/>
-  	<antcall target='compile.logkit.tests'/>
+    <antcall target='compile.logkit.tests'/>
     <copy    todir="${build.home}/tests" filtering="on">
       <fileset dir="${test.home}" excludes="**/*.java"/>
     </copy>

Modified: commons/proper/logging/trunk/maven.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/maven.xml?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/maven.xml (original)
+++ commons/proper/logging/trunk/maven.xml Mon Oct  1 15:01:06 2007
@@ -36,7 +36,7 @@
   <postGoal name="xdoc:copy-resources">  
     <copy todir="${basedir}/target/docs/" failonerror="false">
       <fileset dir="${basedir}">
-      	<include name='RELEASE-NOTES.txt'/>
+        <include name='RELEASE-NOTES.txt'/>
       </fileset>
     </copy>
   </postGoal>

Modified: commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java (original)
+++ commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java Mon Oct  1 15:01:06 2007
@@ -1092,7 +1092,7 @@
      */
     protected static LogFactory newFactory(final String factoryClass,
                                            final ClassLoader classLoader) {
-	    return newFactory(factoryClass, classLoader, null);
+        return newFactory(factoryClass, classLoader, null);
     }
 
     /**
@@ -1182,7 +1182,7 @@
                         // loading with that loader (not the TCCL). Just throw an
                         // appropriate exception here.
 
-                    	final boolean implementsLogFactory = implementsLogFactory(logFactoryClass);
+                        final boolean implementsLogFactory = implementsLogFactory(logFactoryClass);
                         
                         //
                         // Construct a good message: users may not actual expect that a custom implementation 
@@ -1195,13 +1195,13 @@
                             + 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://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. ";
+                            "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 " +
+                            "specifying the standard LogFactory from the command line. ";
                         } else {
-                        	msg = msg + "Please check the custom implementation. ";
+                            msg = msg + "Please check the custom implementation. ";
                         }
                         msg = msg + "Help can be found @http://commons.apache.org/logging/troubleshooting.html.";
                         
@@ -1563,31 +1563,31 @@
      */
     private static void initDiagnostics() {
         String dest;
-    	try {
-    	    dest = getSystemProperty(DIAGNOSTICS_DEST_PROPERTY, null);
-    	    if (dest == null) {
-    	        return;
-    	    }
-    	} catch(SecurityException ex) {
-    	    // We must be running in some very secure environment.
-    	    // We just have to assume output is not wanted..
-    	    return;
-    	}
-    	
-    	if (dest.equals("STDOUT")) {
-    	    diagnosticsStream = System.out;
-    	} else if (dest.equals("STDERR")) {
-    	    diagnosticsStream = System.err;
-    	} else {
-    	    try {
+        try {
+            dest = getSystemProperty(DIAGNOSTICS_DEST_PROPERTY, null);
+            if (dest == null) {
+                return;
+            }
+        } catch(SecurityException ex) {
+            // We must be running in some very secure environment.
+            // We just have to assume output is not wanted..
+            return;
+        }
+
+        if (dest.equals("STDOUT")) {
+            diagnosticsStream = System.out;
+        } else if (dest.equals("STDERR")) {
+            diagnosticsStream = System.err;
+        } else {
+            try {
                 // open the file in append mode
-    	        FileOutputStream fos = new FileOutputStream(dest, true);
-    	        diagnosticsStream = new PrintStream(fos);
-    	    } catch(IOException ex) {
-    	        // We should report this to the user - but how?
-    	        return;
-    	    }
-    	}
+                FileOutputStream fos = new FileOutputStream(dest, true);
+                diagnosticsStream = new PrintStream(fos);
+            } catch(IOException ex) {
+                // We should report this to the user - but how?
+                return;
+            }
+        }
 
         // In order to avoid confusion where multiple instances of JCL are
         // being used via different classloaders within the same app, we

Modified: commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java (original)
+++ commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java Mon Oct  1 15:01:06 2007
@@ -1364,9 +1364,9 @@
                       + discoveryFlaw.getLocalizedMessage());       
 
             if (discoveryFlaw instanceof InvocationTargetException ) {
-		// Ok, the lib is there but while trying to create a real underlying
-		// logger something failed in the underlying lib; display info about
-		// that if possible.
+                // Ok, the lib is there but while trying to create a real underlying
+                // logger something failed in the underlying lib; display info about
+                // that if possible.
                 InvocationTargetException ite = (InvocationTargetException)discoveryFlaw;
                 Throwable cause = ite.getTargetException();
                 if (cause != null) {

Modified: commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/SimpleLog.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/SimpleLog.java?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/SimpleLog.java (original)
+++ commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/SimpleLog.java Mon Oct  1 15:01:06 2007
@@ -137,11 +137,11 @@
 
     private static String getStringProperty(String name) {
         String prop = null;
-	try {
-	    prop = System.getProperty(name);
-	} catch (SecurityException e) {
-	    ; // Ignore
-	}
+        try {
+            prop = System.getProperty(name);
+        } catch (SecurityException e) {
+            ; // Ignore
+        }
         return (prop == null) ? simpleLogProps.getProperty(name) : prop;
     }
 
@@ -308,7 +308,7 @@
         }
 
         // Append the name of the log instance if so configured
- 	if( showShortName) {
+        if( showShortName) {
             if( shortLogName==null ) {
                 // Cut all but the last component of the name for both styles
                 shortLogName = logName.substring(logName.lastIndexOf(".") + 1);

Modified: commons/proper/logging/trunk/src/test/org/apache/commons/logging/AbstractLogTest.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/test/org/apache/commons/logging/AbstractLogTest.java?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/test/org/apache/commons/logging/AbstractLogTest.java (original)
+++ commons/proper/logging/trunk/src/test/org/apache/commons/logging/AbstractLogTest.java Mon Oct  1 15:01:06 2007
@@ -33,64 +33,64 @@
 
     public abstract Log getLogObject();
 
-	public void testLoggingWithNullParameters()
-	{
-		Log log = this.getLogObject();
-		
-		assertNotNull(log);
-		
-
-		log.debug(null);
-		
-		log.debug(null, null);
-		
-		log.debug(log.getClass().getName() + ": debug statement");
-		
-		log.debug(log.getClass().getName() + ": debug statement w/ null exception", new RuntimeException());
-		
-
-		log.error(null);
-		
-		log.error(null, null);
-		
-		log.error(log.getClass().getName() + ": error statement");
-		
-		log.error(log.getClass().getName() + ": error statement w/ null exception", new RuntimeException());
-		
-
-		log.fatal(null);
-		
-		log.fatal(null, null);
-		
-		log.fatal(log.getClass().getName() + ": fatal statement");
-		
-		log.fatal(log.getClass().getName() + ": fatal statement w/ null exception", new RuntimeException());
-		
-
-		log.info(null);
-		
-		log.info(null, null);
-		
-		log.info(log.getClass().getName() + ": info statement");
-		
-		log.info(log.getClass().getName() + ": info statement w/ null exception", new RuntimeException());
-		
-
-		log.trace(null);
-		
-		log.trace(null, null);
-		
-		log.trace(log.getClass().getName() + ": trace statement");
-		
-		log.trace(log.getClass().getName() + ": trace statement w/ null exception", new RuntimeException());
-		
-
-		log.warn(null);
-		
-		log.warn(null, null);
-		
-		log.warn(log.getClass().getName() + ": warn statement");
-		
-		log.warn(log.getClass().getName() + ": warn statement w/ null exception", new RuntimeException());
-	}    
+    public void testLoggingWithNullParameters()
+    {
+        Log log = this.getLogObject();
+
+        assertNotNull(log);
+
+
+        log.debug(null);
+
+        log.debug(null, null);
+
+        log.debug(log.getClass().getName() + ": debug statement");
+
+        log.debug(log.getClass().getName() + ": debug statement w/ null exception", new RuntimeException());
+
+
+        log.error(null);
+
+        log.error(null, null);
+
+        log.error(log.getClass().getName() + ": error statement");
+
+        log.error(log.getClass().getName() + ": error statement w/ null exception", new RuntimeException());
+
+
+        log.fatal(null);
+
+        log.fatal(null, null);
+
+        log.fatal(log.getClass().getName() + ": fatal statement");
+
+        log.fatal(log.getClass().getName() + ": fatal statement w/ null exception", new RuntimeException());
+
+
+        log.info(null);
+
+        log.info(null, null);
+
+        log.info(log.getClass().getName() + ": info statement");
+
+        log.info(log.getClass().getName() + ": info statement w/ null exception", new RuntimeException());
+
+
+        log.trace(null);
+
+        log.trace(null, null);
+
+        log.trace(log.getClass().getName() + ": trace statement");
+
+        log.trace(log.getClass().getName() + ": trace statement w/ null exception", new RuntimeException());
+
+
+        log.warn(null);
+
+        log.warn(null, null);
+
+        log.warn(log.getClass().getName() + ": warn statement");
+
+        log.warn(log.getClass().getName() + ": warn statement w/ null exception", new RuntimeException());
+    }    
 }

Modified: commons/proper/logging/trunk/src/test/org/apache/commons/logging/SimpleLogTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/test/org/apache/commons/logging/SimpleLogTestCase.java?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/test/org/apache/commons/logging/SimpleLogTestCase.java (original)
+++ commons/proper/logging/trunk/src/test/org/apache/commons/logging/SimpleLogTestCase.java Mon Oct  1 15:01:06 2007
@@ -29,11 +29,11 @@
  */
 public class SimpleLogTestCase extends AbstractLogTest
 {
-	/**
-	 * 
-	 * 
-	 * 
-	 */
+    /**
+     *
+     *
+     *
+     */
     public Log getLogObject()
     {
         return (Log) new SimpleLog(this.getClass().getName());
@@ -41,6 +41,6 @@
 
     public static void main(String[] args) {
         String[] testCaseName = { SimpleLogTestCase.class.getName() };
-        junit.textui.TestRunner.main(testCaseName);	
+        junit.textui.TestRunner.main(testCaseName);
     }
 }

Modified: commons/proper/logging/trunk/src/test/org/apache/commons/logging/avalon/AvalonLoggerTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/test/org/apache/commons/logging/avalon/AvalonLoggerTestCase.java?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/test/org/apache/commons/logging/avalon/AvalonLoggerTestCase.java (original)
+++ commons/proper/logging/trunk/src/test/org/apache/commons/logging/avalon/AvalonLoggerTestCase.java Mon Oct  1 15:01:06 2007
@@ -32,7 +32,7 @@
 
     public static void main(String[] args) {
         String[] testCaseName = { AvalonLoggerTestCase.class.getName() };
-        junit.textui.TestRunner.main(testCaseName);	
+        junit.textui.TestRunner.main(testCaseName);
     }
 
     public static Test suite() {
@@ -43,6 +43,6 @@
 
     public Log getLogObject() {
         Log log = new AvalonLogger(new ConsoleLogger());
-		return log;
-	}
+        return log;
+    }
 }

Modified: commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java (original)
+++ commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java Mon Oct  1 15:01:06 2007
@@ -53,13 +53,13 @@
     }
     
     /**
-	 * Override the abstract method from the parent class so that the
+     * Override the abstract method from the parent class so that the
      * inherited tests can access the right Log object type. 
-	 */
-	public Log getLogObject()
-	{
-		return (Log) new NoOpLog(this.getClass().getName());
-	}
+     */
+    public Log getLogObject()
+    {
+        return (Log) new NoOpLog(this.getClass().getName());
+    }
 
     // Test Serializability of standard instance
     public void testSerializable() throws Exception {

Modified: commons/proper/logging/trunk/xdocs/guide.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/xdocs/guide.xml?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/xdocs/guide.xml (original)
+++ commons/proper/logging/trunk/xdocs/guide.xml Mon Oct  1 15:01:06 2007
@@ -115,7 +115,7 @@
 should result in JCL configuring itself in a reasonable manner.
 There's a good chance that it'll guess your preferred logging system and you won't
 need to do any configuration at all! 
-		</p><p>
+    </p><p>
 Note, however, that if you have a particular preference then providing a simple
 <code>commons-logging.properties</code> file which specifies the concrete logging library to be
 used is recommended, since (in this case) JCL will log only to that system
@@ -762,40 +762,40 @@
     </subsection>
 </section>
 <section name='A Quick Guide To Simple Log'>
-	<p>
+  <p>
 JCL is distributed with a very simple <code>Log</code> implementation named 
 <code>org.apache.commons.logging.impl.SimpleLog</code>. This is intended to be a minimal
 implementation and those requiring a fully functional open source logging system are 
 directed to <a href='http://logging.apache.org/log4j'>Log4J</a>.
-	</p>
- 	<p>
- 	<code>SimpleLog</code> sends all (enabled) log messages,
- 	for all defined loggers, to <code>System.err</code>.  The following system properties
+  </p>
+  <p>
+  <code>SimpleLog</code> sends all (enabled) log messages,
+  for all defined loggers, to <code>System.err</code>.  The following system properties
   are supported to configure the behavior of this logger:</p>
   <ul>
   <li><strong>org.apache.commons.logging.simplelog.defaultlog</strong> -
       Default logging detail level for all instances of SimpleLog.
       Must be one of:
-      	<ul>
-      		<li><code>trace</code></li>
-      		<li><code>debug</code></li> 
-      		<li><code>info</code></li> 
-      		<li><code>warn</code></li> 
-      		<li><code>error</code></li>
-      		<li><code>fatal</code></li>
-      	 </ul>
+      <ul>
+          <li><code>trace</code></li>
+          <li><code>debug</code></li>
+          <li><code>info</code></li>
+          <li><code>warn</code></li>
+          <li><code>error</code></li>
+          <li><code>fatal</code></li>
+      </ul>
       If not specified, defaults to <code>info</code>. </li>
   <li><strong>org.apache.commons.logging.simplelog.log.xxxxx</strong> -
       Logging detail level for a SimpleLog instance named "xxxxx".
       Must be one of:
-          <ul>
-      		<li><code>trace</code></li>
-      		<li><code>debug</code></li> 
-      		<li><code>info</code></li> 
-      		<li><code>warn</code></li> 
-      		<li><code>error</code></li>
-      		<li><code>fatal</code></li>
-      	 </ul>
+      <ul>
+          <li><code>trace</code></li>
+          <li><code>debug</code></li>
+          <li><code>info</code></li>
+          <li><code>warn</code></li>
+          <li><code>error</code></li>
+          <li><code>fatal</code></li>
+      </ul>
       If not specified, the default logging detail level is used.</li>
   <li><strong>org.apache.commons.logging.simplelog.showlogname</strong> -
       Set to <code>true</code> if you want the <code>Log</code> instance name to be

Modified: commons/proper/logging/trunk/xdocs/tech.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/xdocs/tech.xml?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/xdocs/tech.xml (original)
+++ commons/proper/logging/trunk/xdocs/tech.xml Mon Oct  1 15:01:06 2007
@@ -25,493 +25,493 @@
  </properties>
 
  <body>
-  	<section name='Overview'>
-  		<subsection name='Contents'>
-  			<ul>
-  				<li>
-  				Overview
-  					<ul>
-  						<li>
-  						Contents
-  						</li>
-  						<li>
-  						<a href='#Introduction'>Introduction</a>
-  						</li>
-  					</ul>
-  				</li>
-  				<li>
-		  			<a href='#A Short Introduction to Class Loading and Class Loaders'>
-		  			A Short Introduction to Class Loading and Class Loaders
-		  			</a>
-		  				<ul>
-							<li>
-								<a href='#Preamble'>
-						Preamble
-								</a>
-							</li>
-		      				<li>
-		      					<a href='#Resolution Of Symbolic References'>
-		      			Resolution Of Symbolic References
-		      					</a>
-		       				</li>
-		    				<li>
-								<a href='#Loading'>
-						Loading
-								</a>
-							</li>
-							<li>
-								<a href='#Linking'>
-						Linking
-								</a>
-							</li>
-							<li>
-								<a href='#Loading Classes'>
-						Loading Classes
-								</a>
-							</li>
-		    				<li>
-		    					<a href='#Bootstrap Classloader'>
-						Bootstrap Classloader
-								</a>
-							</li>
-							<li>
-								<a href='#Runtime Package'>			
-						Runtime Package
-								</a>
-		    				</li>
-							<li>
-								<a href='#Loader Used To Resolve A Symbolic Reference'>
-						Loader Used To Resolve A Symbolic Reference
-								</a>
-							</li>
-							<li>
-								<a href='#Bibliography'>
-						Bibliography
-								</a>
-							</li>
-					</ul>
-				</li>
-								<li>
-									<a href='#A Short Guide To Hierarchical Class Loading'>
-					A Short Guide To Hierarchical Class Loading
-									</a>
-					<ul>
-						<li>
-							<a href='#Delegating Class Loaders'>
-					Delegating Class Loaders
-							</a>
-						</li>
-				 		<li>
-							<a href='#Parent-First And Child-First Class Loaders'>
-					Parent-First And Child-First Class Loaders
-							</a>
-						</li>
-				 		<li>
-							<a href='#Class ClassLoader'>
-					Class ClassLoader
-							</a>
-						</li>
-				 		<li>
-							<a href='#Context ClassLoader'>
-					Context ClassLoader
-							</a>
-						</li>
-				 		<li>
-							<a href='#The Context Classloader in Container Applications'>
-					The Context Classloader in Container Applications
-							</a>
-						</li>
-				 		<li>
-							<a href='#Issues with Context ClassLoaders'>
-					Issues with Context ClassLoaders
-							</a>
-						</li>
-				 		<li>
-							<a href='#Reflection And The Context ClassLoader'>
-					Reflection And The Context ClassLoader
-							</a>
-						</li>
-				 		<li>
-							<a href='#More Information'>
-					More Information
-							</a>
-						</li>
-					</ul>
-				</li>
-				<li>
-					<a href='#A Short Theory Guide To JCL'>
-					A Short Theory Guide To JCL
-					</a>
-					<ul>
-						<li>
-							<a href='#Isolation And The Context Class Loader'>
-					Isolation And The Context Class Loader
-							</a>
-						</li>
-						<li>
-							<a href='#Log And LogFactory'>
-					Log And LogFactory
-							</a>
-						</li>
-						<li>
-							<a href='#Log Implementations'>
-					Log Implementations
-							</a>
-						</li>
-    					<li>
-    						<a href='#Using Reflection To Load Log Implementations'>
-    				Using Reflection To Load Log Implementations
-    						</a>
-    					</li>
-    				</ul>
-    			</li>
-  			</ul>
-  		</subsection>
-	 	<subsection name='Introduction'>
-	 		<p>
-	This guide is aimed at describing the technologies that JCL developers and expert users 
-	(and users who need to become experts)
-	should be familiar with. The aim is to give an understanding whilst being precise but brief. 
-	Details which are not relevant for JCL have been suppressed.
-	References have been included.
-	 		</p>
-	 		<p>
-	These topics are a little difficult and it's easy for even experienced developers to make
-	mistakes. We need you to help us get it right! Please submit corrections, comments, additional references
-	and requests for clarification
-	by either:
-			</p>
-			<ul>
-				<li>
-	posting to the <a href='http://commons.apache.org/mail-lists.html'>Apache Commons dev mailing list</a> or
-				</li>
-				<li>
-	creating an issue in <a href='http://issues.apache.org/jira/browse/LOGGING/'>JIRA</a>.	
-				</li>
-			</ul>
-			<p>
-	TIA	
-	 		</p>
-	 	</subsection>
-
-	</section>
-	<section name='A Short Introduction to Class Loading and Class Loaders'>
-		<subsection name='Preamble'>
-			<p>
-	This is intended to present a guide to the process by which Java bytecode uses bytecode in other classes
-	from the perspective of the language and virtual machine specifications. The focus will be on deciding
-	which bytecode will be used (rather than the mechanics of the usage). It focusses on facts and terminology.
-			</p>
-			<p>
-	The process is recursive: it is therefore difficult to pick a starting point. 
-	Sun's documentation starts from the persective of the startup of a new application. 
-	This guide starts from the perspective of an executing application.
-			</p>
-			<p>
-	During this discussion, please assume that each time that <em>class</em> is mentioned, 
-	the comments applied equally well to interfaces. 
-			</p>
-			<p>
-	This document is targeted at Java 1.2 and above.
-			</p>
-    	</subsection>
+    <section name='Overview'>
+      <subsection name='Contents'>
+        <ul>
+          <li>
+          Overview
+            <ul>
+              <li>
+              Contents
+              </li>
+              <li>
+              <a href='#Introduction'>Introduction</a>
+              </li>
+            </ul>
+          </li>
+          <li>
+            <a href='#A Short Introduction to Class Loading and Class Loaders'>
+            A Short Introduction to Class Loading and Class Loaders
+            </a>
+              <ul>
+              <li>
+                <a href='#Preamble'>
+            Preamble
+                </a>
+              </li>
+                  <li>
+                    <a href='#Resolution Of Symbolic References'>
+                Resolution Of Symbolic References
+                    </a>
+                  </li>
+                <li>
+                <a href='#Loading'>
+            Loading
+                </a>
+              </li>
+              <li>
+                <a href='#Linking'>
+            Linking
+                </a>
+              </li>
+              <li>
+                <a href='#Loading Classes'>
+            Loading Classes
+                </a>
+              </li>
+                <li>
+                  <a href='#Bootstrap Classloader'>
+            Bootstrap Classloader
+                </a>
+              </li>
+              <li>
+                <a href='#Runtime Package'>
+            Runtime Package
+                </a>
+                </li>
+              <li>
+                <a href='#Loader Used To Resolve A Symbolic Reference'>
+            Loader Used To Resolve A Symbolic Reference
+                </a>
+              </li>
+              <li>
+                <a href='#Bibliography'>
+            Bibliography
+                </a>
+              </li>
+          </ul>
+        </li>
+                <li>
+                  <a href='#A Short Guide To Hierarchical Class Loading'>
+          A Short Guide To Hierarchical Class Loading
+                  </a>
+          <ul>
+            <li>
+              <a href='#Delegating Class Loaders'>
+          Delegating Class Loaders
+              </a>
+            </li>
+            <li>
+              <a href='#Parent-First And Child-First Class Loaders'>
+          Parent-First And Child-First Class Loaders
+              </a>
+            </li>
+            <li>
+              <a href='#Class ClassLoader'>
+          Class ClassLoader
+              </a>
+            </li>
+            <li>
+              <a href='#Context ClassLoader'>
+          Context ClassLoader
+              </a>
+            </li>
+            <li>
+              <a href='#The Context Classloader in Container Applications'>
+          The Context Classloader in Container Applications
+              </a>
+            </li>
+            <li>
+              <a href='#Issues with Context ClassLoaders'>
+          Issues with Context ClassLoaders
+              </a>
+            </li>
+            <li>
+              <a href='#Reflection And The Context ClassLoader'>
+          Reflection And The Context ClassLoader
+              </a>
+            </li>
+            <li>
+              <a href='#More Information'>
+          More Information
+              </a>
+            </li>
+          </ul>
+        </li>
+        <li>
+          <a href='#A Short Theory Guide To JCL'>
+          A Short Theory Guide To JCL
+          </a>
+          <ul>
+            <li>
+              <a href='#Isolation And The Context Class Loader'>
+          Isolation And The Context Class Loader
+              </a>
+            </li>
+            <li>
+              <a href='#Log And LogFactory'>
+          Log And LogFactory
+              </a>
+            </li>
+            <li>
+              <a href='#Log Implementations'>
+          Log Implementations
+              </a>
+            </li>
+              <li>
+                <a href='#Using Reflection To Load Log Implementations'>
+            Using Reflection To Load Log Implementations
+                </a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+      </subsection>
+    <subsection name='Introduction'>
+      <p>
+  This guide is aimed at describing the technologies that JCL developers and expert users
+  (and users who need to become experts)
+  should be familiar with. The aim is to give an understanding whilst being precise but brief.
+  Details which are not relevant for JCL have been suppressed.
+  References have been included.
+      </p>
+      <p>
+  These topics are a little difficult and it's easy for even experienced developers to make
+  mistakes. We need you to help us get it right! Please submit corrections, comments, additional references
+  and requests for clarification
+  by either:
+      </p>
+      <ul>
+        <li>
+  posting to the <a href='http://commons.apache.org/mail-lists.html'>Apache Commons dev mailing list</a> or
+        </li>
+        <li>
+  creating an issue in <a href='http://issues.apache.org/jira/browse/LOGGING/'>JIRA</a>.
+        </li>
+      </ul>
+      <p>
+  TIA
+      </p>
+    </subsection>
+
+  </section>
+  <section name='A Short Introduction to Class Loading and Class Loaders'>
+    <subsection name='Preamble'>
+      <p>
+  This is intended to present a guide to the process by which Java bytecode uses bytecode in other classes
+  from the perspective of the language and virtual machine specifications. The focus will be on deciding
+  which bytecode will be used (rather than the mechanics of the usage). It focusses on facts and terminology.
+      </p>
+      <p>
+  The process is recursive: it is therefore difficult to pick a starting point.
+  Sun's documentation starts from the persective of the startup of a new application.
+  This guide starts from the perspective of an executing application.
+      </p>
+      <p>
+  During this discussion, please assume that each time that <em>class</em> is mentioned,
+  the comments applied equally well to interfaces.
+      </p>
+      <p>
+  This document is targeted at Java 1.2 and above.
+      </p>
+      </subsection>
        <subsection name='Resolution Of Symbolic References'>
-			<p>
-	(<a href='http://java.sun.com/docs/books/jls/second_edition/html/execution.doc.html#44524'>LangSpec 12.3.3</a>)
-	The bytecode representation of a class contains symbolic names for other classes referenced. 
-			</p>
-			<p>
-				<em>
-	In practical development terms: If a class is imported (either explicitly in the list of imports at the top of 
-	the source file or implicitly through a fully qualified name in the source code) it is referenced symbolically.
-				</em> 
-			</p>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#73492'>VMSpec 5.4.3</a>)
-	Resolution of a symbolic reference occurs dynamically at runtime and is carried out by
-	the Java Virtual Machine. Resolution of a symbolic reference requires loading and linking of the new class. 
-			</p>
-			<p>
-				<em>
-	Note: references are not statically resolved at compile time.			
-				</em>
-			</p>
-    	</subsection>
-		<subsection name='Loading'>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#19175'>VMSpec 2.17.2</a>) 
-	Loading is the name given to the process by which a binary form of a class is obtained 
-	by the Java Virtual Machine. 
-	Java classes are always loaded and linked dynamically by the Java Virtual Machine
-	(rather than statically by the compiler).
-			</p>
-			<p>
-				<em>
-	In practical development terms:
-	This means that the developer has no certain knowledge about the actual
-	bytecode that will be used to execute any external call (one made outside the class). This is determined only
-	at execution time and is affected by the way that the code is deployed.
-				</em>
-			</p>
-    	</subsection>
-		<subsection name='Linking'>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#22574'>VMSpec 2.17.3</a>) 
-	Linking is the name used for combining the 
-	binary form of a class into the Java Virtual Machine. This must happen before the class can be used.
-			</p>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#22574'>VMSpec 2.17.3</a>)  
-	Linking is composed of verification, preparation and resolution (of symbolic references).
-	Flexibility is allowed over the timing of resolution. (Within limit) this may happen at any time after 
-	preparation and before that reference is used.
-			</p>
-			<p>
-				<em>
-	In practical development terms: This means that different JVMs may realize that a reference cannot be
-	resolved at different times during execution. Consequently, the actual behaviour cannot be precisely predicted 
-	without intimate knowledge of the JVM (on which the bytecode will be executed). 
-	This makes it hard to give universal guidance to users.  	
-				</em>
-			</p>
-    	</subsection>
-
-		<subsection name='Loading Classes'>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#19175'>VMSpec 2.17.2</a>)
-	The loading process is performed by a <code>ClassLoader</code>.
-			</p>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSpec 5.3</a>) 
-	A classloader may create a class either by delegation or by defining it directly.
-	The classloader that initiates loading of a class is known as the initiating loader. 
-	The classloader that defines the class is known as the defining loader. 
-			</p>
-			<p>
-				<em>
-	In practical terms: understanding and appreciating this distinction is crucial when debugging issues 
-	concerning classloaders.
-				</em>
-			</p>
-    	</subsection>
-    	
-		<subsection name='Bootstrap Classloader'>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSPEC 5.3</a>) 
-	The bootstrap is the base <code>ClassLoader</code> supplied by the Java Virtual Machine.
-	All others are user (also known as application) <code>ClassLoader</code> instances.
-			</p>
-			<p>
-				<em>
-	In practical development terms: The System classloader returned by <code>Classloader.getSystemClassLoader()</code>
-	will be either the bootstrap classloader or a direct descendent of the bootstrap classloader.
-	Only when debugging issues concerning the system classloader should there be any need to consider the detailed
-	differences between the bootstrap classloader and the system classloader.
-				</em>
-			</p>
-    	</subsection>
-		<subsection name='Runtime Package'>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSpec 5.3</a>) 
-	At runtime, a class (or interface) is determined by its fully qualified name 
-	and by the classloader that defines it. This is known as the class's runtime package. 
-			</p>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#75929'>VMSpec 5.4.4</a>) 
-	Only classes in the same runtime package are mutually accessible.
-			</p>
-			<p>
-				<em>
-	In practical development terms: two classes with the same symbolic name can only be used interchangably 
-	if they are defined by the same classloader. A classic symptom indicative of a classloader issue is that
-	two classes with the same fully qualified name are found to be incompatible during a method call. 
-	This may happen when a member is expecting an interface which is (seemingly) implemented by a class
-	but the class is in a different runtime package after being defined by a different classloader. This is a 
-	fundamental java language security feature. 
-				</em>
-			</p>
-    	</subsection>
-    	
-		<subsection name='Loader Used To Resolve A Symbolic Reference'>
-			<p>
-	(<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSpec 5.3</a>) 
-	The classloader which defines the class (whose reference is being resolved) is the one 
-	used to initiate loading of the class referred to.
-			</p>
-			<p>
-				<em>
-	In practial development terms: This is very important to bear in mind when trying to solve classloader issues. 
-	A classic misunderstanding is this: suppose class A defined by classloader C has a symbolic reference to 
-	class B and further that when C initiates loading of B, this is delegated to classloader D which defines B.
-	Class B can now only resolve symbols that can be loaded by D, rather than all those which can be loaded by C.
-	This is a classic recipe for classloader problems. 
-				</em>
-			</p>
-    	</subsection>
-   	
-		<subsection name='Bibliography'>
-			<ul>
-				<li>
-		<a href='http://java.sun.com/docs/books/vmspec/'>VMSpec</a> <em>The Java Virtual Machine Specification, Second Edition</em> 
-				</li>
-				<li>
-		<a href='http://java.sun.com/docs/books/jls/'>LangSpec</a> <em>The Java Language Specification, Second Edition</em>
-				</li>
-			</ul>
-    	</subsection>    	
-	</section>
- 	<section name='A Short Guide To Hierarchical Class Loading'>
-		<subsection name='Delegating Class Loaders'>
-			<p>
-	When asked to load a class, a class loader may either define the class itself or delegate.
-	The base <code>ClassLoader</code> class insists that every implementation has a parent class loader. 
-	This delegation model therefore naturally forms a tree structure rooted in the bootstrap classloader.
-			</p>
-			<p>
-	Containers (i.e. applications such as servlet engines or application servers
-	that manage and provide support services for a number of "contained" applications
-	that run inside of them) often use complex trees to allow isolation of different applications 
-	running within the container. This is particularly true of J2EE containers. 
-			</p>
-		</subsection>
-
-		<subsection name='Parent-First And Child-First Class Loaders'>
-			<p>
-	When a classloader is asked to load a class, a question presents itself: should it immediately
-	delegate the loading to its parent (and thus only define those classes not defined by its parent)
-	or should it try to define it first itself (and only delegate to its parent those classes it does
-	not itself define). Classloaders which universally adopt the first approach are termed parent-first
-	and the second child-first. 
-			</p>
-			<p>
-   <strong>Note:</strong> the term child-first (though commonly used) is misleading.	
+      <p>
+  (<a href='http://java.sun.com/docs/books/jls/second_edition/html/execution.doc.html#44524'>LangSpec 12.3.3</a>)
+  The bytecode representation of a class contains symbolic names for other classes referenced.
+      </p>
+      <p>
+        <em>
+  In practical development terms: If a class is imported (either explicitly in the list of imports at the top of
+  the source file or implicitly through a fully qualified name in the source code) it is referenced symbolically.
+        </em>
+      </p>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#73492'>VMSpec 5.4.3</a>)
+  Resolution of a symbolic reference occurs dynamically at runtime and is carried out by
+  the Java Virtual Machine. Resolution of a symbolic reference requires loading and linking of the new class.
+      </p>
+      <p>
+        <em>
+  Note: references are not statically resolved at compile time.
+        </em>
+      </p>
+      </subsection>
+    <subsection name='Loading'>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#19175'>VMSpec 2.17.2</a>)
+  Loading is the name given to the process by which a binary form of a class is obtained
+  by the Java Virtual Machine.
+  Java classes are always loaded and linked dynamically by the Java Virtual Machine
+  (rather than statically by the compiler).
+      </p>
+      <p>
+        <em>
+  In practical development terms:
+  This means that the developer has no certain knowledge about the actual
+  bytecode that will be used to execute any external call (one made outside the class). This is determined only
+  at execution time and is affected by the way that the code is deployed.
+        </em>
+      </p>
+      </subsection>
+    <subsection name='Linking'>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#22574'>VMSpec 2.17.3</a>)
+  Linking is the name used for combining the
+  binary form of a class into the Java Virtual Machine. This must happen before the class can be used.
+      </p>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#22574'>VMSpec 2.17.3</a>)
+  Linking is composed of verification, preparation and resolution (of symbolic references).
+  Flexibility is allowed over the timing of resolution. (Within limit) this may happen at any time after
+  preparation and before that reference is used.
+      </p>
+      <p>
+        <em>
+  In practical development terms: This means that different JVMs may realize that a reference cannot be
+  resolved at different times during execution. Consequently, the actual behaviour cannot be precisely predicted
+  without intimate knowledge of the JVM (on which the bytecode will be executed).
+  This makes it hard to give universal guidance to users.
+        </em>
+      </p>
+      </subsection>
+
+    <subsection name='Loading Classes'>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#19175'>VMSpec 2.17.2</a>)
+  The loading process is performed by a <code>ClassLoader</code>.
+      </p>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSpec 5.3</a>)
+  A classloader may create a class either by delegation or by defining it directly.
+  The classloader that initiates loading of a class is known as the initiating loader.
+  The classloader that defines the class is known as the defining loader.
+      </p>
+      <p>
+        <em>
+  In practical terms: understanding and appreciating this distinction is crucial when debugging issues
+  concerning classloaders.
+        </em>
+      </p>
+      </subsection>
+
+    <subsection name='Bootstrap Classloader'>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSPEC 5.3</a>)
+  The bootstrap is the base <code>ClassLoader</code> supplied by the Java Virtual Machine.
+  All others are user (also known as application) <code>ClassLoader</code> instances.
+      </p>
+      <p>
+        <em>
+  In practical development terms: The System classloader returned by <code>Classloader.getSystemClassLoader()</code>
+  will be either the bootstrap classloader or a direct descendent of the bootstrap classloader.
+  Only when debugging issues concerning the system classloader should there be any need to consider the detailed
+  differences between the bootstrap classloader and the system classloader.
+        </em>
+      </p>
+      </subsection>
+    <subsection name='Runtime Package'>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSpec 5.3</a>)
+  At runtime, a class (or interface) is determined by its fully qualified name
+  and by the classloader that defines it. This is known as the class's runtime package.
+      </p>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#75929'>VMSpec 5.4.4</a>)
+  Only classes in the same runtime package are mutually accessible.
+      </p>
+      <p>
+        <em>
+  In practical development terms: two classes with the same symbolic name can only be used interchangably
+  if they are defined by the same classloader. A classic symptom indicative of a classloader issue is that
+  two classes with the same fully qualified name are found to be incompatible during a method call.
+  This may happen when a member is expecting an interface which is (seemingly) implemented by a class
+  but the class is in a different runtime package after being defined by a different classloader. This is a
+  fundamental java language security feature.
+        </em>
+      </p>
+      </subsection>
+
+    <subsection name='Loader Used To Resolve A Symbolic Reference'>
+      <p>
+  (<a href='http://java.sun.com/docs/books/vmspec/2nd-edition/html/ConstantPool.doc.html#72007'>VMSpec 5.3</a>)
+  The classloader which defines the class (whose reference is being resolved) is the one
+  used to initiate loading of the class referred to.
+      </p>
+      <p>
+        <em>
+  In practial development terms: This is very important to bear in mind when trying to solve classloader issues.
+  A classic misunderstanding is this: suppose class A defined by classloader C has a symbolic reference to
+  class B and further that when C initiates loading of B, this is delegated to classloader D which defines B.
+  Class B can now only resolve symbols that can be loaded by D, rather than all those which can be loaded by C.
+  This is a classic recipe for classloader problems.
+        </em>
+      </p>
+      </subsection>
+
+    <subsection name='Bibliography'>
+      <ul>
+        <li>
+    <a href='http://java.sun.com/docs/books/vmspec/'>VMSpec</a> <em>The Java Virtual Machine Specification, Second Edition</em>
+        </li>
+        <li>
+    <a href='http://java.sun.com/docs/books/jls/'>LangSpec</a> <em>The Java Language Specification, Second Edition</em>
+        </li>
+      </ul>
+      </subsection>
+  </section>
+  <section name='A Short Guide To Hierarchical Class Loading'>
+    <subsection name='Delegating Class Loaders'>
+      <p>
+  When asked to load a class, a class loader may either define the class itself or delegate.
+  The base <code>ClassLoader</code> class insists that every implementation has a parent class loader.
+  This delegation model therefore naturally forms a tree structure rooted in the bootstrap classloader.
+      </p>
+      <p>
+  Containers (i.e. applications such as servlet engines or application servers
+  that manage and provide support services for a number of "contained" applications
+  that run inside of them) often use complex trees to allow isolation of different applications
+  running within the container. This is particularly true of J2EE containers.
+      </p>
+    </subsection>
+
+    <subsection name='Parent-First And Child-First Class Loaders'>
+      <p>
+  When a classloader is asked to load a class, a question presents itself: should it immediately
+  delegate the loading to its parent (and thus only define those classes not defined by its parent)
+  or should it try to define it first itself (and only delegate to its parent those classes it does
+  not itself define). Classloaders which universally adopt the first approach are termed parent-first
+  and the second child-first.
+      </p>
+      <p>
+   <strong>Note:</strong> the term child-first (though commonly used) is misleading.
    A better term (and one which may be encountered on the mailing list) is parent-last.
    This more accurately describes the actual process of classloading performed
-   by such a classloader.		
-			</p>
-			<p>
-	Parent-first loading has been the standard mechanism in the JDK
-	class loader, at least since Java 1.2 introduced hierarchical classloaders.  
-			</p>
-			<p>
-	Child-first classloading has the advantage of helping to improve isolation 
-	between containers and the applications inside them.  If an application 
-	uses a library jar that is also used by the container, but the version of
-	the jar used by the two is different, child-first classloading allows the
-	contained application to load its version of the jar without affecting the
-	container.
-			</p>
-			<p>
-	The ability for a servlet container to offer child-first classloading 
-	is made	available, as an option, by language in the servlet spec (Section
-	9.7.2) that allows a container to offer child-first loading with
-	certain restrictions, such as not allowing replacement of java.* or
-	javax.* classes, or the container's implementation classes.
-			</p>
-			<p>
-	Though child-first and parent-first are not the only strategies possible, 
-	they are by far the most common.
-	All other strategies are rare.
-	However, it is not uncommon to be faced with a mixture of parent-first and child-first
-	classloaders within the same hierarchy.
-			</p>
-		</subsection>
-
-		<subsection name='Class ClassLoader'>
-			<p>
-	The class loader used to define a class is available programmatically by calling 
-	the <code>getClassLoader</code> method
-	on the class in question. This is often known as the class classloader.
-			</p>
-		</subsection>
-		
-		<subsection name='Context ClassLoader'>
-			<p>
-	Java 1.2 introduces a mechanism which allows code to access classloaders
-	which are not the class classloader or one of its parents.
-	A thread may have a class loader associated with it by its creator for use
-	by code running in the thread when loading resources and classes. 
-	This classloader is accessed by the <code>getContextClassLoader</code> 
-	method on <code>Thread</code>. It is therefore often known as the context classloader.
-			</p>
-			<p>
-	Note that the quality and appropriateness of the context classloader depends on the
-	care with which the thread's owner manages it.
-			</p>
-		</subsection>
-		
-		<subsection name='The Context Classloader in Container Applications'>
-			<p>
-	The Javadoc for 
-	<a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html#setContextClassLoader(java.lang.ClassLoader)">
-	<code>Thread.setContextClassLoader</code></a> emphasizes the setting of the 
-	context classloader as an aspect of thread creation.  However, in many 
-	applications the context classloader is not fixed at thread creation but 
-	rather is changed throughout the life of a thread as thread execution moves
-	from one context to another.  This usage of the context classloader is 
-	particularly important in container applications.	
-			</p>
-			<p>
-	For example, in a hypothetical servlet container, a pool of threads 
-	is created to handle HTTP requests.  When created these threads have their 
-	context classloader set to a classloader that loads container classes.  
-	After the thread is assigned to handle a request, container code parses 
-	the request and then determines which of the deployed web applications 
-	should handle it. Only when the container is about to call code associated 
-	with a particular web application (i.e. is about to cross an "application 
-	boundary") is the context classloader set to the classloader used to load 
-	the web app's classes.  When the web application finishes handling the 
-	request and the call returns, the context classloader is set back to the 
-	container classloader.
-			</p>
-			<p>
-	In a properly managed container, changes in the context classloader are 
-	made when code execution crosses an application boundary.  When contained 
-	application <code>A</code> is handling a request, the context classloader 
-	should be the one used to load <code>A</code>'s resources. When application 
-	<code>B</code> is handling a request, the context classloader should be 
-	<code>B</code>'s.
-	      </p>
-			<p>
-	While a contained application is handling a request, it is not 
-	unusual for it to call system or library code loaded by the container.  
-	For example, a contained application may wish to call a utility function 
-	provided by a shared library.  This kind of call is considered to be 
-	within the "application boundary", so the context classloader remains 
-	the contained application's classloader.  If the system or library code 
-	needs to load classes or other resources only visible to the contained 
-	application's classloader, it can use the context classloader to access 
-	these resources.
-			</p>
-			<p>
-	If the context classloader is properly managed, system and library code 
-	that can be accessed by multiple applications can not only use it to load 
-	application-specific resources, but also can use it to detect which 
-	application is making a call and thereby provided services tailored to the 
-	caller.
-			</p>
-		</subsection>
-
-		<subsection name='Issues with Context ClassLoaders'>
-			<p>
-	In practice, context classloaders vary in quality and issues sometimes arise 
-	when using them.
-	The owner of the thread is responsible for setting the classloader.
-	If the context classloader is not set then it will default to the system
-	classloader. 
-	Any container doing so will cause difficulties for any code using the context classloader.
-			</p>
-			<p>
-	The owner is also at liberty to set the classloader as they wish.
-	Containers may set the context classloader so that it is neither a child nor a parent 
-	of the classloader that defines the class using that loader. 
-	Again, this will cause difficulties.
-			</p>
-			<p>
-	Introduced in <a href='http://java.sun.com/j2ee/j2ee-1_3-fr-spec.pdf'>Java J2EE 1.3</a> 
-	is a requirement for vendors to appropriately set the context classloader.
-	Section 6.2.4.8 (1.4 text):
-			</p>
+   by such a classloader.
+      </p>
+      <p>
+  Parent-first loading has been the standard mechanism in the JDK
+  class loader, at least since Java 1.2 introduced hierarchical classloaders.
+      </p>
+      <p>
+  Child-first classloading has the advantage of helping to improve isolation
+  between containers and the applications inside them.  If an application
+  uses a library jar that is also used by the container, but the version of
+  the jar used by the two is different, child-first classloading allows the
+  contained application to load its version of the jar without affecting the
+  container.
+      </p>
+      <p>
+  The ability for a servlet container to offer child-first classloading
+  is made available, as an option, by language in the servlet spec (Section
+  9.7.2) that allows a container to offer child-first loading with
+  certain restrictions, such as not allowing replacement of java.* or
+  javax.* classes, or the container's implementation classes.
+      </p>
+      <p>
+  Though child-first and parent-first are not the only strategies possible,
+  they are by far the most common.
+  All other strategies are rare.
+  However, it is not uncommon to be faced with a mixture of parent-first and child-first
+  classloaders within the same hierarchy.
+      </p>
+    </subsection>
+
+    <subsection name='Class ClassLoader'>
+      <p>
+  The class loader used to define a class is available programmatically by calling
+  the <code>getClassLoader</code> method
+  on the class in question. This is often known as the class classloader.
+      </p>
+    </subsection>
+
+    <subsection name='Context ClassLoader'>
+      <p>
+  Java 1.2 introduces a mechanism which allows code to access classloaders
+  which are not the class classloader or one of its parents.
+  A thread may have a class loader associated with it by its creator for use
+  by code running in the thread when loading resources and classes.
+  This classloader is accessed by the <code>getContextClassLoader</code>
+  method on <code>Thread</code>. It is therefore often known as the context classloader.
+      </p>
+      <p>
+  Note that the quality and appropriateness of the context classloader depends on the
+  care with which the thread's owner manages it.
+      </p>
+    </subsection>
+
+    <subsection name='The Context Classloader in Container Applications'>
+      <p>
+  The Javadoc for
+  <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html#setContextClassLoader(java.lang.ClassLoader)">
+  <code>Thread.setContextClassLoader</code></a> emphasizes the setting of the
+  context classloader as an aspect of thread creation.  However, in many
+  applications the context classloader is not fixed at thread creation but
+  rather is changed throughout the life of a thread as thread execution moves
+  from one context to another.  This usage of the context classloader is
+  particularly important in container applications.
+      </p>
+      <p>
+  For example, in a hypothetical servlet container, a pool of threads
+  is created to handle HTTP requests.  When created these threads have their
+  context classloader set to a classloader that loads container classes.
+  After the thread is assigned to handle a request, container code parses
+  the request and then determines which of the deployed web applications
+  should handle it. Only when the container is about to call code associated
+  with a particular web application (i.e. is about to cross an "application
+  boundary") is the context classloader set to the classloader used to load
+  the web app's classes.  When the web application finishes handling the
+  request and the call returns, the context classloader is set back to the
+  container classloader.
+      </p>
+      <p>
+  In a properly managed container, changes in the context classloader are
+  made when code execution crosses an application boundary.  When contained
+  application <code>A</code> is handling a request, the context classloader
+  should be the one used to load <code>A</code>'s resources. When application
+  <code>B</code> is handling a request, the context classloader should be
+  <code>B</code>'s.
+        </p>
+      <p>
+  While a contained application is handling a request, it is not
+  unusual for it to call system or library code loaded by the container.
+  For example, a contained application may wish to call a utility function
+  provided by a shared library.  This kind of call is considered to be
+  within the "application boundary", so the context classloader remains
+  the contained application's classloader.  If the system or library code
+  needs to load classes or other resources only visible to the contained
+  application's classloader, it can use the context classloader to access
+  these resources.
+      </p>
+      <p>
+  If the context classloader is properly managed, system and library code
+  that can be accessed by multiple applications can not only use it to load
+  application-specific resources, but also can use it to detect which
+  application is making a call and thereby provided services tailored to the
+  caller.
+      </p>
+    </subsection>
+
+    <subsection name='Issues with Context ClassLoaders'>
+      <p>
+  In practice, context classloaders vary in quality and issues sometimes arise
+  when using them.
+  The owner of the thread is responsible for setting the classloader.
+  If the context classloader is not set then it will default to the system
+  classloader.
+  Any container doing so will cause difficulties for any code using the context classloader.
+      </p>
+      <p>
+  The owner is also at liberty to set the classloader as they wish.
+  Containers may set the context classloader so that it is neither a child nor a parent
+  of the classloader that defines the class using that loader.
+  Again, this will cause difficulties.
+      </p>
+      <p>
+  Introduced in <a href='http://java.sun.com/j2ee/j2ee-1_3-fr-spec.pdf'>Java J2EE 1.3</a>
+  is a requirement for vendors to appropriately set the context classloader.
+  Section 6.2.4.8 (1.4 text):
+      </p>
 <source>
 This specification requires that J2EE containers provide a per thread
 context class loader for the use of system or library classes in
@@ -534,120 +534,120 @@
 that can be used to load top level application classes as described
 above.
 </source>
-			<p>
-	This specification leaves quite a lot of freedom for vendors.
-	(As well as using unconventional terminology and containing the odd typo.)
-	It is a difficult passage (to say the least).
-			</p>		
-		</subsection>
-
-		<subsection name='Reflection And The Context ClassLoader'>
-			<p>
-	Reflection cannot bypass restrictions imposed by the java language security model, but, by avoiding symbolic
-	references, reflection can be used to load classes which could not otherwise be loaded. Another <code>ClassLoader</code>
-	can be used to load a class and then reflection used to create an instance. 
-			</p>
-			<p>
-	Recall that the runtime packaging is used to determine accessibility. 
-	Reflection cannot be used to avoid basic java security. 
-	Therefore, the runtime packaging becomes an issue when attempting to cast classes 
-	created by reflection using other class loaders.
-	When using this strategy, various modes of failure are possible 
-	when common class references are defined by the different class loaders.
-			</p>
-			<p>
-	Reflection is often used with the context classloader. In theory, this allows a class defined in
-	a parent classloader to load any class that is loadable by the application.
-	In practice, this only works well when the context classloader is set carefully.
-			</p>
-		</subsection>
-
-		<subsection name='More Information'>
-			<ul>
-				<li>
-					Articles On Class Loaders And Class Loading
-					<ul>
-						<li>
-							<a
-		href='http://www.onjava.com/pub/a/onjava/2001/07/25/ejb.html'>
-	Article on J2EE class loading
-							</a>
-						</li>
-						<li>
-							<a
-		href='http://www.onjava.com/pub/a/onjava/2003/11/12/classloader.html'>
-	Article on class loading
-							</a>
-						</li>
-						<li>
-							<a 
-		href='http://www.javaworld.com/javaworld/javaqa/2003-06/01-qa-0606-load.html'>
-	Article on context class loaders
-							</a>
-						</li>
-					</ul>
-				</li>
-				<li>Specific Containers
-					<ul>
-						<li>
-							<a 
-		href='http://tomcat.apache.org/tomcat-4.1-doc/class-loader-howto.html'>
-	Tomcat 4.1 ClassLoader Guide
-							</a>
-						</li>
-						<li>
-							<a
-		href='http://tomcat.apache.org/tomcat-5.0-doc/class-loader-howto.html'>
-	Tomcat 5.0 ClassLoader Guide
-							</a>	
-						</li>
-						<li>
-							<a
+      <p>
+  This specification leaves quite a lot of freedom for vendors.
+  (As well as using unconventional terminology and containing the odd typo.)
+  It is a difficult passage (to say the least).
+      </p>
+    </subsection>
+
+    <subsection name='Reflection And The Context ClassLoader'>
+      <p>
+  Reflection cannot bypass restrictions imposed by the java language security model, but, by avoiding symbolic
+  references, reflection can be used to load classes which could not otherwise be loaded. Another <code>ClassLoader</code>
+  can be used to load a class and then reflection used to create an instance.
+      </p>
+      <p>
+  Recall that the runtime packaging is used to determine accessibility.
+  Reflection cannot be used to avoid basic java security.
+  Therefore, the runtime packaging becomes an issue when attempting to cast classes
+  created by reflection using other class loaders.
+  When using this strategy, various modes of failure are possible
+  when common class references are defined by the different class loaders.
+      </p>
+      <p>
+  Reflection is often used with the context classloader. In theory, this allows a class defined in
+  a parent classloader to load any class that is loadable by the application.
+  In practice, this only works well when the context classloader is set carefully.
+      </p>
+    </subsection>
+
+    <subsection name='More Information'>
+      <ul>
+        <li>
+          Articles On Class Loaders And Class Loading
+          <ul>
+            <li>
+              <a
+    href='http://www.onjava.com/pub/a/onjava/2001/07/25/ejb.html'>
+  Article on J2EE class loading
+              </a>
+            </li>
+            <li>
+              <a
+    href='http://www.onjava.com/pub/a/onjava/2003/11/12/classloader.html'>
+  Article on class loading
+              </a>
+            </li>
+            <li>
+              <a
+    href='http://www.javaworld.com/javaworld/javaqa/2003-06/01-qa-0606-load.html'>
+  Article on context class loaders
+              </a>
+            </li>
+          </ul>
+        </li>
+        <li>Specific Containers
+          <ul>
+            <li>
+              <a
+    href='http://tomcat.apache.org/tomcat-4.1-doc/class-loader-howto.html'>
+  Tomcat 4.1 ClassLoader Guide
+              </a>
+            </li>
+            <li>
+              <a
+    href='http://tomcat.apache.org/tomcat-5.0-doc/class-loader-howto.html'>
+  Tomcat 5.0 ClassLoader Guide
+              </a>
+            </li>
+            <li>
+              <a
 href='http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.express.doc/info/exp/ae/trun_classload_web.html'>
-	Classloading In WebSphere
-							</a>
-						</li>
-					</ul>
-				</li>
-			</ul>
-		</subsection>
-	</section>
-
- 	<section name='A Short Theory Guide To JCL'>
-		<subsection name='Isolation And The Context Class Loader'>
-			<p>
-	JCL takes the view that different context class loader indicate boundaries between applications
-	running in a container environment. Isolation requires that JCL honours these boundaries
-	and therefore allows different isolated applications to configure their logging systems
-	independently.
-			</p>
-    	</subsection>
-    	<subsection name='Log And LogFactory'>
-			<p>
-	Performance dictates that symbolic references to these classes are present in the calling application code
-	(reflection would simply be too slow). Therefore, these classes must be loadable by the classloader
-	that loads the application code.
-			</p>
-    	</subsection>
-    	<subsection name='Log Implementations'>
-			<p>
-	Performance dictates that symbolic references to the logging systems are present in the implementation
-	classes (again, reflection would simply be too slow). So, for an implementation to be able to function, 
-	it is neccessary for the logging system to be loadable by the classloader that defines the implementing class.
-			</p>
-    	</subsection>
-    	
-    	<subsection name='Using Reflection To Load Log Implementations'>
-			<p>
-	However, there is actually no reason why <code>LogFactory</code> requires symbolic references to particular <code>Log</code>
-	implementations. Reflection can be used to load these from an appropriate classloader 
-	without unacceptable performance degradation.
-	This is the strategy adopted by JCL.
-			</p>
-			<p>
-	JCL uses the context classloader to load the <code>Log</code> implementation. 
-			</p>
-    	</subsection>
-	</section>
+  Classloading In WebSphere
+              </a>
+            </li>
+          </ul>
+        </li>
+      </ul>
+    </subsection>
+  </section>
+
+  <section name='A Short Theory Guide To JCL'>
+    <subsection name='Isolation And The Context Class Loader'>
+      <p>
+  JCL takes the view that different context class loader indicate boundaries between applications
+  running in a container environment. Isolation requires that JCL honours these boundaries
+  and therefore allows different isolated applications to configure their logging systems
+  independently.
+      </p>
+      </subsection>
+      <subsection name='Log And LogFactory'>
+      <p>
+  Performance dictates that symbolic references to these classes are present in the calling application code
+  (reflection would simply be too slow). Therefore, these classes must be loadable by the classloader
+  that loads the application code.
+      </p>
+      </subsection>
+      <subsection name='Log Implementations'>
+      <p>
+  Performance dictates that symbolic references to the logging systems are present in the implementation
+  classes (again, reflection would simply be too slow). So, for an implementation to be able to function,
+  it is neccessary for the logging system to be loadable by the classloader that defines the implementing class.
+      </p>
+      </subsection>
+
+      <subsection name='Using Reflection To Load Log Implementations'>
+      <p>
+  However, there is actually no reason why <code>LogFactory</code> requires symbolic references to particular <code>Log</code>
+  implementations. Reflection can be used to load these from an appropriate classloader
+  without unacceptable performance degradation.
+  This is the strategy adopted by JCL.
+      </p>
+      <p>
+  JCL uses the context classloader to load the <code>Log</code> implementation.
+      </p>
+      </subsection>
+  </section>
 </body>
 </document>

Modified: commons/proper/logging/trunk/xdocs/troubleshooting.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/xdocs/troubleshooting.xml?rev=581090&r1=581089&r2=581090&view=diff
==============================================================================
--- commons/proper/logging/trunk/xdocs/troubleshooting.xml (original)
+++ commons/proper/logging/trunk/xdocs/troubleshooting.xml Mon Oct  1 15:01:06 2007
@@ -282,33 +282,33 @@
     </subsection>
   </section>
   <section name='Containers With Custom LogFactory Implementations'>
-  	<p>
+    <p>
  Some containers use a custom <code>LogFactory</code> implementation to adapt JCL to their particular
  logging system. This has some important consequences for the deployment of applications using JCL within 
  these containers.
-  	</p>
-  	<p>
+    </p>
+    <p>
  Containers known to use this mechanism:
-  	</p>
-  	<ul>
-  		<li><a href='http://www.ibm.com/software/websphere/'>WebSphere Application Server</a> from 
-  		<a href='http://www.ibm.com/software/websphere/'>IBM</a> (versions 5 and 6).</li>
-  	</ul>
-  	<p>
+    </p>
+    <ul>
+      <li><a href='http://www.ibm.com/software/websphere/'>WebSphere Application Server</a> from
+      <a href='http://www.ibm.com/software/websphere/'>IBM</a> (versions 5 and 6).</li>
+    </ul>
+    <p>
  Containers suspected to use this mechanism:
-  	</p>
-  	  	<ul>
-  		 <li>WebSphere Application Server (other versions).</li>
-  		</ul>
-  	<p>
+    </p>
+    <ul>
+      <li>WebSphere Application Server (other versions).</li>
+    </ul>
+    <p>
 The Apache Commons team would be grateful if reports were posted to the development list
 of other containers using a custom implementation.
-  	</p>
-  	<subsection name='The Incompatible LogFactory Issue'>
-  		<subsection name='Symptoms'>
-  			<p>
+    </p>
+    <subsection name='The Incompatible LogFactory Issue'>
+      <subsection name='Symptoms'>
+        <p>
   An exception is thrown by JCL with a message similar to:
-  			</p>
+        </p>
   <code><pre>
   The chosen LogFactory implementation does not extend LogFactory. Please check your configuration. 
   (Caused by java.lang.ClassCastException: The application has specified that a custom LogFactory 
@@ -320,26 +320,26 @@
   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://commons.apache.org/logging.
   </pre></code>
-  			<p>
+        <p>
   This is a WebSphere example so the name of the custom LogFactory is 
   <code>com.ibm.ws.commons.logging.TrLogFactory</code>. For other containers, this class name will
   differ.
-  			</p>
-  		</subsection>
-  		<subsection name='Explanation'>
-  		<p>
+        </p>
+      </subsection>
+      <subsection name='Explanation'>
+      <p>
  A custom <code>LogFactory</code> implementation can only be used if the implementation class loaded 
  dynamically at runtime can be cast to the <code>LogFactory</code> class that loaded it. There are 
  several ways in which this cast can fail. The most obvious is that the source code may not actually 
  extend <code>LogFactory</code>. The source may be compatible but if the <code>LogFactory</code> class
  against which the source is compiled is not binary compatible then the cast will also fail.
-  		</p>
-  		<p>
+      </p>
+      <p>
  There is also another more unusual way in which this cast can fail: even when the binary is compatible,
  the implementation class loaded at runtime may be linked to a different instance of the 
  <code>LogFactory</code> class. For more information, see the <a href='tech.html'>tech guide</a>.
-  		</p>
-  		<p>
+      </p>
+      <p>
  This situation may be encountered in containers which use a custom <code>LogFactory</code> implementation.
  The implementation will typically be provided in a shared, high level classloader together with JCL.
  When an application classloader contains <code>LogFactory</code>, the implementation will be loaded 
@@ -347,8 +347,8 @@
  class loaded by the higher level classloader. Even if the 
  <code>LogFactory</code> implementations are binary compatible, since they are loaded by different classloaders
  the two <code>LogFactory</code> Class instances are not equal and so the cast must fail.
-  		</p>
-  		<p>
+      </p>
+      <p>
 The policy adopted by JCL in this situation is to re-throw this exception. Additional information
 is included in the message to help diagnosis. The reasoning behind this choice is that a 
 particular <code>LogFactory</code> implementation has been actively specified and this
@@ -356,47 +356,47 @@
 containers which have custom implementations: the above runtime exception may be thrown
 under certain classloading policies without the user knowingly specifying a custom 
 implementation.
-  		</p>
-  		</subsection>
-  		<subsection name='Fixes'>
-  			<p>
+      </p>
+      </subsection>
+      <subsection name='Fixes'>
+        <p>
  There are various ways to fix this problem. Which fix is right depends on the circumstances.
-  			</p>
-  			<p>
+        </p>
+        <p>
  If you are happy using another classloading policy for the application, select a 
  classloading policy which ensures that <code>LogFactory</code> will be loaded from the
  shared classloader containing the custom implementation.
-  			</p>
-  			<p>
+        </p>
+        <p>
  If you want to bypass the container adaption mechanism then set the appropriate system property 
  to the default value when the container is started:
-  			</p>
+        </p>
  <code><pre>
  -Dorg.apache.commons.logging.LogFactory=org.apache.commons.logging.impl.LogFactoryImpl
  </pre></code>
- 			<p>
+      <p>
  If you want to continue to use the default container mechanism then:
- 			</p>
- 			<ul>
- 				<li>
+      </p>
+      <ul>
+        <li>
  Find and replace the commons-logging implementation used by the container with
- the most modern release				
- 				</li>
- 	 			<li>
+ the most modern release
+        </li>
+        <li>
  Replace the commons-logging jar in the application with the commons-logging-adapters jar.
  This will ensure that application classloader will delegate to it's parent when loading
  <code>LogFactory</code>.
- 				</li>			
- 			</ul>
- 			<p>
+        </li>
+      </ul>
+      <p>
  If you encounter difficulties when applying the fixes recommended, please turn on
  <a href='#Using JCL Diagnostics'>diagnostics</a> and consult the logs.
- 			</p>
-	  	</subsection>
-  	</subsection>
+      </p>
+      </subsection>
+    </subsection>
   </section>
   <section name='Containers With Custom ClassLoading Behaviour for Logging'>
-  	<p>
+    <p>
  Because commons-logging is such a fundamental library, some containers modify the way
  in which classloading behaves for commons-logging classes.
    </p>