[logback-dev] svn commit: r1388 - in logback/trunk/logback-site/src/site/pages: . manual

noreply.seb at qos.ch noreply.seb at qos.ch
Mon Mar 5 10:57:10 CET 2007


Author: seb
Date: Mon Mar  5 10:57:10 2007
New Revision: 1388

Modified:
   logback/trunk/logback-site/src/site/pages/manual/filters.html
   logback/trunk/logback-site/src/site/pages/manual/joran.html
   logback/trunk/logback-site/src/site/pages/manual/layouts.html
   logback/trunk/logback-site/src/site/pages/news.html

Log:
Doc improvements

Modified: logback/trunk/logback-site/src/site/pages/manual/filters.html
==============================================================================
--- logback/trunk/logback-site/src/site/pages/manual/filters.html	(original)
+++ logback/trunk/logback-site/src/site/pages/manual/filters.html	Mon Mar  5 10:57:10 2007
@@ -54,7 +54,7 @@
 		<a name="Filter"></a>
 		<p><code>Filter</code> objects all implement the 
 		<a href="../xref/ch/qos/logback/core/filter/Filter.html"><code>Filter</code></a> 
-		abscract class. The <code>decide(Object event)</code> method is passed a
+		abstract class. The <code>decide(Object event)</code> method is passed a
 		newly created <code>LoggingEvent</code> object.
 		</p>
 		

Modified: logback/trunk/logback-site/src/site/pages/manual/joran.html
==============================================================================
--- logback/trunk/logback-site/src/site/pages/manual/joran.html	(original)
+++ logback/trunk/logback-site/src/site/pages/manual/joran.html	Mon Mar  5 10:57:10 2007
@@ -236,7 +236,7 @@
 </p>
 
 <em>Example 3.4: Basic configuration file using debug mode (logback-examples/src/main/java/chapter3/sample1.xml)</em>
-<div class="source"><pre>&lt;configuration debug="true">
+<div class="source"><pre>&lt;configuration <b>debug="true"</b>>
 
   &lt;appender name="STDOUT"
     class="ch.qos.logback.core.ConsoleAppender">
@@ -848,7 +848,7 @@
 <em>Example 3.14: Variable substitution using a separate file (logback-examples/src/main/java/chapter3/variableSubstitution3.xml)</em>
 <div class="source"><pre>&lt;configuration>
 
-  &lt;substitutionProperty file="variables1.properties" />
+  <b>&lt;substitutionProperty file="variables1.properties" /></b>
 
   &lt;appender name="FILE"
     class="ch.qos.logback.core.rolling.RollingFileAppender">
@@ -873,7 +873,7 @@
 &lt;/configuration></pre></div>
 
 <p>
-This configuration file contains a link to another file called <em>variables.properties</em>.
+This configuration file contains a link to another file called <em>variables1.properties</em>.
 The variables contained in that other file will be read and will thus be available to the 
 logback configuration file. Here is what the <em>variable.properties</em> file looks like.
 </p>
@@ -888,7 +888,7 @@
 <p>
 Recursive subsitution is also available. If the user wants to use variables to
 specify not only the destination directory but also the file name, here is what she
-would write in her <em>variables.properties</em> file.
+would write in her <em>variables1.properties</em> file.
 </p>
 
 
@@ -941,7 +941,7 @@
 <p>Joran is actually a generic configuration system which can be used
 independently of logging. To emphaises this point, we should mention
 that the logback-core module does not have a notion of loggers. In
-that sprit, many of the examples related to this tutorial, have
+that spirit, many of the examples related to this tutorial, have
 nothing to do with loggers, appenders or layouts.
 </p>
 
@@ -949,7 +949,7 @@
 <em>LOGBACK_HOME/logback-examples/src/main/java/chapter3</em>.
 </p>
 
-<p>To install joran, simply <a href="download.html">download</a> 
+<p>To install joran, simply <a href="../download.html">download</a> 
 logback and add <em>logback-core-VERSION.jar</em> to your classpath.</p>
 
 <h2>Historical perspective</h2>

Modified: logback/trunk/logback-site/src/site/pages/manual/layouts.html
==============================================================================
--- logback/trunk/logback-site/src/site/pages/manual/layouts.html	(original)
+++ logback/trunk/logback-site/src/site/pages/manual/layouts.html	Mon Mar  5 10:57:10 2007
@@ -1169,7 +1169,7 @@
 		<div class="source"><pre>&lt;configuration>
 
   <b>&lt;evaluator name="DISPLAY_EX_EVAL">
-    &lt;Expression>throwable != null &amp;&amp; throwable instanceof  \
+    &lt;Expression>throwable != null &amp;amp;&amp;amp; throwable instanceof  \
       chapter5.TestException&lt;/Expression>
   &lt;/evaluator></b>
 	

Modified: logback/trunk/logback-site/src/site/pages/news.html
==============================================================================
--- logback/trunk/logback-site/src/site/pages/news.html	(original)
+++ logback/trunk/logback-site/src/site/pages/news.html	Mon Mar  5 10:57:10 2007
@@ -28,7 +28,7 @@
 
   <hr width="80%" align="center" />
 
-		<h3>MMMM ddd, 2007 - Release of version 0.9.1</h3>
+		<h3>March 5th, 2007 - Release of version 0.9.1</h3>
 
     <p>Logback-class now depends on SLF4J version 1.3.0 instead of
     1.2.</p>
@@ -41,7 +41,7 @@
 		zone.</p>
 		
     <p><a href="http://bugzilla.qos.ch/show_bug.cgi?id=45">Bug
-    #45</a>, also reported by Mark Reynolds has been fixed. There
+    #45</a>, also reported by Mark Reynolds, has been fixed. There
     should be no <code>ClassCastException</code> thrown anymore when
     passing an <code>Object</code> to the printing methods using the
     log4j-bridge module. </p>



More information about the logback-dev mailing list