keiron      01/09/10 04:32:13

  Modified:    docs/design README areas.xml build.sh build.xml fop.xml
                        optimise.xml useragent.xml
  Log:
  some minor updates, no longer need ant optional
  
  Revision  Changes    Path
  1.2       +5 -1      xml-fop/docs/design/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/design/README,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- README    2001/09/07 11:33:46     1.1
  +++ README    2001/09/10 11:32:13     1.2
  @@ -2,10 +2,14 @@
   http://sourceforge.net/projects/docbook
   
   To convert to pdf:
  -- place the docbook files in a directory name "docbook"
  +- place the docbook files in a directory named "docbook"
  +download and unzip the docbook distribution into the
  +directory <cvs>/docs/design/dockbook/
  +
   - place docbookx package in a directory name "docbookx"
   the files are avaialable here:
   http://www.oasis-open.org/docbook/xml/4.1.2/index.shtml
  +
   
   - run the build script
   
  
  
  
  1.2       +4 -1      xml-fop/docs/design/areas.xml
  
  Index: areas.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/design/areas.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- areas.xml 2001/09/07 11:33:46     1.1
  +++ areas.xml 2001/09/10 11:32:13     1.2
  @@ -7,7 +7,10 @@
   for similar areas and groups of areas.
     </para>
     <para>
  -
  +Since the area tree will be used during the layout by the layout managers
  +it will need to store information that affects the layout. The information
  +such as spacing and keeps will be held in such a way that it can be
  +discarded once the layout is finalised.
     </para>
   
   </section>
  
  
  
  1.2       +5 -5      xml-fop/docs/design/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/design/build.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.sh  2001/09/07 11:33:46     1.1
  +++ build.sh  2001/09/10 11:32:13     1.2
  @@ -1,9 +1,10 @@
   #! /bin/sh
  -# $Id: build.sh,v 1.1 2001/09/07 11:33:46 keiron Exp $
  +# $Id: build.sh,v 1.2 2001/09/10 11:32:13 keiron Exp $
   
  -LIBDIR=../../lib  
  +LIBDIR=../../lib
   TARGET_CLASSPATH=$LIBDIR/ant.jar:\
   $LIBDIR/buildtools.jar:\
  +$LIBDIR/xalan-2.0.0.jar:\
   $LIBDIR/xalan-1.2.2.jar:\
   $LIBDIR/xerces-1.2.3.jar:\
   $LIBDIR/bsf.jar:\
  @@ -11,7 +12,6 @@
   $LIBDIR/logkit-1.0b4.jar:\
   $LIBDIR/avalon-framework-4.0.jar:\
   $LIBDIR/batik.jar:\
  -$LIBDIR/optional.jar:\
   $LIBDIR/jimi-1.0.jar:
   
   if [ "$JAVA_HOME" != "" ] ; then
  @@ -19,5 +19,5 @@
   else
      echo "Error: The JAVA_HOME environment variable is not set."
   fi
  -            
  -java -classpath $TARGET_CLASSPATH -Djboss.home=$JBOSS_HOME 
org.apache.tools.ant.Main $*
  +
  +java -classpath $TARGET_CLASSPATH org.apache.tools.ant.Main $*
  
  
  
  1.2       +6 -0      xml-fop/docs/design/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/design/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 2001/09/07 11:33:46     1.1
  +++ build.xml 2001/09/10 11:32:13     1.2
  @@ -12,6 +12,7 @@
        
                <property name="lib.dir" value="${basedir}/lib"/>
   
  +      <taskdef name="xslt" classname="org.apache.fop.tools.anttasks.Xslt"/>
         <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop"/>
       </target>
     
  @@ -42,11 +43,16 @@
     <target name="pdf" depends="prepare">
       <echo message="Building pdf documentation. Please wait ..."/>
       <delete file="fop.fo"/>
  +    <xslt infile="fop.xml" xsltfile="docbook/fo/docbook.xsl"
  +        dependent="fop.xml"
  +        outfile="fop.fo" smart="yes"/>
  +<!--
       <style basedir="./" 
              destdir="./" 
              style="docbook/fo/docbook.xsl" 
              extension=".fo" 
              includes="fop.xml"/>
  +-->
       <fop fofile="fop.fo" pdffile="fop.pdf"/>
   <!--    <delete file="fop.fo"/>-->
     </target>
  
  
  
  1.2       +1 -1      xml-fop/docs/design/fop.xml
  
  Index: fop.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/design/fop.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fop.xml   2001/09/07 11:33:47     1.1
  +++ fop.xml   2001/09/10 11:32:13     1.2
  @@ -23,7 +23,7 @@
     <title>Areas</title>
   &areas.xml;
   </chapter>
  -<chapter id="areas">
  +<chapter id="optimise">
     <title>Optimising</title>
   &optimise.xml;
   </chapter>
  
  
  
  1.2       +2 -2      xml-fop/docs/design/optimise.xml
  
  Index: optimise.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/design/optimise.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- optimise.xml      2001/09/07 11:33:47     1.1
  +++ optimise.xml      2001/09/10 11:32:13     1.2
  @@ -1,5 +1,5 @@
   <?xml version = "1.0" encoding = "UTF-8"?>
  -<section id="optimise">
  +<section id="optimisations">
    <title>Process Optimisations</title>
        <para>
   FOP should be able to handle very large documents. A document can be
  @@ -30,7 +30,7 @@
     <para>
   Line areas can be optimised once the layout for the line has
   been finalised. Consecutive characters with the same properties
  -can be combined into a "word" to hold the infomration with
  +can be combined into a "word" to hold the information with
   limited overhead.
     </para>
   
  
  
  
  1.2       +5 -1      xml-fop/docs/design/useragent.xml
  
  Index: useragent.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/design/useragent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- useragent.xml     2001/09/07 11:33:47     1.1
  +++ useragent.xml     2001/09/10 11:32:13     1.2
  @@ -13,6 +13,10 @@
   The user agent must be available to the layout processor and
   the renderer. Users can supply their own user agent or use
   the default one for a particular renderer.
  +  </para>
  +  <para>
  +The user agent needs to be made available to the property
  +resolution layout process and the renderer.
        </para>
   
     <para>
  @@ -35,7 +39,7 @@
          </para></listitem>
          <listitem><para>
   the width (in inline-progression-dimension) of a character with
  -trea-word-as-space true
  +treat-word-as-space true
          </para></listitem>
          <listitem><para>
   maximum space used by conditional areas from region-reference-area
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to