[logback-dev] [GIT] Logback: the generic, reliable, fast and flexible logging framework. branch, master, updated. release_0.9.19-33-g910d670

added by portage for gitosis-gentoo git-noreply at pixie.qos.ch
Thu Apr 1 20:35:03 CEST 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Logback: the generic, reliable, fast and flexible logging framework.".

The branch, master has been updated
       via  910d6708870cffb23e6c6bd132e7cc288b50a6ca (commit)
      from  d293dc7481b8b5a7b5206a12192c8dff2c445227 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=910d6708870cffb23e6c6bd132e7cc288b50a6ca
http://github.com/ceki/logback/commit/910d6708870cffb23e6c6bd132e7cc288b50a6ca

commit 910d6708870cffb23e6c6bd132e7cc288b50a6ca
Author: Ceki Gulcu <ceki at qos.ch>
Date:   Thu Apr 1 20:33:29 2010 +0200

    - fixed incorrect links in the docs

diff --git a/logback-core/src/test/java/ch/qos/logback/core/joran/PackageTest.java b/logback-core/src/test/java/ch/qos/logback/core/joran/PackageTest.java
index ad7a3f6..69d449e 100644
--- a/logback-core/src/test/java/ch/qos/logback/core/joran/PackageTest.java
+++ b/logback-core/src/test/java/ch/qos/logback/core/joran/PackageTest.java
@@ -18,15 +18,16 @@ import org.junit.runners.Suite;
 import org.junit.runners.Suite.SuiteClasses;
 
 @RunWith(Suite.class)
- at SuiteClasses({SkippingInInterpreterTest.class, TrivialConfiguratorTest.class, ch.qos.logback.core.joran.action.PackageTest.class,
-  ch.qos.logback.core.joran.event.PackageTest.class,
-  ch.qos.logback.core.joran.util.PackageTest.class,
-  ch.qos.logback.core.joran.spi.PackageTest.class,
-  ch.qos.logback.core.joran.replay.PackageTest.class,
-  ch.qos.logback.core.joran.implicitAction.PackageTest.class,
-  ch.qos.logback.core.joran.conditional.PackageTest.class,
-  
- })
+ at SuiteClasses( { SkippingInInterpreterTest.class,
+    TrivialConfiguratorTest.class,
+    ch.qos.logback.core.joran.action.PackageTest.class,
+    ch.qos.logback.core.joran.event.PackageTest.class,
+    ch.qos.logback.core.joran.util.PackageTest.class,
+    ch.qos.logback.core.joran.spi.PackageTest.class,
+    ch.qos.logback.core.joran.replay.PackageTest.class,
+    ch.qos.logback.core.joran.implicitAction.PackageTest.class,
+    ch.qos.logback.core.joran.conditional.PackageTest.class
+  })
 public class PackageTest {
 
 }
diff --git a/logback-site/src/site/pages/index.html b/logback-site/src/site/pages/index.html
index c675bc3..8d819d9 100644
--- a/logback-site/src/site/pages/index.html
+++ b/logback-site/src/site/pages/index.html
@@ -78,7 +78,7 @@
           <ul>            
             <li><a href="http://liftweb.net/">Lift</a></li>
             <li><a href="http://www.red5.org">Red5</a></li>
-            <li><a href="http://http://scalate.fusesource.org/">Scalate</a></li>
+            <li><a href="http://scalate.fusesource.org/">Scalate</a></li>
             <li><a href="http://sonar.codehaus.org/">Sonar</a></li>
             <li><a
             href="http://static.springsource.org/s2-dmserver/2.0.x/user-guide/htmlsingle/user-guide.html">SpringSource
diff --git a/logback-site/src/site/pages/manual/architecture.html b/logback-site/src/site/pages/manual/architecture.html
index f495620..7a5bf06 100644
--- a/logback-site/src/site/pages/manual/architecture.html
+++ b/logback-site/src/site/pages/manual/architecture.html
@@ -822,7 +822,7 @@ logger.debug("Value {} was inserted between {} and {}.", paramArray);</pre>
   </p>
 
   <a href="underTheHood.html">
-    <img src="images/manual/architecture/underTheHoodSequence2_small.gif" 
+    <img src="images/chapters/architecture/underTheHoodSequence2_small.gif" 
          alt="underTheHoodSequence2_small.gif"/>
   </a>
 
diff --git a/logback-site/src/site/pages/manual/filters.html b/logback-site/src/site/pages/manual/filters.html
index 01f0dea..d3b4b75 100644
--- a/logback-site/src/site/pages/manual/filters.html
+++ b/logback-site/src/site/pages/manual/filters.html
@@ -174,7 +174,7 @@ public class SampleFilter extends Filter&gt;ILoggingEvent> {
 		
 		<h3><a name="levelFilter" href="#levelFilter">LevelFilter</a></h3>
 		
-		<p><a href="../xref/ch/qos/logback/classic/LevelFilter.html">
+		<p><a href="../xref/ch/qos/logback/classic/filter/LevelFilter.html">
 		<code>LevelFilter</code></a> filters events based on exact level
 		matching. If the event's level is equal to the configured level,
 		the filter accepts or denies the event, depending on the
@@ -205,7 +205,7 @@ public class SampleFilter extends Filter&gt;ILoggingEvent> {
    <h3><a name="thresholdFilter" href="#thresholdFilter">ThresholdFilter</a></h3>
 
 		<p>The <a
-		href="../xref/ch/qos/logback/classic/ThresholdFilter.html">
+		href="../xref/ch/qos/logback/classic/filter/ThresholdFilter.html">
 		<code>ThresholdFilter</code></a> filters events below the
 		specified threshold. For events of level equal or above the
 		threshold, <code>ThresholdFilter</code> will respond NEUTRAL when
diff --git a/logback-site/src/site/pages/manual/jmxConfig.html b/logback-site/src/site/pages/manual/jmxConfig.html
index e56f951..13bddfa 100644
--- a/logback-site/src/site/pages/manual/jmxConfig.html
+++ b/logback-site/src/site/pages/manual/jmxConfig.html
@@ -40,7 +40,7 @@
 		invoke <code>jconsole</code> application on the commmand line and
 		then connect to your server's MBeanServer. If you are running an
 		older JVM, then you should read the section on <a
-		href="jmxEnablingServer">JMX enabling your server</a>.
+		href="#jmxEnablingServer">JMX enabling your server</a>.
     </p>
 
     <p><code>JMXConfigurator</code> is enabled by a single line in
@@ -398,7 +398,7 @@ CLASSPATH="$CLASSPATH":"$CATALINA_HOME"/bin/mx4j-tools.jar</p>
 		
 	
 	
-    <script src="templates/footer.js" type="text/javascript"></script>
+    <script src="../templates/footer.js" type="text/javascript"></script>
   </div>
 </body>
 </html>
diff --git a/logback-site/src/site/pages/manual/layouts.html b/logback-site/src/site/pages/manual/layouts.html
index 9288854..ab07ec8 100644
--- a/logback-site/src/site/pages/manual/layouts.html
+++ b/logback-site/src/site/pages/manual/layouts.html
@@ -1707,7 +1707,7 @@ public class MySampleConverter extends ClassicConverter {
     <p>will create the file <em>test.html</em> in the current
     folder. The contents of <em>test.html</em> should be similar to:
 		</p>
-		<img src="images/chapters/layouts/htmlLayout1.jpg" alt="HTML Layout Sample Image"/>
+		<img src="images/chapters/layouts/htmlLayout1.png" alt="HTML Layout Sample Image"/>
 
     <h3>Stack traces</h3>
 
diff --git a/logback-site/src/site/pages/manual/mdc.html b/logback-site/src/site/pages/manual/mdc.html
index b887d21..08ed8ec 100644
--- a/logback-site/src/site/pages/manual/mdc.html
+++ b/logback-site/src/site/pages/manual/mdc.html
@@ -147,8 +147,8 @@ public class SimpleMDC {
 
     <p>For the sake of conciseness, we have the omitted the code that
     configures logback with the configuration file <a
-    href="http://tinyurl.com/4gy542">simpleMDC.xml</a>. Here is the
-    relevant section from that file.
+    href="http://github.com/ceki/logback/blob/master/logback-examples/src/main/java/chapters/mdc/simpleMDC.xml">simpleMDC.xml</a>. Here
+    is the relevant section from that file.
     </p>
 
  <pre class="prettyprint source">&lt;appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> 
diff --git a/logback-site/src/site/pages/manual/onJoran.html b/logback-site/src/site/pages/manual/onJoran.html
index 84d3395..5eba56f 100644
--- a/logback-site/src/site/pages/manual/onJoran.html
+++ b/logback-site/src/site/pages/manual/onJoran.html
@@ -210,7 +210,7 @@ public abstract class Action {
    <p>As mentioned previously, the invocation of actions according to
    matching patterns is a central concept in Joran. A rule is an
    association of a pattern and an action. Rules are stored in a <a
-   href="../xref/ch/qos/logback/core/joran/spi/RuleStore.java">RuleStore</a>.   
+   href="../xref/ch/qos/logback/core/joran/spi/RuleStore.html">RuleStore</a>.   
    </p>
 
    <p>As mentioned above, Joran is built on top of the SAX API. As an
@@ -227,7 +227,7 @@ public abstract class Action {
    <p>When several rules match the current pattern, then exact
    matches override suffix matches, and suffix matches overide prefix
    matches. For exact details of implementation, please see the <a
-   href="../xref/ch/qos/logback/core/joran/spi/SimpleRuleStore.java">SimpleRuleStore</a>
+   href="../xref/ch/qos/logback/core/joran/spi/SimpleRuleStore.html">SimpleRuleStore</a>
    class.
    </p>
    
diff --git a/logback-site/src/site/pages/manual/underTheHood.html b/logback-site/src/site/pages/manual/underTheHood.html
index 063334a..d2746dd 100644
--- a/logback-site/src/site/pages/manual/underTheHood.html
+++ b/logback-site/src/site/pages/manual/underTheHood.html
@@ -9,7 +9,7 @@
   <body>
     <h2>Under The Hood Sequence Diagram</h2>
   
-    <img src="images/manual/architecture/underTheHoodSequence2.gif" alt="underTheHoodSequence2.gif"/>
+    <img src="images/chapters/architecture/underTheHoodSequence2.gif" alt="underTheHoodSequence2.gif"/>
 
   </body>
 </html>

-----------------------------------------------------------------------

Summary of changes:
 .../ch/qos/logback/core/joran/PackageTest.java     |   19 ++++++++++---------
 logback-site/src/site/pages/index.html             |    2 +-
 .../src/site/pages/manual/architecture.html        |    2 +-
 logback-site/src/site/pages/manual/filters.html    |    4 ++--
 logback-site/src/site/pages/manual/jmxConfig.html  |    4 ++--
 logback-site/src/site/pages/manual/layouts.html    |    2 +-
 logback-site/src/site/pages/manual/mdc.html        |    4 ++--
 logback-site/src/site/pages/manual/onJoran.html    |    4 ++--
 .../src/site/pages/manual/underTheHood.html        |    2 +-
 9 files changed, 22 insertions(+), 21 deletions(-)


hooks/post-receive
-- 
Logback: the generic, reliable, fast and flexible logging framework.


More information about the logback-dev mailing list