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/10/17 22:59:49 UTC

cvs commit: jakarta-log4j/src/docbook build.xml architecture.xml defaultInit.xml intro.xml manual.xml

ceki        01/10/17 13:59:49

  Modified:    src/docbook architecture.xml defaultInit.xml intro.xml
                        manual.xml
  Added:       src/docbook build.xml
  Log:
  Migration to Docbook XSL instead of jade.
  
  A very cool contribution from Yuji Kumasaka who graciously outlined all the steps
  necessary to do the transformation.
  
  Submitted by: Yuji Kumasaka <ku...@mms.intec.co.jp>
  Reviewed by: Ceki
  
  Revision  Changes    Path
  1.14      +3 -3      jakarta-log4j/src/docbook/architecture.xml
  
  Index: architecture.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/docbook/architecture.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- architecture.xml	2001/10/01 21:14:54	1.13
  +++ architecture.xml	2001/10/17 20:59:49	1.14
  @@ -106,7 +106,7 @@
     
   	public <emphasis role="strong">Logger</emphasis> class {
     
  -	  // Creation & retrieval methods:
  +	  // Creation &amp; retrieval methods:
   	  public static Logger getRootLogger();
   	  public static Logger getLogger(String name);
   	  
  @@ -436,7 +436,7 @@
       selection rule.</para>
       </sect2>
   
  -    <!-- ----------------------------------------------------------------- -->
  +    <!-- =================================================================== -->
       
       <sect2 id="repositoryThreshold" xreflabel="Respository-wide Threshold">
         <title>Respository-wide Threshold</title>
  @@ -913,7 +913,7 @@
       </procedure> 
     </sect1>
   
  -  <!-- -------------------------------- Performance -------------------------------- -->
  +  <!-- ======================= Performance =================== -->
     
     <sect1 id="performance">
       <title>Performance</title>
  
  
  
  1.6       +2 -2      jakarta-log4j/src/docbook/defaultInit.xml
  
  Index: defaultInit.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/docbook/defaultInit.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- defaultInit.xml	2001/10/17 06:37:29	1.5
  +++ defaultInit.xml	2001/10/17 20:59:49	1.6
  @@ -104,8 +104,8 @@
       <para>The Java Servlet technology is the cornerstome of many
       server-side applications. For those unfamiliar with Servlets I
       highly recommend Jason Hunter's book entitled "Java Servlet
  -    Programming" from O'Reilly & Associates.</para>
  -
  +    Programming" from O'Reilly &amp; Associates.</para>
  +  
       <para>Although not explicitly stated in the <ulink
   	url="http://www.jcp.org/jsr/detail/53.jsp">Java Servlet 2.3 and
       JavaServer Pages 1.2 Specifications</ulink>, most web containers
  
  
  
  1.11      +5 -4      jakarta-log4j/src/docbook/intro.xml
  
  Index: intro.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/docbook/intro.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- intro.xml	2001/10/01 21:14:54	1.10
  +++ intro.xml	2001/10/17 20:59:49	1.11
  @@ -68,7 +68,7 @@
       simple to understand and to use.
     </para>
   
  -  <!-- Section ----------------------------------------------------- -->
  +  <!-- Section =============================================================== -->
     
     <sect1>
       <title>Copyright</title>
  @@ -102,7 +102,7 @@
       </para>
     </sect1>
     
  -  <!-- Section ----------------------------------------------------- -->
  +  <!-- Section ========================================================== -->
     <sect1>
       <title>Installing</title>
       
  @@ -123,8 +123,9 @@
       
     </sect1>
     
  -  <!-- Section ----------------------------------------------------- -->
  -  
  +
  +  <!-- Section ========================================================== -->  
  +
     <sect1>
       <title>First baby step</title> 
       
  
  
  
  1.14      +12 -10    jakarta-log4j/src/docbook/manual.xml
  
  Index: manual.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/docbook/manual.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- manual.xml	2001/10/01 21:14:54	1.13
  +++ manual.xml	2001/10/17 20:59:49	1.14
  @@ -1,5 +1,5 @@
   <?xml version='1.0'?>
  -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" [
  +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "docbkx412/docbookx.dtd" [
   <!ENTITY intro SYSTEM "intro.xml">
   <!ENTITY architecture SYSTEM "architecture.xml">
   <!ENTITY conf SYSTEM "configuration.xml">
  @@ -11,6 +11,8 @@
   <!ENTITY trouble SYSTEM "trouble.xml">
   ]>
   
  +<!-- DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" -->
  + 
   <book lang="en">
     <bookinfo>
       <title>log4j manual</title>
  @@ -33,15 +35,15 @@
       </abstract>
     </bookinfo>
     
  -  &intro  
  -  &architecture  
  -  &conf
  -  &defaultInit
  -  &wider
  -  &changes
  -  &faq
  -  &trouble
  -  &glo
  +  &intro;  
  +  &architecture;  
  +  &conf;
  +  &defaultInit;
  +  &wider;
  +  &changes;
  +  &faq;
  +  &trouble;
  +  &glo;
   
   </book>
      
  
  
  
  1.1                  jakarta-log4j/src/docbook/build.xml
  
  Index: build.xml
  ===================================================================
  
  <project name="log4j-docs" default="build-main" basedir=".">
  
  
    <!-- ===================== Initialize Property Values =================== -->
  
    <property name="doc.build"   value="./build"/>
    <property name="doc.name"    value="manual"/>
    
    <!-- ================= BUILD: XML-HTML Generation ======================= -->
    <target name="build-main">
      <!-- Top Level Directory -->
      <style basedir="."
             destdir="${doc.build}/${doc.name}"
             extension=".html"
             style="docbook-xsl-1.45/html/docbook.xsl"
             excludes="build.xml"
             includes="manual.xml">
      </style>
    </target>
  </project>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-cvs-unsubscribe@jakarta.apache.org
For additional commands, e-mail: log4j-cvs-help@jakarta.apache.org