You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ts...@apache.org on 2014/02/22 17:40:47 UTC

svn commit: r898854 - in /websites/production/logging/content/log4cxx: log4cxx-0.11.0-SNAPSHOT/index.html test.txt

Author: tschoening
Date: Sat Feb 22 16:40:47 2014
New Revision: 898854

Log:
reverting the former test

Removed:
    websites/production/logging/content/log4cxx/test.txt
Modified:
    websites/production/logging/content/log4cxx/log4cxx-0.11.0-SNAPSHOT/index.html

Modified: websites/production/logging/content/log4cxx/log4cxx-0.11.0-SNAPSHOT/index.html
==============================================================================
--- websites/production/logging/content/log4cxx/log4cxx-0.11.0-SNAPSHOT/index.html (original)
+++ websites/production/logging/content/log4cxx/log4cxx-0.11.0-SNAPSHOT/index.html Sat Feb 22 16:40:47 2014
@@ -41,10 +41,10 @@
       </div>
     </div>
     <div id="breadcrumbs">
-
-
+            
+        
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2014-02-22</span>
+        <span id="publishDate">Last Published: 2012-07-07</span>
                   &nbsp;| <span id="projectVersion">Version: 0.11.0-SNAPSHOT</span>
                           |                           <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>
                 &gt;
@@ -52,8 +52,8 @@
                 &gt;
                               <a href="./" title="log4cxx">log4cxx</a>
                           </div>
-            <div class="xright">
-
+            <div class="xright">        
+        
       </div>
       <div class="clear">
         <hr/>
@@ -61,8 +61,8 @@
     </div>
     <div id="leftColumn">
       <div id="navcolumn">
-
-
+             
+        
                                 <h5>Get Apache log4cxx</h5>
                   <ul>
                   <li class="none">
@@ -143,8 +143,8 @@
                              <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
         <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
       </a>
-
-
+                   
+        
             </div>
     </div>
     <div id="bodyColumn">
@@ -164,18 +164,18 @@
  See the License for the specific language governing permissions and
  limitations under the License. -->
 
-
+  
 <div class="section"><h2>Short introduction to Apache log4cxx<a name="Short_introduction_to_Apache_log4cxx"></a></h2>
 
 <div class="section"><h2>Introduction<a name="Introduction"></a></h2>
 
-Apache log4cxx is a logging framework for C++ patterned after
+Apache log4cxx is a logging framework for C++ patterned after 
 <a class="externalLink" href="http://logging.apache.org/log4j">Apache log4j</a>.
 Apache log4cxx uses <a class="externalLink" href="http://apr.apache.org">Apache Portable Runtime</a>
 for most platform-specific code and should be usable on any
-platform supported by APR.  Apache log4cxx is licensed under the
+platform supported by APR.  Apache log4cxx is licensed under the 
 <a class="externalLink" href="http://www.apache.org/licenses/">Apache License</a>,
-an open source license certified by the
+an open source license certified by the 
 <a class="externalLink" href="http://www.opensource.org/">Open Source Initiative</a>.
 
 <p>Almost every large application includes its own logging or tracing
@@ -275,15 +275,15 @@ below.</p>
 //
 //   Use these macros instead of calling Logger methods directly.
 //   Macros will handle char or wchar_t pointers or strings
-//   or most right-hand side expressions of an
+//   or most right-hand side expressions of an 
 //   std::basic_string::operator&lt;&lt;.
-//
-#define LOG4CXX_TRACE(logger, expression) ...
-#define LOG4CXX_DEBUG(logger, expression) ...
-#define LOG4CXX_INFO(logger, expression) ...
-#define LOG4CXX_WARN(logger, expression) ...
-#define LOG4CXX_ERROR(logger, expression) ...
-#define LOG4CXX_FATAL(logger, expression) ...
+//   
+#define LOG4CXX_TRACE(logger, expression) ...   
+#define LOG4CXX_DEBUG(logger, expression) ...   
+#define LOG4CXX_INFO(logger, expression) ...   
+#define LOG4CXX_WARN(logger, expression) ...   
+#define LOG4CXX_ERROR(logger, expression) ...   
+#define LOG4CXX_FATAL(logger, expression) ...   
 </pre></div>
 </td>
 </tr>
@@ -329,7 +329,7 @@ resulting inherited levels according to 
     <tr class="a" align="left"><td>X </td>      <td>none</td>  <td>Proot</td></tr>
     <tr class="b" align="left"><td>X.Y </td>    <td>none</td>  <td>Proot</td></tr>
     <tr class="a" align="left"><td>X.Y.Z</td>   <td>none</td>  <td>Proot</td></tr>
-
+    
 </table>
 
 <p>In example 1 above, only the root logger is assigned a
@@ -346,7 +346,7 @@ other loggers <tt>X</tt>, <tt>X.Y</tt> a
     <tr class="a" align="left"><td>X </td>      <td>Px</td>    <td>Px</td></tr>
     <tr class="b" align="left"><td>X.Y </td>    <td>Pxy</td>   <td>Pxy</td></tr>
     <tr class="a" align="left"><td>X.Y.Z</td>   <td>Pxyz</td>  <td>Pxyz</td></tr>
-
+    
   </table>
 
 <p>In example 2, all loggers have an assigned level value. There
@@ -359,7 +359,7 @@ is no need for level inheritence.</p>
     <tr class="a" align="left"><td>X </td>      <td>Px</td>    <td>Px</td></tr>
     <tr class="b" align="left"><td>X.Y </td>    <td>none</td>  <td>Px</td></tr>
     <tr class="a" align="left"><td>X.Y.Z</td>   <td>Pxyz</td>  <td>Pxyz</td></tr>
-
+    
 </table>
 
 <p>In example 3, the loggers <tt>root</tt>, <tt>X</tt> and
@@ -375,7 +375,7 @@ is no need for level inheritence.</p>
     <tr class="a" align="left"><td>X </td>      <td>Px</td>    <td>Px</td></tr>
     <tr class="b" align="left"><td>X.Y </td>    <td>none</td>  <td>Px</td></tr>
     <tr class="a" align="left"><td>X.Y.Z</td>   <td>none</td>  <td>Px</td></tr>
-
+    
 </table>
 
 <p>In example 4, the loggers <tt>root</tt> and <tt>X</tt>
@@ -398,7 +398,7 @@ and use of the insertion operator (&lt;&
    LOG4CXX_DEBUG(logger, L&quot;Iteration &quot; &lt;&lt; i)
    LOG4CXX_DEBUG(logger, &quot;e^10 = &quot; &lt;&lt; std::scientific &lt;&lt; exp(10.0))
    //
-   //  Use a wchar_t first operand to force use of wchar_t based stream.
+   //  Use a wchar_t first operand to force use of wchar_t based stream.    
    //
    LOG4CXX_WARN(logger, L&quot;&quot; &lt;&lt; i &lt;&lt; L&quot; is the number of the iteration.&quot;)
 </pre></div></td></tr></table>
@@ -690,7 +690,7 @@ namespace com {
    namespace foo {
       class Bar {
           static log4cxx::LoggerPtr logger;
-
+          
       public:
           void doIt();
        }
@@ -898,22 +898,22 @@ automatically configure log4cxx.</p>
 
 <ol style="list-style-type: decimal">
 
-  <li><p>Set the configurationOptionStr string variable to the value of the
-  <b>LOG4CXX_CONFIGURATION</b> environment variable if set, otherwise
+  <li><p>Set the configurationOptionStr string variable to the value of the 
+  <b>LOG4CXX_CONFIGURATION</b> environment variable if set, otherwise 
   the value of the <b>log4j.configuration</b> or <b>LOG4CXX_CONFIGURATION</b>
-  environment variable if set,
-  otherwise the first of the following file names which exist in the
-  current working directory, &quot;log4cxx.xml&quot;, &quot;log4cxx.properties&quot;,
-  &quot;log4j.xml&quot; and &quot;log4j.properties&quot;.
-  If configurationOptionStr has not been set, then disable logging.</p></li>
+  environment variable if set, 
+  otherwise the first of the following file names which exist in the 
+  current working directory, &quot;log4cxx.xml&quot;, &quot;log4cxx.properties&quot;, 
+  &quot;log4j.xml&quot; and &quot;log4j.properties&quot;. 
+  If configurationOptionStr has not been set, then disable logging.</p></li> 
 
-  <li><p>Unless a custom configurator is specified using the
+  <li><p>Unless a custom configurator is specified using the 
   <b>LOG4CXX_CONFIGURATOR_CLASS</b> or <b>log4j.configuratorClass</b>
   environment variable, the PropertyConfigurator will be used to configure
-  log4cxx unless the file name ends with the &quot;.xml&quot; extension,
-  in which case the DOMConfigurator will be used.
-  If a custom configurator is specified, the environment variable
-  should contain a fully qualified class name of a class that
+  log4cxx unless the file name ends with the &quot;.xml&quot; extension, 
+  in which case the DOMConfigurator will be used. 
+  If a custom configurator is specified, the environment variable 
+  should contain a fully qualified class name of a class that 
   implements the Configurator interface.</p>
   </li>
 
@@ -1073,8 +1073,8 @@ performance cost.</p>
     <div id="footer">
       <div class="xleft">Copyright &#169;                    2012
                         <a href="http://www.apache.org">Apache Software Foundation</a>.
-
-
+                  
+        
        Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache Software License, Version 2.0</a>.</div>
       <div class="xleft">Apache log4cxx, Apache, the Apache feather logo,
    the Apache Logging Services project logo and the Built by Maven logo are trademarks of The Apache Software Foundation.</div>