[prev in list] [next in list] [prev in thread] [next in thread] 

List:       apache-logging-general
Subject:    cvs commit: logging-site/src/xdocs/stylesheets site.vsl
From:       carnold () apache ! org
Date:       2005-01-11 21:38:30
Message-ID: 20050111213830.59985.qmail () minotaur ! apache ! org
[Download RAW message or body]

carnold     2005/01/11 13:38:30

  Modified:    src/xdocs/site cvs-repositories.xml news.xml
                        logging-site.xml
               src/xdocs/stylesheets site.vsl
  Log:
  log4cxx graduation
  
  Revision  Changes    Path
  1.6       +2 -2      logging-site/src/xdocs/site/cvs-repositories.xml
  
  Index: cvs-repositories.xml
  ===================================================================
  RCS file: /home/cvs/logging-site/src/xdocs/site/cvs-repositories.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- cvs-repositories.xml	13 Aug 2004 09:31:09 -0000	1.5
  +++ cvs-repositories.xml	11 Jan 2005 21:38:30 -0000	1.6
  @@ -52,13 +52,13 @@
   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/">
  
  
  
  1.5       +8 -0      logging-site/src/xdocs/site/news.xml
  
  Index: news.xml
  ===================================================================
  RCS file: /home/cvs/logging-site/src/xdocs/site/news.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- news.xml	28 Jan 2004 20:40:56 -0000	1.4
  +++ news.xml	11 Jan 2005 21:38:30 -0000	1.5
  @@ -11,6 +11,14 @@
   
   <section name="News &amp; Status">
   
  +<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>
   
  
  
  
  1.10      +47 -42    logging-site/src/xdocs/site/logging-site.xml
  
  Index: logging-site.xml
  ===================================================================
  RCS file: /home/cvs/logging-site/src/xdocs/site/logging-site.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- logging-site.xml	13 Aug 2004 09:31:09 -0000	1.9
  +++ logging-site.xml	11 Jan 2005 21:38:30 -0000	1.10
  @@ -188,12 +188,12 @@
       /logging-myproject/
           /build.xml          &lt;-- Your Ant build.xml file
           /docs/              &lt;-- This is where the generated .html
  -                                   files will go. Your images and other
  -                                   resources will also end up in here.
  -        /src/xdocs/             &lt;-- This is where your source .xml files
  -                                   will go.
  +                                   files, images and other
  +                                   resources will go.
  +        /src/xdocs/         &lt;-- This is where your source .xml
  +                                   files will go.
               /stylesheets/   &lt;-- This is where your project.xml and
  -                                  optionally, your style.vsl will go.
  +                                  optional style.vsl will go.
                   /project.xml &lt;-- Your project.xml file. See below.
   </pre>
   
  @@ -215,57 +215,62 @@
   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">
  +    &lt;property name="docs.src" value="./src/xdocs"/&gt;
  +    &lt;property name="docs.dest" value="./docs"/&gt;
   
  -    <property name="logging-site" 
  -             value="your copy of logging-site dir"/>
  +    &lt;property name="logging-site" 
  +             value="your copy of logging-site dir"/&gt;
        
  -     <!-- Construct classpath for building the html pages -->
  -     <path id="site.classpath">
  -       <fileset dir="${logging-site}/lib">
  -         <include name="*.jar"/>
  -       </fileset>
  -     </path>
  -
  -    <!-- ============================ -->
  -    <!-- ======= New targets ======== -->
  -    <!-- ============================ -->
  -
  -    <target name="prepareSite">
  -      <available classname="org.apache.velocity.anakia.AnakiaTask"
  -    	property="AnakiaTask.present">
  -    	<classpath refid="site.classpath"/>
  -      </available>
  -    </target>
  +     &lt;!-- Construct classpath for building the html pages --&gt;
  +     &lt;path id="site.classpath"&gt;
  +       &lt;fileset dir="${logging-site}/lib"&gt;
  +         &lt;include name="*.jar"/&gt;
  +       &lt;/fileset&gt;
  +     &lt;/path&gt;
  +
  +    &lt;!-- ============================ --&gt;
  +    &lt;!-- ======= New targets ======== --&gt;
  +    &lt;!-- ============================ --&gt;
  +
  +    &lt;target name="prepareSite"&gt;
  +      &lt;available 
  +         classname="org.apache.velocity.anakia.AnakiaTask"
  +    	property="AnakiaTask.present"&gt;
  +    	&lt;classpath refid="site.classpath"/&gt;
  +      &lt;/available&gt;
  +    &lt;/target&gt;
       
  -    <target name="checkSite" depends="prepareSite" unless="AnakiaTask.present">
  -      <echo>
  +    &lt;target name="checkSite" depends="prepareSite" 
  +         unless="AnakiaTask.present"&gt;
  +      &lt;echo&gt;
       	AnakiaTask is not present! Please check to make sure that
       	velocity.jar is in your classpath.
  -      </echo>
  -    </target>
  +      &lt;/echo&gt;
  +    &lt;/target&gt;
       
  -    <target name="site" depends="checkSite" if="AnakiaTask.present">
  -      <taskdef name="anakia" classname="org.apache.velocity.anakia.AnakiaTask">
  -    	<classpath refid="site.classpath"/>
  -      </taskdef>
  +    &lt;target name="site" depends="checkSite" 
  +         if="AnakiaTask.present"&gt;
  +      &lt;taskdef name="anakia" 
  +         classname="org.apache.velocity.anakia.AnakiaTask"&gt;
  +    	&lt;classpath refid="site.classpath"/&gt;
  +      &lt;/taskdef&gt;
       
  -      <mkdir dir="${docs.dest}/css"/>  
  -      <copy file="${logging-site}/docs/css/site.css" tofile="${docs.dest}/css/site.css"/>
  +      &lt;mkdir dir="${docs.dest}/css"/&gt;  
  +      &lt;copy file="${logging-site}/docs/css/site.css" 
  +           tofile="${docs.dest}/css/site.css"/&gt;
         
  -      <anakia basedir="${docs.src}" destdir="${docs.dest}/"
  +      &lt;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"&gt;
  +      &lt;/anakia&gt;    
  +    &lt;/target&gt;
  +</pre>
   
   <h2>Constructing your documentation</h2>
       <p>Now, in order to build your website, all you need to do is:</p>
  
  
  
  1.15      +1 -1      logging-site/src/xdocs/stylesheets/site.vsl
  
  Index: site.vsl
  ===================================================================
  RCS file: /home/cvs/logging-site/src/xdocs/stylesheets/site.vsl,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- site.vsl	17 Dec 2004 19:12:09 -0000	1.14
  +++ site.vsl	11 Jan 2005 21:38:30 -0000	1.15
  @@ -300,7 +300,7 @@
                
                   <!-- FOOTER -->
                 <div align="center"><font color="$bodylink" size="-1"><em>
  -                 Copyright &#169; 1999-2004, Apache Software Foundation
  +                 Copyright &#169; 1999-2005, Apache Software Foundation
                  </em></font></div>
   
              <!-- END main table --> 
  
  
  
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic