You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rd...@apache.org on 2006/05/04 19:46:53 UTC

svn commit: r399792 - /jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml

Author: rdonkin
Date: Thu May  4 10:46:51 2006
New Revision: 399792

URL: http://svn.apache.org/viewcvs?rev=399792&view=rev
Log:
Updated contents. Snippet is generated from a stylesheet. Will commit stylesheet to committers later.

Modified:
    jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml

Modified: jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml?rev=399792&r1=399791&r2=399792&view=diff
==============================================================================
--- jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml (original)
+++ jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml Thu May  4 10:46:51 2006
@@ -26,13 +26,90 @@
  </properties>
 
  <body> 
-  <section name='Contents'>
-  	<ul>
-  	    <li>Contents</li>
-  		<li><a href='#Using JCL Diagnostics'>Using JCL Diagnostics</a></li>
-  		<li><a href='#Containers With Custom LogFactory Implementations'>Containers With Custom LogFactory Implementations</a></li>
-  	</ul>
-  </section>
+<section name="Contents">
+<ul>
+<li>
+<a href="#Contents">Contents</a>
+<ul/>
+</li>
+<li>
+<a href="#Using JCL Diagnostics">Using JCL Diagnostics</a>
+<ul>
+<li>
+<a href="#When To Use Diagnostic Logging">When To Use Diagnostic Logging</a>
+<ul/>
+</li>
+<li>
+<a href="#How To Use Diagnostic logging">How To Use Diagnostic logging</a>
+<ul/>
+</li>
+<li>
+<a href="#OIDs">OIDs</a>
+<ul/>
+</li>
+<li>
+<a href="#Diagnostic Message Prefix">Diagnostic Message Prefix</a>
+<ul/>
+</li>
+<li>
+<a href="#ClassLoader Hierarchy Tree">ClassLoader Hierarchy Tree</a>
+<ul/>
+</li>
+<li>
+<a href="#LogFactory Class Bootstrap">LogFactory Class Bootstrap</a>
+<ul/>
+</li>
+<li>
+<a href="#Construction Of LogFactoryImpl Instances">Construction Of LogFactoryImpl Instances</a>
+<ul/>
+</li>
+<li>
+<a href="#Log Discovery Diagnostics">Log Discovery Diagnostics</a>
+<ul/>
+</li>
+</ul>
+</li>
+<li>
+<a href="#Containers With Custom LogFactory Implementations">Containers With Custom LogFactory Implementations</a>
+<ul>
+<li>
+<a href="#The Incompatible LogFactory Issue">The Incompatible LogFactory Issue</a>
+<ul>
+<li>
+<a href="#Symptoms">Symptoms</a>
+<ul/>
+</li>
+<li>
+<a href="#Explanation">Explanation</a>
+<ul/>
+</li>
+<li>
+<a href="#Fixes">Fixes</a>
+<ul/>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>
+<a href="#Containers With Custom ClassLoading Behaviour for Logging">Containers With Custom ClassLoading Behaviour for Logging</a>
+<ul>
+<li>
+<a href="#Apache Tomcat">Apache Tomcat</a>
+<ul/>
+</li>
+<li>
+<a href="#JBoss Application Server">JBoss Application Server</a>
+<ul/>
+</li>
+<li>
+<a href="#Other Containers">Other Containers</a>
+<ul/>
+</li>
+</ul>
+</li>
+</ul>
+</section>
   <section name='Using JCL Diagnostics'>
     <p>
 Diagnostics is a feature introduced in JCL 1.1 as an aid to debugging problems 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: svn commit: r399792 - /jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml

Posted by robert burrell donkin <ro...@blueyonder.co.uk>.
On Thu, 2006-05-04 at 20:38 +0200, Dennis Lundberg wrote:
> The tags does not seem to be in sync, see some examples below...
> 
> rdonkin@apache.org wrote:
> > Author: rdonkin
> > Date: Thu May  4 10:46:51 2006
> > New Revision: 399792
> > 
> > URL: http://svn.apache.org/viewcvs?rev=399792&view=rev
> > Log:
> > Updated contents. Snippet is generated from a stylesheet. Will commit stylesheet to committers later.
> > 
> > Modified:
> >     jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml
> > 
> > Modified: jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml
> > URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml?rev=399792&r1=399791&r2=399792&view=diff
> > ==============================================================================
> > --- jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml (original)
> > +++ jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml Thu May  4 10:46:51 2006
> > @@ -26,13 +26,90 @@
> >   </properties>
> >  
> >   <body> 
> > -  <section name='Contents'>
> > -  	<ul>
> > -  	    <li>Contents</li>
> > -  		<li><a href='#Using JCL Diagnostics'>Using JCL Diagnostics</a></li>
> > -  		<li><a href='#Containers With Custom LogFactory Implementations'>Containers With Custom LogFactory Implementations</a></li>
> > -  	</ul>
> > -  </section>
> > +<section name="Contents">
> > +<ul>
> > +<li>
> > +<a href="#Contents">Contents</a>
> > +<ul/>
> > +</li>
> 
> An empty ul followed by end li???
> Perhaps you meant
> </li>
> </ul>

it's generated using a style sheet: good for ensuring all the contents
are accurate but the xml isn't as pretty as it might be. (hence the
empty list when there are no subsections.) i didn't think it did much
harm but i'll tidy it up by hand.

- robert




---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: svn commit: r399792 - /jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml

Posted by Dennis Lundberg <de...@mdh.se>.
The tags does not seem to be in sync, see some examples below...

rdonkin@apache.org wrote:
> Author: rdonkin
> Date: Thu May  4 10:46:51 2006
> New Revision: 399792
> 
> URL: http://svn.apache.org/viewcvs?rev=399792&view=rev
> Log:
> Updated contents. Snippet is generated from a stylesheet. Will commit stylesheet to committers later.
> 
> Modified:
>     jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml
> 
> Modified: jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml
> URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml?rev=399792&r1=399791&r2=399792&view=diff
> ==============================================================================
> --- jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml (original)
> +++ jakarta/commons/proper/logging/trunk/xdocs/troubleshooting.xml Thu May  4 10:46:51 2006
> @@ -26,13 +26,90 @@
>   </properties>
>  
>   <body> 
> -  <section name='Contents'>
> -  	<ul>
> -  	    <li>Contents</li>
> -  		<li><a href='#Using JCL Diagnostics'>Using JCL Diagnostics</a></li>
> -  		<li><a href='#Containers With Custom LogFactory Implementations'>Containers With Custom LogFactory Implementations</a></li>
> -  	</ul>
> -  </section>
> +<section name="Contents">
> +<ul>
> +<li>
> +<a href="#Contents">Contents</a>
> +<ul/>
> +</li>

An empty ul followed by end li???
Perhaps you meant
</li>
</ul>

> +<li>
> +<a href="#Using JCL Diagnostics">Using JCL Diagnostics</a>
> +<ul>
> +<li>
> +<a href="#When To Use Diagnostic Logging">When To Use Diagnostic Logging</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#How To Use Diagnostic logging">How To Use Diagnostic logging</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#OIDs">OIDs</a>
> +<ul/>

Another empty ul, this time without a starting ul.

> +</li>
> +<li>
> +<a href="#Diagnostic Message Prefix">Diagnostic Message Prefix</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#ClassLoader Hierarchy Tree">ClassLoader Hierarchy Tree</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#LogFactory Class Bootstrap">LogFactory Class Bootstrap</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#Construction Of LogFactoryImpl Instances">Construction Of LogFactoryImpl Instances</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#Log Discovery Diagnostics">Log Discovery Diagnostics</a>
> +<ul/>
> +</li>
> +</ul>
> +</li>
> +<li>
> +<a href="#Containers With Custom LogFactory Implementations">Containers With Custom LogFactory Implementations</a>
> +<ul>
> +<li>
> +<a href="#The Incompatible LogFactory Issue">The Incompatible LogFactory Issue</a>
> +<ul>
> +<li>
> +<a href="#Symptoms">Symptoms</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#Explanation">Explanation</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#Fixes">Fixes</a>
> +<ul/>
> +</li>
> +</ul>
> +</li>
> +</ul>
> +</li>
> +<li>
> +<a href="#Containers With Custom ClassLoading Behaviour for Logging">Containers With Custom ClassLoading Behaviour for Logging</a>
> +<ul>
> +<li>
> +<a href="#Apache Tomcat">Apache Tomcat</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#JBoss Application Server">JBoss Application Server</a>
> +<ul/>
> +</li>
> +<li>
> +<a href="#Other Containers">Other Containers</a>
> +<ul/>
> +</li>
> +</ul>
> +</li>
> +</ul>
> +</section>
>    <section name='Using JCL Diagnostics'>
>      <p>
>  Diagnostics is a feature introduced in JCL 1.1 as an aid to debugging problems 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: commons-dev-help@jakarta.apache.org
> 


-- 
Dennis Lundberg

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org