[slf4j-dev] svn commit: r42 - in nlog4j/trunk: . docs docs/css docs/images src/xdocs/stylesheets

ceki at slf4j.org ceki at slf4j.org
Sat May 14 21:42:08 CEST 2005


Author: ceki
Date: Sat May 14 21:42:05 2005
New Revision: 42

Removed:
   nlog4j/trunk/BRANCHES
   nlog4j/trunk/src/xdocs/stylesheets/lf5.xml
Modified:
   nlog4j/trunk/build.xml
   nlog4j/trunk/docs/codes.html
   nlog4j/trunk/docs/contributors.html
   nlog4j/trunk/docs/css/site.css
   nlog4j/trunk/docs/documentation.html
   nlog4j/trunk/docs/download.html
   nlog4j/trunk/docs/faq.html
   nlog4j/trunk/docs/history.html
   nlog4j/trunk/docs/images/nlog4j-logo.jpg
   nlog4j/trunk/src/xdocs/stylesheets/project.xml
Log:

Doc updates



Modified: nlog4j/trunk/build.xml
==============================================================================
--- nlog4j/trunk/build.xml	(original)
+++ nlog4j/trunk/build.xml	Sat May 14 21:42:05 2005
@@ -1,13 +1,5 @@
-
-<!-- This file is an ANT build script. ANT is a Java based build tool. -->
-<!-- It is availale from http://jakarta.apache.org/ant/                -->
-
-
-<!-- ================================================================= -->
-<!-- NOTE: all directories are relative to logging-log4j/              -->
-<!-- the parent of build/                                              -->
 <!-- ================================================================= -->
-<project name="log4j" default="usage" basedir="." >
+<project name="nlog4j" default="usage" basedir="." >
 
   
   <!-- The build.properties file defines the parth to local jar files -->
@@ -17,7 +9,7 @@
   <!-- prefixed with "env". -->
   <property environment="env"/>
 
-  <property name="version" value="1.2.10"/>
+  <property name="version" value="1.2.11"/>
 
   <!-- The base directory relative to which most targets are built -->
   <property name="base" value="."/>
@@ -35,11 +27,8 @@
   <!-- Destination for compiled files -->
   <property name="javac.dest" value="dist/classes"/>
 
-  <!-- Destination for generated jar files -->
-  <property name="jar.dest" value="dist/lib"/>
-
   <!-- The jar file that the jar task will generate -->
-  <property name="jar.filename" value="log4j-${version}.jar"/>
+  <property name="nlog4j.jar" value="nlog4j-${version}.jar"/>
 
   <!-- Destination for documentation files -->
   <property name="docs.dest" value="./docs"/>
@@ -50,25 +39,18 @@
   <!-- Destination for javadoc generated files -->
   <property name="javadoc.dest" value="docs/api"/>
 
-  <!-- Icons source directory. -->
-  <property name="icons.source" value="icons"/>
-
   <!-- The stem where most log4j source code is located. -->
   <property name="stem" value="org/apache/log4j"/>
 
   <!-- Some targets needs a more precise stem. -->
   <property name="BSTEM" value="${java.source.dir}/${stem}"/>
 
-  <!-- Original manifest.mf file before filtering. -->
-  <property name="manifest.src" value="build/manifest.mf"/>
-
   <!-- Directory where release images go. -->
   <property name="dist.images"  value="dist/images"/>
 
   <!-- Directory for temporary files. -->
   <property name="dist.tmp" value="dist/tmp"/>
-
-
+   
   <!-- Construct compile classpath -->
   <path id="compile.classpath">
     <pathelement location="${build.home}/classes"/>
@@ -102,7 +84,7 @@
 
     javadoc - build project javadoc files
 
-    jar     - build log4j-core and log4j jar files
+    nlog4j.jar - build nlog4j.jar file
 
     dist    - will create a complete distribution in dist/
               Setting the env variable NO_JAVADOC will build the distribution
@@ -212,13 +194,6 @@
 	    debug="on">
       <classpath refid="compile.classpath"/>
     </javac>
-    
-    <copy todir="${javac.dest}">
-      <fileset dir="${java.source.dir}"
-	includes="${stem}/lf5/**/*.properties"/>    
-      <fileset dir="${java.source.dir}"
-	includes="${stem}/lf5/viewer/images/*"/>
-   </copy>
 
   </target>
 
@@ -293,60 +268,18 @@
     <delete dir="${javac.dest}/" />
   </target>
 
-  <!-- ================================================================= -->
-  <!-- Runs checkstyle. Available from http://checkstyle.sf.net          -->
-  <!-- ================================================================= -->
-  <target name="checkstyle" depends="init">
-    <taskdef resource="checkstyletask.properties"
-             classpath="${checkstyle.jar}"/>
-
-    <!-- by default checkstyle supports the Sun coding standard. -->
-    <checkstyle lcurlyMethod="nlow"
-                lcurlyOther="nlow"
-                lcurlyType="nlow"
-                maxMethodLen="500"
-                maxConstructorLen="500">
-      <fileset dir="src/java/org/apache/log4j/chainsaw" includes="**/*.java"/>
-    </checkstyle>
-  </target>
-
-  <!-- ================================================================= -->
-  <!-- Runs Chainsaw                                                     -->
-  <!-- ================================================================= -->
-
-  <target name="chainsaw" depends="build">
-    <!-- Need to fork to avoid problems -->
-    <java classname="org.apache.log4j.chainsaw.Main" fork="yes"
-          classpath="${javac.dest};${ant.home}/lib/crimson.jar">
-    </java>
-  </target>
-
-  <!-- ================================================================= -->
-  <!-- Remove the temporary manifest file, actual work is done in the    -->
-  <!-- dependencies.                                                     -->
-  <!-- ================================================================= -->
-  <target name="jar" depends="log4j.jar">
-     <delete file="${jar.dest}/manifest.mf"/>
-  </target>
-
-  <target name="prejar" depends="build">
-    <mkdir dir="${jar.dest}"/>
-    <filter token="version" value="${version}" />
-    <copy file="${manifest.src}" tofile="${jar.dest}/manifest.mf"
-          filtering="true"/>
-  </target>
 
  <!-- ================================================================= -->
  <!-- Create log4j.jar, excluding tests and other odds and ends.        -->
  <!-- ================================================================= -->
-  <target name="log4j.jar" depends="prejar">
-    <delete>
-      <fileset dir="${jar.dest}">
-	<include name="*.jar"/>
+  <target name="nlog4j.jar" depends="build">
+    <delete file="${nlog4j.jar}">
+      <fileset dir=".">
+	<include name="nglog*.jar"/>
       </fileset>
     </delete>
 
-    <jar jarfile="${jar.dest}/${jar.filename}" basedir="${javac.dest}"
+    <jar jarfile="${nlog4j.jar}" basedir="${javac.dest}"
       includes="org/slf4j/**/*.class,
                 ${stem}/*.class, 
                 ${stem}/xml/log4j.dtd,
@@ -356,20 +289,21 @@
 		${stem}/net/*.class,
 		${stem}/jdbc/*.class,
 		${stem}/varia/*.class,
-		${stem}/chainsaw/*.class,
-		${stem}/lf5/**/*.class,
-		${stem}/lf5/**/*.properties,
-		${stem}/lf5/**/*.gif,
-		${stem}/nt/*.class,
 		${stem}/xml/*.class,
 		${stem}/jmx/*.class,
 		${stem}/or/*.class,
 		${stem}/or/sax/*.class,
                 ${stem}/or/jms/*.class,
 		${stem}/config/*.class"
-      excludes="**/UnitTest**"
-      manifest="${jar.dest}/manifest.mf"
-    />
+      excludes="**/UnitTest**">
+      <manifest>
+        <section name="org/apache/log4j/">
+          <attribute name="Implementation-Title" value="nlog4j"/>
+          <attribute name="Implementation-Version" value="${version}"/>
+          <attribute name="Implementation-Vendor" value="SLF4J.ORG"/>
+        </section>
+      </manifest>
+    </jar>
   </target>
 
 
@@ -386,9 +320,7 @@
 			 org.apache.log4j.config,
                          org.apache.log4j.helpers,
 		         org.apache.log4j.jmx,
-		         org.apache.log4j.lf5,
 		         org.apache.log4j.net,
-			 org.apache.log4j.nt,
 		         org.apache.log4j.or,
 		         org.apache.log4j.jdbc,
 		         org.apache.log4j.or.sax,
@@ -396,7 +328,6 @@
 	                 org.apache.log4j.performance,
 		         org.apache.log4j.spi,
 			 org.apache.log4j.varia,
-		         org.apache.log4j.chainsaw,
 		         org.apache.log4j.xml,
 		         org.apache.log4j.xml.examples"
 	   version="true"
@@ -404,9 +335,9 @@
 	   author="true"
 	   use="true"
 	   overview="${docs.dest}/overview.html"
-	   doctitle="log4j version ${version}&lt;br&gt;API Specification"
-	   windowtitle="Log4j Version ${version}"
-           header="&lt;b&gt;Log4j ${version}&lt;/b&gt;"
+	   doctitle="NLOG4J version ${version}&lt;br&gt;API Specification"
+	   windowtitle="NLOG4J Version ${version}"
+           header="&lt;b&gt;NLOG4J ${version}&lt;/b&gt;"
 	   bottom="Copyright 2000-2005 Apache Software Foundation.">
 
       <link href="http://java.sun.com/products/jdk/1.3/docs/api/"/>
@@ -459,7 +390,7 @@
  <!-- ================================================================= -->
  <!-- Build a complete distribution. Results go to ${dist.images}       -->
  <!-- ================================================================= -->
-  <target name="dist" depends="init, clean, javadoc, jar, site">
+  <target name="dist" depends="init, clean, javadoc, nlog4j.jar, site">
 
     <delete verbose="true">
       <fileset dir=".">
@@ -489,7 +420,6 @@
 	   <include name="${BSTEM}/nt/vc50.idb"/>
 	   <include name="${BSTEM}/net/test/loop.log"/>
 	   <include name="${BSTEM}/net/test/loop.log.1"/>
-	   <include name="${jar.dest}/manifest.mf"/>
 	   <include name="${javac.dest}/*.class"/>
         </patternset>
      </fileset>

Modified: nlog4j/trunk/docs/codes.html
==============================================================================
--- nlog4j/trunk/docs/codes.html	(original)
+++ nlog4j/trunk/docs/codes.html	Sat May 14 21:42:05 2005
@@ -24,7 +24,7 @@
             <link href="./css/site.css" rel="stylesheet" type="text/css"/>
                                    
 
-            <title>Log4j project - Log4j error codes</title>
+            <title>NLOG4j - Log4j error codes</title>
         </head>
 
         <body bgcolor="#ffffff" text="#000000" link="#525D76">        
@@ -32,13 +32,13 @@
                      <table class="banner" border="0">
      <tr>
        <td valign="top">
-         <a href="http://logging.apache.org/">
-           <img src="http://logging.apache.org/images/ls-logo.jpg" border="0"/>
+         <a href="http://slf4j.org/">
+           <img src="images/slf4j-logo.jpg" border="0"/>
          </a>
        </td>
        <td align="right">
-                              	       <a href="http://logging.apache.org/log4j/docs/">
-                 <img src="./images/logo.jpg" alt="The log4j project" border="0"/>
+                              	       <a href="http://www.slf4j.org/nlog4j/">
+                 <img src="./images/nlog4j-logo.jpg" alt="NLOG4J project" border="0"/>
       	       </a>
                                </td>
      </tr>
@@ -214,7 +214,7 @@
              
                 <!-- FOOTER -->
               <div align="center"><font color="#525D76" size="-1"><em>
-                 Copyright &#169; 1999-2005, Apache Software Foundation
+                 Copyright &#169; 2005, slf4j.org 
                </em></font></div>
 
            <!-- END main table --> 
@@ -222,7 +222,7 @@
            <!-- LEFT SIDE NAVIGATION -->
              <!-- ============================================================ -->
   <div class="leftcol">
-               <div class="menu_header">Log4j Project</div>
+               <div class="menu_header">NLOG4J Project</div>
               	 <div class="menu_item">        <a href="./index.html">Introduction</a>
   </div>
               	 <div class="menu_item">        <a href="./download.html">Download</a>
@@ -233,8 +233,6 @@
   </div>
               	 <div class="menu_item">        <a href="./contributors.html">Contributors</a>
   </div>
-              	 <div class="menu_item">        <a href="./chainsaw.html">Chainsaw</a>
-  </div>
               	 <div class="menu_item">        <a href="./history.html">History</a>
   </div>
                   <div class="menu_header">Support</div>
@@ -249,11 +247,6 @@
                   <div class="menu_header">Related Projects</div>
               	 <div class="menu_item">        <a href="http://www.slf4j.org">SLF4J</a>
   </div>
-                  <div class="menu_header">Translations</div>
-              	 <div class="menu_item">        <a href="http://jakarta.apache-korea.org/log4j/index.html">Korean</a>
-  </div>
-              	 <div class="menu_item">        <a href="http://www.ingrid.org/jajakarta/log4j/">Japanese</a>
-  </div>
              </div> 
    
 

Modified: nlog4j/trunk/docs/contributors.html
==============================================================================
--- nlog4j/trunk/docs/contributors.html	(original)
+++ nlog4j/trunk/docs/contributors.html	Sat May 14 21:42:05 2005
@@ -24,7 +24,7 @@
             <link href="./css/site.css" rel="stylesheet" type="text/css"/>
                                    
 
-            <title>Log4j project - Log4j Contributors</title>
+            <title>NLOG4j - Log4j Contributors</title>
         </head>
 
         <body bgcolor="#ffffff" text="#000000" link="#525D76">        
@@ -32,13 +32,13 @@
                      <table class="banner" border="0">
      <tr>
        <td valign="top">
-         <a href="http://logging.apache.org/">
-           <img src="http://logging.apache.org/images/ls-logo.jpg" border="0"/>
+         <a href="http://slf4j.org/">
+           <img src="images/slf4j-logo.jpg" border="0"/>
          </a>
        </td>
        <td align="right">
-                              	       <a href="http://logging.apache.org/log4j/docs/">
-                 <img src="./images/logo.jpg" alt="The log4j project" border="0"/>
+                              	       <a href="http://www.slf4j.org/nlog4j/">
+                 <img src="./images/nlog4j-logo.jpg" alt="NLOG4J project" border="0"/>
       	       </a>
                                </td>
      </tr>
@@ -206,7 +206,7 @@
              
                 <!-- FOOTER -->
               <div align="center"><font color="#525D76" size="-1"><em>
-                 Copyright &#169; 1999-2005, Apache Software Foundation
+                 Copyright &#169; 2005, slf4j.org 
                </em></font></div>
 
            <!-- END main table --> 
@@ -214,7 +214,7 @@
            <!-- LEFT SIDE NAVIGATION -->
              <!-- ============================================================ -->
   <div class="leftcol">
-               <div class="menu_header">Log4j Project</div>
+               <div class="menu_header">NLOG4J Project</div>
               	 <div class="menu_item">        <a href="./index.html">Introduction</a>
   </div>
               	 <div class="menu_item">        <a href="./download.html">Download</a>
@@ -225,8 +225,6 @@
   </div>
               	 <div class="menu_item">        <a href="./contributors.html">Contributors</a>
   </div>
-              	 <div class="menu_item">        <a href="./chainsaw.html">Chainsaw</a>
-  </div>
               	 <div class="menu_item">        <a href="./history.html">History</a>
   </div>
                   <div class="menu_header">Support</div>
@@ -241,11 +239,6 @@
                   <div class="menu_header">Related Projects</div>
               	 <div class="menu_item">        <a href="http://www.slf4j.org">SLF4J</a>
   </div>
-                  <div class="menu_header">Translations</div>
-              	 <div class="menu_item">        <a href="http://jakarta.apache-korea.org/log4j/index.html">Korean</a>
-  </div>
-              	 <div class="menu_item">        <a href="http://www.ingrid.org/jajakarta/log4j/">Japanese</a>
-  </div>
              </div> 
    
 

Modified: nlog4j/trunk/docs/css/site.css
==============================================================================
--- nlog4j/trunk/docs/css/site.css	(original)
+++ nlog4j/trunk/docs/css/site.css	Sat May 14 21:42:05 2005
@@ -13,7 +13,7 @@
 }
 
 .centercol {
-  margin-top: 120px;
+  margin-top: 140px;
   margin-left: 210px;
   margin-right:210px;
   max-width: 800px;
@@ -22,7 +22,7 @@
 .leftcol {
   position: absolute;
   left:  10px;
-  top:   130px; 
+  top:   160px; 
   width: 190px;
 }
 
@@ -59,7 +59,7 @@
   border-left:  1px solid #AAAAAA;
 }
 
-.source {
+.source, .cmd {
   border-top: 1px solid #DDDDDD;
   border-bottom: 1px solid #DDDDDD;
   background:#eee;

Modified: nlog4j/trunk/docs/documentation.html
==============================================================================
--- nlog4j/trunk/docs/documentation.html	(original)
+++ nlog4j/trunk/docs/documentation.html	Sat May 14 21:42:05 2005
@@ -26,7 +26,7 @@
             <link href="./css/site.css" rel="stylesheet" type="text/css"/>
                                    
 
-            <title>Log4j project - Documentation</title>
+            <title>NLOG4j - Documentation</title>
         </head>
 
         <body bgcolor="#ffffff" text="#000000" link="#525D76">        
@@ -34,13 +34,13 @@
                      <table class="banner" border="0">
      <tr>
        <td valign="top">
-         <a href="http://logging.apache.org/">
-           <img src="http://logging.apache.org/images/ls-logo.jpg" border="0"/>
+         <a href="http://slf4j.org/">
+           <img src="images/slf4j-logo.jpg" border="0"/>
          </a>
        </td>
        <td align="right">
-                              	       <a href="http://logging.apache.org/log4j/docs/">
-                 <img src="./images/logo.jpg" alt="The log4j project" border="0"/>
+                              	       <a href="http://www.slf4j.org/nlog4j/">
+                 <img src="./images/nlog4j-logo.jpg" alt="NLOG4J project" border="0"/>
       	       </a>
                                </td>
      </tr>
@@ -215,7 +215,7 @@
              
                 <!-- FOOTER -->
               <div align="center"><font color="#525D76" size="-1"><em>
-                 Copyright &#169; 1999-2005, Apache Software Foundation
+                 Copyright &#169; 2005, slf4j.org 
                </em></font></div>
 
            <!-- END main table --> 
@@ -223,7 +223,7 @@
            <!-- LEFT SIDE NAVIGATION -->
              <!-- ============================================================ -->
   <div class="leftcol">
-               <div class="menu_header">Log4j Project</div>
+               <div class="menu_header">NLOG4J Project</div>
               	 <div class="menu_item">        <a href="./index.html">Introduction</a>
   </div>
               	 <div class="menu_item">        <a href="./download.html">Download</a>
@@ -234,8 +234,6 @@
   </div>
               	 <div class="menu_item">        <a href="./contributors.html">Contributors</a>
   </div>
-              	 <div class="menu_item">        <a href="./chainsaw.html">Chainsaw</a>
-  </div>
               	 <div class="menu_item">        <a href="./history.html">History</a>
   </div>
                   <div class="menu_header">Support</div>
@@ -250,11 +248,6 @@
                   <div class="menu_header">Related Projects</div>
               	 <div class="menu_item">        <a href="http://www.slf4j.org">SLF4J</a>
   </div>
-                  <div class="menu_header">Translations</div>
-              	 <div class="menu_item">        <a href="http://jakarta.apache-korea.org/log4j/index.html">Korean</a>
-  </div>
-              	 <div class="menu_item">        <a href="http://www.ingrid.org/jajakarta/log4j/">Japanese</a>
-  </div>
              </div> 
    
 

Modified: nlog4j/trunk/docs/download.html
==============================================================================
--- nlog4j/trunk/docs/download.html	(original)
+++ nlog4j/trunk/docs/download.html	Sat May 14 21:42:05 2005
@@ -24,7 +24,7 @@
             <link href="./css/site.css" rel="stylesheet" type="text/css"/>
                                    
 
-            <title>Log4j project - Downloading log4j</title>
+            <title>NLOG4j - Downloading log4j</title>
         </head>
 
         <body bgcolor="#ffffff" text="#000000" link="#525D76">        
@@ -32,13 +32,13 @@
                      <table class="banner" border="0">
      <tr>
        <td valign="top">
-         <a href="http://logging.apache.org/">
-           <img src="http://logging.apache.org/images/ls-logo.jpg" border="0"/>
+         <a href="http://slf4j.org/">
+           <img src="images/slf4j-logo.jpg" border="0"/>
          </a>
        </td>
        <td align="right">
-                              	       <a href="http://logging.apache.org/log4j/docs/">
-                 <img src="./images/logo.jpg" alt="The log4j project" border="0"/>
+                              	       <a href="http://www.slf4j.org/nlog4j/">
+                 <img src="./images/nlog4j-logo.jpg" alt="NLOG4J project" border="0"/>
       	       </a>
                                </td>
      </tr>
@@ -366,7 +366,7 @@
              
                 <!-- FOOTER -->
               <div align="center"><font color="#525D76" size="-1"><em>
-                 Copyright &#169; 1999-2005, Apache Software Foundation
+                 Copyright &#169; 2005, slf4j.org 
                </em></font></div>
 
            <!-- END main table --> 
@@ -374,7 +374,7 @@
            <!-- LEFT SIDE NAVIGATION -->
              <!-- ============================================================ -->
   <div class="leftcol">
-               <div class="menu_header">Log4j Project</div>
+               <div class="menu_header">NLOG4J Project</div>
               	 <div class="menu_item">        <a href="./index.html">Introduction</a>
   </div>
               	 <div class="menu_item">        <a href="./download.html">Download</a>
@@ -385,8 +385,6 @@
   </div>
               	 <div class="menu_item">        <a href="./contributors.html">Contributors</a>
   </div>
-              	 <div class="menu_item">        <a href="./chainsaw.html">Chainsaw</a>
-  </div>
               	 <div class="menu_item">        <a href="./history.html">History</a>
   </div>
                   <div class="menu_header">Support</div>
@@ -401,11 +399,6 @@
                   <div class="menu_header">Related Projects</div>
               	 <div class="menu_item">        <a href="http://www.slf4j.org">SLF4J</a>
   </div>
-                  <div class="menu_header">Translations</div>
-              	 <div class="menu_item">        <a href="http://jakarta.apache-korea.org/log4j/index.html">Korean</a>
-  </div>
-              	 <div class="menu_item">        <a href="http://www.ingrid.org/jajakarta/log4j/">Japanese</a>
-  </div>
              </div> 
    
 

Modified: nlog4j/trunk/docs/faq.html
==============================================================================
--- nlog4j/trunk/docs/faq.html	(original)
+++ nlog4j/trunk/docs/faq.html	Sat May 14 21:42:05 2005
@@ -24,7 +24,7 @@
             <link href="./css/site.css" rel="stylesheet" type="text/css"/>
                                    
 
-            <title>Log4j project - Frequently Asked Questions about log4j</title>
+            <title>NLOG4j - Frequently Asked Questions about log4j</title>
         </head>
 
         <body bgcolor="#ffffff" text="#000000" link="#525D76">        
@@ -32,13 +32,13 @@
                      <table class="banner" border="0">
      <tr>
        <td valign="top">
-         <a href="http://logging.apache.org/">
-           <img src="http://logging.apache.org/images/ls-logo.jpg" border="0"/>
+         <a href="http://slf4j.org/">
+           <img src="images/slf4j-logo.jpg" border="0"/>
          </a>
        </td>
        <td align="right">
-                              	       <a href="http://logging.apache.org/log4j/docs/">
-                 <img src="./images/logo.jpg" alt="The log4j project" border="0"/>
+                              	       <a href="http://www.slf4j.org/nlog4j/">
+                 <img src="./images/nlog4j-logo.jpg" alt="NLOG4J project" border="0"/>
       	       </a>
                                </td>
      </tr>
@@ -1084,7 +1084,7 @@
              
                 <!-- FOOTER -->
               <div align="center"><font color="#525D76" size="-1"><em>
-                 Copyright &#169; 1999-2005, Apache Software Foundation
+                 Copyright &#169; 2005, slf4j.org 
                </em></font></div>
 
            <!-- END main table --> 
@@ -1092,7 +1092,7 @@
            <!-- LEFT SIDE NAVIGATION -->
              <!-- ============================================================ -->
   <div class="leftcol">
-               <div class="menu_header">Log4j Project</div>
+               <div class="menu_header">NLOG4J Project</div>
               	 <div class="menu_item">        <a href="./index.html">Introduction</a>
   </div>
               	 <div class="menu_item">        <a href="./download.html">Download</a>
@@ -1103,8 +1103,6 @@
   </div>
               	 <div class="menu_item">        <a href="./contributors.html">Contributors</a>
   </div>
-              	 <div class="menu_item">        <a href="./chainsaw.html">Chainsaw</a>
-  </div>
               	 <div class="menu_item">        <a href="./history.html">History</a>
   </div>
                   <div class="menu_header">Support</div>
@@ -1119,11 +1117,6 @@
                   <div class="menu_header">Related Projects</div>
               	 <div class="menu_item">        <a href="http://www.slf4j.org">SLF4J</a>
   </div>
-                  <div class="menu_header">Translations</div>
-              	 <div class="menu_item">        <a href="http://jakarta.apache-korea.org/log4j/index.html">Korean</a>
-  </div>
-              	 <div class="menu_item">        <a href="http://www.ingrid.org/jajakarta/log4j/">Japanese</a>
-  </div>
              </div> 
    
 

Modified: nlog4j/trunk/docs/history.html
==============================================================================
--- nlog4j/trunk/docs/history.html	(original)
+++ nlog4j/trunk/docs/history.html	Sat May 14 21:42:05 2005
@@ -24,7 +24,7 @@
             <link href="./css/site.css" rel="stylesheet" type="text/css"/>
                                    
 
-            <title>Log4j project - Project history</title>
+            <title>NLOG4j - Project history</title>
         </head>
 
         <body bgcolor="#ffffff" text="#000000" link="#525D76">        
@@ -32,13 +32,13 @@
                      <table class="banner" border="0">
      <tr>
        <td valign="top">
-         <a href="http://logging.apache.org/">
-           <img src="http://logging.apache.org/images/ls-logo.jpg" border="0"/>
+         <a href="http://slf4j.org/">
+           <img src="images/slf4j-logo.jpg" border="0"/>
          </a>
        </td>
        <td align="right">
-                              	       <a href="http://logging.apache.org/log4j/docs/">
-                 <img src="./images/logo.jpg" alt="The log4j project" border="0"/>
+                              	       <a href="http://www.slf4j.org/nlog4j/">
+                 <img src="./images/nlog4j-logo.jpg" alt="NLOG4J project" border="0"/>
       	       </a>
                                </td>
      </tr>
@@ -84,7 +84,7 @@
              
                 <!-- FOOTER -->
               <div align="center"><font color="#525D76" size="-1"><em>
-                 Copyright &#169; 1999-2005, Apache Software Foundation
+                 Copyright &#169; 2005, slf4j.org 
                </em></font></div>
 
            <!-- END main table --> 
@@ -92,7 +92,7 @@
            <!-- LEFT SIDE NAVIGATION -->
              <!-- ============================================================ -->
   <div class="leftcol">
-               <div class="menu_header">Log4j Project</div>
+               <div class="menu_header">NLOG4J Project</div>
               	 <div class="menu_item">        <a href="./index.html">Introduction</a>
   </div>
               	 <div class="menu_item">        <a href="./download.html">Download</a>
@@ -103,8 +103,6 @@
   </div>
               	 <div class="menu_item">        <a href="./contributors.html">Contributors</a>
   </div>
-              	 <div class="menu_item">        <a href="./chainsaw.html">Chainsaw</a>
-  </div>
               	 <div class="menu_item">        <a href="./history.html">History</a>
   </div>
                   <div class="menu_header">Support</div>
@@ -119,11 +117,6 @@
                   <div class="menu_header">Related Projects</div>
               	 <div class="menu_item">        <a href="http://www.slf4j.org">SLF4J</a>
   </div>
-                  <div class="menu_header">Translations</div>
-              	 <div class="menu_item">        <a href="http://jakarta.apache-korea.org/log4j/index.html">Korean</a>
-  </div>
-              	 <div class="menu_item">        <a href="http://www.ingrid.org/jajakarta/log4j/">Japanese</a>
-  </div>
              </div> 
    
 

Modified: nlog4j/trunk/docs/images/nlog4j-logo.jpg
==============================================================================
Binary files. No diff available.

Modified: nlog4j/trunk/src/xdocs/stylesheets/project.xml
==============================================================================
--- nlog4j/trunk/src/xdocs/stylesheets/project.xml	(original)
+++ nlog4j/trunk/src/xdocs/stylesheets/project.xml	Sat May 14 21:42:05 2005
@@ -1,13 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project name="Logging Services Log4j"
-         href="http://logging.apache.org/log4j/docs/">
 
-  <title>Log4j project</title>
-  <logo href="images/logo.jpg">The log4j project</logo>
+<project name="NLOG4J"
+         href="http://www.slf4j.org/nlog4j/">
+
+  <title>NLOG4j</title>
+  <logo href="images/nlog4j-logo.jpg">NLOG4J project</logo>
   
   <body>
       
-    <menu name="Log4j Project">
+    <menu name="NLOG4J Project">
       <item name="Introduction"   href="/index.html"/>
       <item name="Download"       href="/download.html"/>
       <item name="Documentation"  href="/documentation.html"/>
@@ -15,7 +16,7 @@
       <item name="Contributors"   href="/contributors.html"/>
       <item name="History"        href="/history.html"/>
     </menu>
-
+  
     <menu name="Support">
       <item name="Binary distributions" href="http://logging.apache.org/site/binindex.cgi"/>
       <item name="CVS Repositories" href="http://logging.apache.org/site/cvs-repositories.html"/>



More information about the slf4j-dev mailing list