carnold 2005/01/11 13:39:43
Modified: docs/site logging-site.html cvs-repositories.html news.html
mission-statement.html mailing-lists.html
bylaws.html binindex.html bugreport.html
who-we-are.html
Log:
log4cxx graduation
Revision Changes Path
1.13 +46 -41 logging-site/docs/site/logging-site.html
Index: logging-site.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/logging-site.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- logging-site.html 22 Nov 2004 18:18:12 -0000 1.12
+++ logging-site.html 11 Jan 2005 21:39:43 -0000 1.13
@@ -199,12 +199,12 @@
/logging-myproject/
/build.xml <-- Your Ant build.xml file
/docs/ <-- This is where the generated .html
- files will go. Your images and other
- resources will also end up in here.
- /src/xdocs/ <-- This is where your source .xml files
- will go.
+ files, images and other
+ resources will go.
+ /src/xdocs/ <-- This is where your source .xml
+ files will go.
/stylesheets/ <-- This is where your project.xml and
- optionally, your style.vsl will go.
+ optional style.vsl will go.
/project.xml <-- Your project.xml file. See below.
</pre>
<p>
@@ -223,57 +223,62 @@
your build tool for your project, we will now list the modifications
to your build file:
</p>
- <pre
class="source"><![CDATA[
- <property name="docs.src" value="./src/xdocs"/>
- <property name="docs.dest" value="./docs"/>
+ <pre class="source">
+ <property name="docs.src" value="./src/xdocs"/>
+ <property name="docs.dest" value="./docs"/>
- <property name="logging-site"
- value="your copy of logging-site dir"/>
+ <property name="logging-site"
+ value="your copy of logging-site dir"/>
- <!-- Construct classpath for building the html pages -->
- <path id="site.classpath">
- <fileset dir="${logging-site}/lib">
- <include name="*.jar"/>
- </fileset>
- </path>
+ <!-- Construct classpath for building the html pages -->
+ <path id="site.classpath">
+ <fileset dir="${logging-site}/lib">
+ <include name="*.jar"/>
+ </fileset>
+ </path>
- <!-- ============================ -->
- <!-- ======= New targets ======== -->
- <!-- ============================ -->
+ <!-- ============================ -->
+ <!-- ======= New targets ======== -->
+ <!-- ============================ -->
- <target name="prepareSite">
- <available classname="org.apache.velocity.anakia.AnakiaTask"
- property="AnakiaTask.present">
- <classpath refid="site.classpath"/>
- </available>
- </target>
+ <target name="prepareSite">
+ <available
+ classname="org.apache.velocity.anakia.AnakiaTask"
+ property="AnakiaTask.present">
+ <classpath refid="site.classpath"/>
+ </available>
+ </target>
- <target name="checkSite" depends="prepareSite"
unless="AnakiaTask.present">
- <echo>
+ <target name="checkSite" depends="prepareSite"
+ unless="AnakiaTask.present">
+ <echo>
AnakiaTask is not present! Please check to make sure that
velocity.jar is in your classpath.
- </echo>
- </target>
+ </echo>
+ </target>
- <target name="site" depends="checkSite" if="AnakiaTask.present">
- <taskdef name="anakia"
classname="org.apache.velocity.anakia.AnakiaTask">
- <classpath refid="site.classpath"/>
- </taskdef>
+ <target name="site" depends="checkSite"
+ if="AnakiaTask.present">
+ <taskdef name="anakia"
+ classname="org.apache.velocity.anakia.AnakiaTask">
+ <classpath refid="site.classpath"/>
+ </taskdef>
- <mkdir dir="${docs.dest}/css"/>
- <copy file="${logging-site}/docs/css/site.css"
tofile="${docs.dest}/css/site.css"/>
+ <mkdir dir="${docs.dest}/css"/>
+ <copy file="${logging-site}/docs/css/site.css"
+ tofile="${docs.dest}/css/site.css"/>
- <anakia basedir="${docs.src}" destdir="${docs.dest}/"
+ <anakia basedir="${docs.src}" destdir="${docs.dest}/"
extension=".html"
style="site.vsl"
projectFile="stylesheets/project.xml"
excludes="**/stylesheets/**, empty.xml"
includes="**/*.xml"
lastModifiedCheck="true"
- templatePath="${logging-site}/src/xdocs/stylesheets">
- </anakia>
- </target>
-]]></pre>
+ templatePath="${logging-site}/src/xdocs/stylesheets">
+ </anakia>
+ </target>
+</pre>
<h2>Constructing your
documentation</h2>
<p>Now, in order to
build your website, all you need to do is:</p>
<pre class="source">cd
logging-myproject
@@ -365,7 +370,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.14 +3 -3 logging-site/docs/site/cvs-repositories.html
Index: cvs-repositories.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/cvs-repositories.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- cvs-repositories.html 22 Nov 2004 18:18:12 -0000 1.13
+++ cvs-repositories.html 11 Jan 2005 21:39:43 -0000 1.14
@@ -84,11 +84,11 @@
logging-log4j-sandbox</a></li>
<li><a href="http://cvs.apache.org/viewcvs/logging-site/">
logging-site</a></li>
+<li><a href="http://cvs.apache.org/viewcvs/logging-log4cxx/">
+logging-log4cxx</a></li>
</ul>
<p>Modules for the Incubated
Projects</p>
<ul>
-<li><a href="http://cvs.apache.org/viewcvs/logging-log4cxx/">
-logging-log4cxx</a></li>
<li><a href="http://cvs.apache.org/viewcvs/logging-log4net/">
logging-log4net</a></li><li><a
href="http://cvs.apache.org/viewcvs/logging-log4php/">
logging-log4php</a></li>
@@ -109,7 +109,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.22 +7 -2 logging-site/docs/site/news.html
Index: news.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/news.html,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- news.html 22 Nov 2004 18:18:12 -0000 1.21
+++ news.html 11 Jan 2005 21:39:43 -0000 1.22
@@ -48,7 +48,12 @@
<hr noshade="" size="1"/>
<h1>News & Status</strong></h1>
- <h3>22nd of January 2004 - Logging
Services PMC has voted for the
+ <h3>11 January 2005 - log4cxx graduates
from the incubator</h3>
+ <p>The Incubator PMC has
voted to graduate log4cxx. log4cxx is
+ now a subproject of the Apache Logging Services Project.
+ </p>
+ <hr noshade="noshade"
size="1" />
+ <h3>22nd of January 2004 -
Logging Services PMC has voted for the
adoption of log4cxx, log4net and log4php</h3>
<p>The Logging Services PMC
has voted for the incubation of the
log4cxx, log4net and log4php projects. These votes pave the vote for
@@ -82,7 +87,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.17 +1 -1 logging-site/docs/site/mission-statement.html
Index: mission-statement.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/mission-statement.html,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- mission-statement.html 22 Nov 2004 18:18:12 -0000 1.16
+++ mission-statement.html 11 Jan 2005 21:39:43 -0000 1.17
@@ -128,7 +128,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.22 +1 -1 logging-site/docs/site/mailing-lists.html
Index: mailing-lists.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/mailing-lists.html,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- mailing-lists.html 23 Nov 2004 11:01:23 -0000 1.21
+++ mailing-lists.html 11 Jan 2005 21:39:43 -0000 1.22
@@ -198,7 +198,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.19 +1 -1 logging-site/docs/site/bylaws.html
Index: bylaws.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/bylaws.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- bylaws.html 22 Nov 2004 18:18:12 -0000 1.18
+++ bylaws.html 11 Jan 2005 21:39:43 -0000 1.19
@@ -411,7 +411,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.20 +1 -1 logging-site/docs/site/binindex.html
Index: binindex.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/binindex.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- binindex.html 25 Nov 2004 19:30:22 -0000 1.19
+++ binindex.html 11 Jan 2005 21:39:43 -0000 1.20
@@ -125,7 +125,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.20 +1 -1 logging-site/docs/site/bugreport.html
Index: bugreport.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/bugreport.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- bugreport.html 23 Nov 2004 11:01:23 -0000 1.19
+++ bugreport.html 11 Jan 2005 21:39:43 -0000 1.20
@@ -170,7 +170,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->
1.21 +1 -1 logging-site/docs/site/who-we-are.html
Index: who-we-are.html
===================================================================
RCS file: /home/cvs/logging-site/docs/site/who-we-are.html,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- who-we-are.html 8 Dec 2004 18:04:38 -0000 1.20
+++ who-we-are.html 11 Jan 2005 21:39:43 -0000 1.21
@@ -236,7 +236,7 @@
<!-- FOOTER -->
<div align="center"><font color="#525D76" size="-1"><em>
- Copyright © 1999-2004, Apache Software Foundation
+ Copyright © 1999-2005, Apache Software Foundation
</em></font></div>
<!-- END main table -->