You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-cvs@jakarta.apache.org by ce...@apache.org on 2001/01/10 19:33:10 UTC

cvs commit: jakarta-log4j/xdocs/stylesheets project.xml

ceki        01/01/10 10:33:10

  Modified:    .        HISTORY
               doc      documentation.html download.html history.html
                        index.html
               packaging install
  Added:       .        siteBuild.sh siteBuild.xml
               xdocs    contactUs.xml documentation.xml download.xml
                        history.xml index.xml
               xdocs/stylesheets project.xml
  Log:
  Painfully migrating to ithe Anakia way of doing things.
  
  Revision  Changes    Path
  1.7       +7 -0      jakarta-log4j/HISTORY
  
  Index: HISTORY
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/HISTORY,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HISTORY	2001/01/09 09:25:09	1.6
  +++ HISTORY	2001/01/10 18:33:09	1.7
  @@ -5,6 +5,13 @@
          client code. 
    [***] Changes requiring important modifications to existing client code.
   
  + January 10th, 2001
  +
  + - Release of version 1.0.1 (the 21th public release)
  +
  + - This version corrects some documentation and build script bugs;
  +   code has not changed.
  +
    January 8th, 2001
   
    - Release of version 1.0 (the 20th public release)
  
  
  
  1.1                  jakarta-log4j/siteBuild.sh
  
  Index: siteBuild.sh
  ===================================================================
  #!/bin/sh
  
  if [ "$JAVA_HOME" = "" ] ; then
    echo You must set JAVA_HOME to point at your Java Development Kit directory
    exit 1
  fi
  
  # convert the existing path to unix
  if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] ; then
     CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
  fi
  
  # Add in your .jar files first
  for i in ./lib/*.jar
  do
      CLASSPATH=$CLASSPATH:"$i"
  done
  # Add in the jakarta-site2 library files
  for i in ../jakarta-site2/lib/*.jar
  do
      CLASSPATH=$CLASSPATH:"$i"
  done
  
  # convert the unix path to windows
  if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] ; then
     CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
  fi
  
  BUILDFILE=siteBuild.xml
  
  #echo $CLASSPATH
  
  java $ANT_OPTS -classpath "$CLASSPATH" org.apache.tools.ant.Main \
                  -Dant.home=$ANT_HOME \
                  -buildfile ${BUILDFILE} \
                   "$@"
  
  
  
  1.1                  jakarta-log4j/siteBuild.xml
  
  Index: siteBuild.xml
  ===================================================================
  <project name="build-site" default="docs" basedir=".">
  
      <!-- Initialization properties -->
      <property name="project.name"   value="log4j.site"/>
      <property name="docs.src" value="./xdocs"/>
      <property name="docs.dest" value="./doc"/>
  
      <target name="prepare">    
          <available classname="org.apache.velocity.anakia.AnakiaTask" 
              property="AnakiaTask.present"/>
      </target>
  
      <target depends="prepare" name="prepare-error" unless="AnakiaTask.present">
          <echo>
              AnakiaTask is not present! Please check to make sure that 
              velocity.jar is in your classpath.
          </echo>
      </target>
  
      <target name="docs" depends="prepare-error" if="AnakiaTask.present">
          <taskdef name="anakia" classname="org.apache.velocity.anakia.AnakiaTask"/>
          <anakia basedir="${docs.src}" destdir="${docs.dest}/"
               extension=".html" style="${docs.src}/stylesheets/site.vsl"
               projectFile="stylesheets/project.xml"
               excludes="**/stylesheets/** empty.xml"
               includes="**/*.xml"
               lastModifiedCheck="true"
               velocityPropertiesFile="${docs.src}/velocity.properties">
          </anakia>
  
          <copy todir="${docs.dest}/images" filtering="no">
              <fileset dir="${docs.src}/images">
                  <include name="**/*.gif"/>
                  <include name="**/*.jpeg"/>
                  <include name="**/*.jpg"/>
              </fileset>
          </copy>
          <!-- In case we have CSS someday
          <copy todir="${docs.dest}" filtering="no">
              <fileset dir="${docs.src}">
                  <include name="**/*.css"/>
              </fileset>
          </copy>
          -->
      </target>
  </project>
  
  
  
  1.2       +0 -64     jakarta-log4j/doc/documentation.html
  
  Index: documentation.html
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/doc/documentation.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- documentation.html	2001/01/10 17:50:56	1.1
  +++ documentation.html	2001/01/10 18:33:09	1.2
  @@ -48,70 +48,6 @@
                       <li>    <a href="./history.html">History</a>
   </li>
                   </ul>
  -            <strong>Essentials</strong>
  -        <ul>
  -                    <li>    <a href="./index.html">Front Page</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/news.html">News & Status</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mission.html">Mission</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/guidelines.html">Guidelines Notes</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/faqs.html">FAQs</a>
  -</li>
  -                </ul>
  -            <strong>Get Involved</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/getinvolved.html">Overview</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/cvsindex.html">CVS Repositories</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mail.html">Mailing Lists</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/library.html">Reference Library</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/bugs.html">Bug Database</a>
  -</li>
  -                </ul>
  -            <strong>SubProjects</strong>
  -        <ul>
  -                    <li>    <a href="./ant/index.html">Ant</a>
  -</li>
  -                    <li>    <a href="./ecs/index.html">ECS</a>
  -</li>
  -                    <li>    <a href="./log4j/index.html">Log4j</a>
  -</li>
  -                    <li>    <a href="./oro/index.html">ORO</a>
  -</li>
  -                    <li>    <a href="./regexp/index.html">Regexp</a>
  -</li>
  -                    <li>    <a href="./slide/index.html">Slide</a>
  -</li>
  -                    <li>    <a href="./struts/index.html">Struts</a>
  -</li>
  -                    <li>    <a href="./taglibs/index.html">Taglibs</a>
  -</li>
  -                    <li>    <a href="./tomcat/index.html">Tomcat</a>
  -</li>
  -                    <li>    <a href="./velocity/index.html">Velocity</a>
  -</li>
  -                    <li>    <a href="./watchdog/index.html">Watchdog</a>
  -</li>
  -                </ul>
  -            <strong>Misc</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/whoweare.html">Who We Are</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/acknowledgements.html">Acknowledgements</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/jakarta-site2.html">About This Site</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/contact.html">Contact</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/legal.html">Legal</a>
  -</li>
  -                </ul>
                           </td>
                       <td align="left" valign="top">
                                                                       <table border="0" cellspacing="0" cellpadding="2" width="100%">
  
  
  
  1.2       +0 -64     jakarta-log4j/doc/download.html
  
  Index: download.html
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/doc/download.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- download.html	2001/01/10 17:50:56	1.1
  +++ download.html	2001/01/10 18:33:09	1.2
  @@ -48,70 +48,6 @@
                       <li>    <a href="./history.html">History</a>
   </li>
                   </ul>
  -            <strong>Essentials</strong>
  -        <ul>
  -                    <li>    <a href="./index.html">Front Page</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/news.html">News & Status</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mission.html">Mission</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/guidelines.html">Guidelines Notes</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/faqs.html">FAQs</a>
  -</li>
  -                </ul>
  -            <strong>Get Involved</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/getinvolved.html">Overview</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/cvsindex.html">CVS Repositories</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mail.html">Mailing Lists</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/library.html">Reference Library</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/bugs.html">Bug Database</a>
  -</li>
  -                </ul>
  -            <strong>SubProjects</strong>
  -        <ul>
  -                    <li>    <a href="./ant/index.html">Ant</a>
  -</li>
  -                    <li>    <a href="./ecs/index.html">ECS</a>
  -</li>
  -                    <li>    <a href="./log4j/index.html">Log4j</a>
  -</li>
  -                    <li>    <a href="./oro/index.html">ORO</a>
  -</li>
  -                    <li>    <a href="./regexp/index.html">Regexp</a>
  -</li>
  -                    <li>    <a href="./slide/index.html">Slide</a>
  -</li>
  -                    <li>    <a href="./struts/index.html">Struts</a>
  -</li>
  -                    <li>    <a href="./taglibs/index.html">Taglibs</a>
  -</li>
  -                    <li>    <a href="./tomcat/index.html">Tomcat</a>
  -</li>
  -                    <li>    <a href="./velocity/index.html">Velocity</a>
  -</li>
  -                    <li>    <a href="./watchdog/index.html">Watchdog</a>
  -</li>
  -                </ul>
  -            <strong>Misc</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/whoweare.html">Who We Are</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/acknowledgements.html">Acknowledgements</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/jakarta-site2.html">About This Site</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/contact.html">Contact</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/legal.html">Legal</a>
  -</li>
  -                </ul>
                           </td>
                       <td align="left" valign="top">
                                                                       <table border="0" cellspacing="0" cellpadding="2" width="100%">
  
  
  
  1.2       +0 -64     jakarta-log4j/doc/history.html
  
  Index: history.html
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/doc/history.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- history.html	2001/01/10 17:50:56	1.1
  +++ history.html	2001/01/10 18:33:09	1.2
  @@ -48,70 +48,6 @@
                       <li>    <a href="./history.html">History</a>
   </li>
                   </ul>
  -            <strong>Essentials</strong>
  -        <ul>
  -                    <li>    <a href="./index.html">Front Page</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/news.html">News & Status</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mission.html">Mission</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/guidelines.html">Guidelines Notes</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/faqs.html">FAQs</a>
  -</li>
  -                </ul>
  -            <strong>Get Involved</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/getinvolved.html">Overview</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/cvsindex.html">CVS Repositories</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mail.html">Mailing Lists</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/library.html">Reference Library</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/bugs.html">Bug Database</a>
  -</li>
  -                </ul>
  -            <strong>SubProjects</strong>
  -        <ul>
  -                    <li>    <a href="./ant/index.html">Ant</a>
  -</li>
  -                    <li>    <a href="./ecs/index.html">ECS</a>
  -</li>
  -                    <li>    <a href="./log4j/index.html">Log4j</a>
  -</li>
  -                    <li>    <a href="./oro/index.html">ORO</a>
  -</li>
  -                    <li>    <a href="./regexp/index.html">Regexp</a>
  -</li>
  -                    <li>    <a href="./slide/index.html">Slide</a>
  -</li>
  -                    <li>    <a href="./struts/index.html">Struts</a>
  -</li>
  -                    <li>    <a href="./taglibs/index.html">Taglibs</a>
  -</li>
  -                    <li>    <a href="./tomcat/index.html">Tomcat</a>
  -</li>
  -                    <li>    <a href="./velocity/index.html">Velocity</a>
  -</li>
  -                    <li>    <a href="./watchdog/index.html">Watchdog</a>
  -</li>
  -                </ul>
  -            <strong>Misc</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/whoweare.html">Who We Are</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/acknowledgements.html">Acknowledgements</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/jakarta-site2.html">About This Site</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/contact.html">Contact</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/legal.html">Legal</a>
  -</li>
  -                </ul>
                           </td>
                       <td align="left" valign="top">
                                                                       <table border="0" cellspacing="0" cellpadding="2" width="100%">
  
  
  
  1.2       +0 -64     jakarta-log4j/doc/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/doc/index.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html	2001/01/10 17:50:56	1.1
  +++ index.html	2001/01/10 18:33:09	1.2
  @@ -48,70 +48,6 @@
                       <li>    <a href="./history.html">History</a>
   </li>
                   </ul>
  -            <strong>Essentials</strong>
  -        <ul>
  -                    <li>    <a href="./index.html">Front Page</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/news.html">News & Status</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mission.html">Mission</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/guidelines.html">Guidelines Notes</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/faqs.html">FAQs</a>
  -</li>
  -                </ul>
  -            <strong>Get Involved</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/getinvolved.html">Overview</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/cvsindex.html">CVS Repositories</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/mail.html">Mailing Lists</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/library.html">Reference Library</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/bugs.html">Bug Database</a>
  -</li>
  -                </ul>
  -            <strong>SubProjects</strong>
  -        <ul>
  -                    <li>    <a href="./ant/index.html">Ant</a>
  -</li>
  -                    <li>    <a href="./ecs/index.html">ECS</a>
  -</li>
  -                    <li>    <a href="./log4j/index.html">Log4j</a>
  -</li>
  -                    <li>    <a href="./oro/index.html">ORO</a>
  -</li>
  -                    <li>    <a href="./regexp/index.html">Regexp</a>
  -</li>
  -                    <li>    <a href="./slide/index.html">Slide</a>
  -</li>
  -                    <li>    <a href="./struts/index.html">Struts</a>
  -</li>
  -                    <li>    <a href="./taglibs/index.html">Taglibs</a>
  -</li>
  -                    <li>    <a href="./tomcat/index.html">Tomcat</a>
  -</li>
  -                    <li>    <a href="./velocity/index.html">Velocity</a>
  -</li>
  -                    <li>    <a href="./watchdog/index.html">Watchdog</a>
  -</li>
  -                </ul>
  -            <strong>Misc</strong>
  -        <ul>
  -                    <li>    <a href="http://jakarta.apache.org/site/whoweare.html">Who We Are</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/acknowledgements.html">Acknowledgements</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/jakarta-site2.html">About This Site</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/contact.html">Contact</a>
  -</li>
  -                    <li>    <a href="http://jakarta.apache.org/site/legal.html">Legal</a>
  -</li>
  -                </ul>
                           </td>
                       <td align="left" valign="top">
                                                                       <table border="0" cellspacing="0" cellpadding="2" width="100%">
  
  
  
  1.5       +1 -1      jakarta-log4j/packaging/install
  
  Index: install
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/packaging/install,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- install	2001/01/08 23:29:24	1.4
  +++ install	2001/01/10 18:33:10	1.5
  @@ -23,7 +23,7 @@
   }
   # ==================================================
   
  -WWW_TARGET=~/sf/groups/log4j/htdocs
  +WWW_TARGET=~/ASF/dump
   DISTRIB_TARGET=~/sf/temp
   JAR_FULL=log4j.jar
   JAR_CORE=log4j-core.jar
  
  
  
  1.1                  jakarta-log4j/xdocs/contactUs.xml
  
  Index: contactUs.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  
    <properties>
      <author email="cgu@apache.org">Ceki Gulcu</author>
      <title>log4j project</title>
    </properties>
  
  <body>
  
  <section name="Reporting tools">
  
  
  <p>Bugs should be reported by using the <a
  href="http://nagoya.apache.org/bugzilla">Apache Bug
  Database</a>. Before reporting a problem, please check the <a
  href="log4j/HISTORY">project history</a> file to see if the problem is
  already known.</p>
  
  
  <p>Support requests should be sent to the log4j-user list (see below).</p>
  
  </section>
  
  <section name="Mailing lists">
  
  <p>New releases and important bug-fixes are anounced at the
  log4j-anouncement list.  You can subscribe to the log4j-announce list,
  or change your existing subscription <a
  href="http://lists.sourceforge.net/mailman/listinfo/log4j-announce">online</a>. The
  traffic on this list is extremely low and you are encouraged to
  subscribe to this list if you are using log4j.</p>
  
  <p>Discussion on log4j and logging in general are held on the
  log4j-user mailing list. To post a message to all its members, send
  email to <A
  HREF="mailto:log4j-user@jakarta.apache.org">log4j-user@jakarta.apache.org</A>.</p>
  
  <p>You can subscribe to the log4j-users list send an email to 
  <A HREF="mailto:log4j-user-subscribe@jakarta.apache.org">log4j-user-subscribe@jakarta.apache.org</A>.</p>
  
  
  <p>Development related discussions are held on the log4j-dev mailing
  list.  To post a message to all its members, send email to <A
  HREF="mailto:log4j-dev@jakarta.apache.org">log4j-dev@jakarta.apache.org</A>.
  </p>
  
  <p>You can subscribe to the log4j-users list send an email to <A
  HREF="mailto:log4j-dev-subscribe@jakarta.apache.org">log4j-dev-subscribe@jakarta.apache.org</A>.</p>
  
  
  </section>
  
  </body>
  </document>
  
  
  
  
  1.1                  jakarta-log4j/xdocs/documentation.xml
  
  Index: documentation.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  
    <properties>
      <author email="cgu@apache.org">Ceki Gulcu</author>
      <title>log4j project</title>
    </properties>
  
  <body>
  
  <section name="log4j documentation">
  
  <p>The following documentation is included with the standard log4j
  distribution and also browsable online:</p>
  
  <ul>
    <p>
      <li><a href="log4j/javadoc/manual.html"><b>introductory manual</b></a>,
      </li>
    </p>
  
    <p>
      <li>
      <a href="log4j/javadoc/index.html"><b>javadoc documentation</b></a>,
      </li>
    </p>
  
    <p>
      <li>
      <a href="log4j/FAQ.html"><b>FAQ</b></a>,
      </li>
    </p>
  
    <p>
      <li>
      <a href="log4j/TROUBLESHOOT.html"><b>troubleshooting guide</b></a> and
      </li>
    </p>
    
    <p>
      <li>
        <a href="log4j/javadoc/deepExtension.html"><b>extending log4j</b></a>.
      </li>
    </p>
  </ul>
  
  </section>
  
  </body>
  </document>
  
  
  
  
  1.1                  jakarta-log4j/xdocs/download.xml
  
  Index: download.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  
    <properties>
      <author email="cgu@apache.org">Ceki Gulcu</author>
      <title>log4j project</title>
    </properties>
  
  <body>
  
  <section name="log4j version 1.0.1 (2001-01-10 13:45:15 UTC)">
  
  <p>Download the complete package including <i>full source code</i>,
  class files and documentation in <a
  href="jakarta-log4j-1.0.1.tgz"><b>TGZ</b></a> format or in <a
  href="jakarta-log4j-1.0.1.zip"><b>ZIP</b></a> format. You may elect to browse
  log4j <a href="documentation.html"><b>documentation</b></a> online.</p>
  
  <p>Version 1.0.1 is the 21th public release of log4j.</p>
  
  <p>Thanks to <a href="mailto:hgomez@slib.fr">Henri Gomez</a>, Linux
  users can now fetch log4j in RPM format at <a
  href="http://rpmized.free.fr">http://rpmized.free.fr</a> or
  alternatively at <a
  href="ftp://ftp.falsehope.com/home/gomez/log4j/">ftp://ftp.falsehope.com/home/gomez/log4j/</a>.</p>
  
  <p>We also maintain a list of <a href="earlier.html">earlier
  versions</a> of log4j for download, intended for the curious
  paleontologist.</p>
  
  </section>
  
  </body>
  </document>
  
  
  
  
  1.1                  jakarta-log4j/xdocs/history.xml
  
  Index: history.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  
    <properties>
      <author email="cgu@apache.org">Ceki Gulcu</author>
      <title>log4j project</title>
    </properties>
  
  <body>
  
  <section name="Project History">
  
  <p>The <a href="log4j/HISTORY"><b>project history</b></a> gives a
  brief summary of changes and additions. Users frequently report bugs
  that are solved in newer versions of log4j. Please have a look at the
  history file before asking for help.</p>
  
  <p>The project's official address changed to <a
  href="http://jakarta.apache.org/log4j">http://jakarta.apache.org/log4j</a>
  as of January 2001.</p>  
  
  <p>Many thanks to all the log4j users who keep sending us input and
  sometimes even <b><a href="praise.html">praise</a></b> for our
  collective effort.</p>
  
        
  <p>The first ancestor of log4j was written for the E.U. sponsored <a
  href="http://www.semper.org">SEMPER</a> project.  N. Asokan, Ceki
  Gulcu and Michael Steiner came up with the idea of
  hierarchical categories back in 1996. Their idea is still at the heart
  of log4j.</p>
  
  <p>The package was considerably improved over the years by Ceki Gulcu
  while working for the <a href="http://www.zurich.ibm.com"><b>IBM
  Zurich Research Laboratory</b></a>. Although no longer with IBM, Ceki
  will still owns and maintains log4j.</p>
  
  <p>The log4j logo was designed and kindly donated by <a
  href="http://www.cyberlab.ch"><IMG src="images/cyberlab15.gif"
  ALT="Cyberlab S.A." ALIGN="abscenter"/></a> of Switzerland.</p>
  </section>
  
  </body>
  </document>
  
  
  
  
  1.1                  jakarta-log4j/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  
    <properties>
      <author email="cgu@apache.org">Ceki Gulcu</author>
      <title>log4j project</title>
    </properties>
  
  <body>
  
  <section name="Introduction">
  
  <p>Inserting log statements into your code is a low-tech method for
  debugging it.  It may also be the only way because debuggers are not
  always available or applicable.  This is often the case for 
  distributed applications.</p>
  
  <p>On the other hand, some people argue that log statements pollute
  source code and decrease legibility. (We believe that the contrary is
  true).  In the Java language where a pre-processor is not available,
  log statements increase the size of the code and reduce its speed,
  even when logging is turned off.  Given that a reasonably sized
  application may contain thousands of log statements, speed is of
  particular importance.</p>
  
  
  <p>With log4j it is possible to enable logging at runtime without
  modifying the application binary. The log4j package is designed so
  that these statements can remain in shipped code without incurring a
  heavy performance cost. Logging behavior can be controlled by editing
  a configuration file, without touching the application binary.</p>
  
  <p>Logging equips the developer with <i>detailed context</i> for
  application failures. On the other hand, testing provides quality
  assurance and confidence in the application. Logging and testing
  should not be confused. They are complementary. When logging is wisely
  used, it can prove to be an essential tool.</p>
  
  <p>One of the distinctive features of log4j is the notion of
  <i>inheritance</i> in categories. Using a category <em>hierarchy</em>
  it is possible to control which log statements are output at
  arbitrarily fine granularity but also great ease. This helps reduce
  the volume of logged output and minimize the cost of logging.</p>
  
  <p>The target of the log output can be a file, an
  <code>OutputStream</code>, a <code>java.io.Writer</code>, a remote
  log4j server, a remote Unix Syslog daemon or even a NT Event logger.</p>
  
  <p>On a 233 MHz ThinkPad running JDK 1.1.7B, it costs about 46
  nano-seconds to determine if that statement should be logged or
  not. Actual logging is also quite fast, ranging from 79 micro-seconds
  using the SimpleLayout, 164 micro-seconds using the TTCCLayout and
  around a millisecond when printing exceptions. The performance of the
  PatternLayout is almost as good as the dedicated patterns, except that
  it is a lot more flexible.</p>
  
  <p>The package is being constantly improved thanks to input from users
  and code contributed by authors in the community.</p>
  
  </section>
  
  </body>
  </document>
  
  
  
  
  1.1                  jakarta-log4j/xdocs/stylesheets/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>
  <project name="Jakarta Site"
          href="http://jakarta.apache.org/">
  
      <title>Log4j project</title>
      <logo href="images/logo.jpg">The log4j Project</logo>
      
      <body>
  
      <menu name="log4j project">
          <item name="Introduciton"   href="/index.html"/>
          <item name="Download"       href="/download.html"/>
          <item name="Documentation"  href="/documentation.html"/>
          <item name="Contact us"     href="/contactUs.html"/>
          <item name="History"        href="/history.html"/>
      </menu>
  
      </body>
  </project>