[slf4j-dev] [GIT] SLF4J: Simple Logging Facade for Java branch master updated. v_1.6.4-5-gc40b8ac

Gitbot git-noreply at pixie.qos.ch
Fri Dec 30 19:08:21 CET 2011


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 "SLF4J: Simple Logging Facade for Java".

The branch, master has been updated
       via  c40b8ac3eaae7730c3e4cd07e2550415f7881a2f (commit)
      from  fa9d46dca9b8d476d137d276315fa557d818992b (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=slf4j.git;a=commit;h=c40b8ac3eaae7730c3e4cd07e2550415f7881a2f
http://github.com/ceki/slf4j/commit/c40b8ac3eaae7730c3e4cd07e2550415f7881a2f

commit c40b8ac3eaae7730c3e4cd07e2550415f7881a2f
Author: Ceki Gulcu <ceki at qos.ch>
Date:   Fri Dec 30 19:08:14 2011 +0100

    edits, css changes

diff --git a/slf4j-site/src/site/pages/css/site.css b/slf4j-site/src/site/pages/css/site.css
index f134534..c37215c 100644
--- a/slf4j-site/src/site/pages/css/site.css
+++ b/slf4j-site/src/site/pages/css/site.css
@@ -42,7 +42,7 @@ a {
 .source { 
   border-top: 1px solid #DDDDDD;
   border-bottom: 1px solid #DDDDDD;
-  background:#eee;
+  background:#f5f5f5;
   font-family: Courier, "MS Courier New", Prestige, Everson Monocourrier, monospace;
   padding-bottom: 0.5ex;
   padding-top: 0.5ex;
@@ -52,11 +52,15 @@ a {
   margin-top: 0.5ex; 
   margin-bottom: 0.5ex; 
   white-space: pre;
+
+  -webkit-border-radius: 3px;
+  -moz-border-radius: 3px;
+  border-radius: 3px;
 }
 
 pre { 
  background-color:transparent;
- font-family: Courier, Monaco, Monospace;
+ font-family: Monaco, Andale Mono, Courier New, monospace;
 }
 
 .alignright {
@@ -305,5 +309,25 @@ table.bodyTable tr.alt {
 	background-color: #eee;
 }
 
+.striped tr:nth-child(odd) td {
+  background-color: #f9f9f9;
+}
+.striped td {
+  background-color: #f0f0f0;
+}
+
 /* EOF =============== bodyTable =============== */
 
+.label {
+  padding: 1px 3px 2px;
+  font-size: 9.75px;
+  font-weight: bold;
+  color: #ffffff;
+  text-transform: uppercase;
+  white-space: nowrap;
+  background-color: #bfbfbf;
+  -webkit-border-radius: 3px;
+  -moz-border-radius: 3px;
+  border-radius: 3px;
+}
+
diff --git a/slf4j-site/src/site/pages/manual.html b/slf4j-site/src/site/pages/manual.html
index c26b47c..4bd52d1 100644
--- a/slf4j-site/src/site/pages/manual.html
+++ b/slf4j-site/src/site/pages/manual.html
@@ -22,13 +22,15 @@
     <h2>SLF4J user manual</h2>
     
     <p>The Simple Logging Facade for Java or (SLF4J) serves as a
-    simple facade or abstraction for various logging frameworks, e.g.
-    java.util.logging, log4j and logback, allowing the end-user to
-    plug in the desired logging framework at <em>deployment</em> time.
-    Note that SLF4J-enabling your library/application implies the
-    addition of only a single mandatory dependency, namely
-    <em>slf4j-api-${project.version}.jar</em>.  If no binding is found
-    on the class path, then SLF4J will default to a no-operation
+    simple facade or abstraction for various logging frameworks, such
+    as java.util.logging, log4j and logback. SLF4J allows the end-user
+    to plug in the desired logging framework at <em>deployment</em>
+    time.  Note that SLF4J-enabling your library/application implies
+    the addition of only a single mandatory dependency, namely
+    <em>slf4j-api-${project.version}.jar</em>.</p>
+
+    <p><span class="label">New</span> If no binding is found on the
+    class path, then SLF4J will default to a no-operation
     implementation.
     </p>
       
@@ -193,14 +195,10 @@ SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further detail
       the general idea.
       </p>
 
-      <p> </p>
-
       <p><a href="images/concrete-bindings.png">
-      <img border="1" src="images/concrete-bindings.png" alt="click to enlarge" width="500"/>
+      <img border="1" src="images/concrete-bindings.png" alt="click to enlarge" width="800"/>
       </a></p>
 
-      <p> </p>
-
       <p>The SLF4J interfaces and their various adapters are extremely
       simple. Most developers familiar with the Java language should
       be able to read and fully understand the code in less than one
@@ -294,13 +292,13 @@ SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further detail
       summary</a>
       </h3>
       
-      <table  class="bodyTable" cellspacing="4" cellpadding="4">
+      <table  class="bodyTable striped" cellspacing="4" cellpadding="4">
         <tr>
           <th align="left">Advantage</th>
           <th align="left">Description</th>
         </tr>
         
-        <tr  class="a">
+        <tr>
 
           <td>Select your logging framework at deployment time</td>
 
@@ -311,7 +309,7 @@ SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further detail
         </tr>
 
 
-        <tr class="alt">
+        <tr>
           <td>Fail-fast operation</td>
 
           <td>Due to the way that classes are loaded by the JVM, the
@@ -322,7 +320,7 @@ SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further detail
         </tr>
 
        
-        <tr class="a">
+        <tr>
           <td>Bindings for popular logging frameworks
           </td>
           
@@ -333,7 +331,7 @@ SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further detail
           
         </tr>
         
-        <tr class="alt">
+        <tr>
           <td>Bridging legacy logging APIs</td>
           
           <td>
@@ -350,7 +348,7 @@ SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further detail
           </td>
         </tr>
         
-        <tr class="a">
+        <tr>
           <td>Migrate your source code</td>
           <td>The <a href="migrator.html">slf4j-migrator</a> utility
           can help you migrate your source to use SLF4J.
@@ -359,7 +357,7 @@ SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further detail
         
         
         
-        <tr class="alt">
+        <tr>
           <td>Support for parameterized log messages</td>
           
           <td>All SLF4J bindings support parameterized log messages
diff --git a/slf4j-site/src/site/resources/images/concrete-bindings.png b/slf4j-site/src/site/resources/images/concrete-bindings.png
index 118216c..8af5e5b 100644
Binary files a/slf4j-site/src/site/resources/images/concrete-bindings.png and b/slf4j-site/src/site/resources/images/concrete-bindings.png differ
diff --git a/slf4j-site/src/site/resources/images/core-bindings.png b/slf4j-site/src/site/resources/images/core-bindings.png
deleted file mode 100644
index 0fbb26a..0000000
Binary files a/slf4j-site/src/site/resources/images/core-bindings.png and /dev/null differ
diff --git a/slf4j-site/src/site/resources/images/core-bindings1.png b/slf4j-site/src/site/resources/images/core-bindings1.png
deleted file mode 100644
index 0fbb26a..0000000
Binary files a/slf4j-site/src/site/resources/images/core-bindings1.png and /dev/null differ
diff --git a/slf4j-site/src/site/resources/images/core-bindings2.png b/slf4j-site/src/site/resources/images/core-bindings2.png
deleted file mode 100644
index 0fbb26a..0000000
Binary files a/slf4j-site/src/site/resources/images/core-bindings2.png and /dev/null differ
diff --git a/slf4j-site/src/site/resources/images/core-bindings3.png b/slf4j-site/src/site/resources/images/core-bindings3.png
deleted file mode 100644
index 0fbb26a..0000000
Binary files a/slf4j-site/src/site/resources/images/core-bindings3.png and /dev/null differ

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

Summary of changes:
 slf4j-site/src/site/pages/css/site.css             |   28 ++++++++++++++-
 slf4j-site/src/site/pages/manual.html              |   36 +++++++++----------
 .../site/resources/images/concrete-bindings.png    |  Bin 125870 -> 77852 bytes
 .../src/site/resources/images/core-bindings.png    |  Bin 16006 -> 0 bytes
 .../src/site/resources/images/core-bindings1.png   |  Bin 16006 -> 0 bytes
 .../src/site/resources/images/core-bindings2.png   |  Bin 16006 -> 0 bytes
 .../src/site/resources/images/core-bindings3.png   |  Bin 16006 -> 0 bytes
 7 files changed, 43 insertions(+), 21 deletions(-)
 delete mode 100644 slf4j-site/src/site/resources/images/core-bindings.png
 delete mode 100644 slf4j-site/src/site/resources/images/core-bindings1.png
 delete mode 100644 slf4j-site/src/site/resources/images/core-bindings2.png
 delete mode 100644 slf4j-site/src/site/resources/images/core-bindings3.png


hooks/post-receive
-- 
SLF4J: Simple Logging Facade for Java


More information about the slf4j-dev mailing list