]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Updated the paths in the Makefile and the customization stylesheets.
authorSimon Pepping <spepping@apache.org>
Sun, 30 Jan 2005 20:00:47 +0000 (20:00 +0000)
committerSimon Pepping <spepping@apache.org>
Sun, 30 Jan 2005 20:00:47 +0000 (20:00 +0000)
Created an Ant build file.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198342 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/DnI/Makefile
src/documentation/content/xdocs/DnI/README
src/documentation/content/xdocs/DnI/build.xml [new file with mode: 0644]
src/documentation/content/xdocs/DnI/cust-fo-docbook.xsl
src/documentation/content/xdocs/DnI/cust-html-docbook.xsl
src/documentation/content/xdocs/DnI/cust-xhtml-docbook.xsl

index 7b3dbd5b413e2b6ee77eb4e2fcf494ee13025d05..c6e1241435247e6c15e842f3004bc6b53b105b6f 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2004 The Apache Software Foundation.
+# Copyright 2004-2005 The Apache Software Foundation.
 # 
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -35,13 +35,14 @@ XHTML_DIR=$(DNI_BUILD_DIR)/xhtml
 HTML_DIR=$(DNI_BUILD_DIR)/html
 PDF_DIR=$(DNI_BUILD_DIR)
 
-JAVACLASSES=/usr/local/javaclasses
-FOPCLASSPATH=$(JAVACLASSES)/fop-0.20.5.jar
-AVALONCLASSPATH=$(JAVACLASSES)/avalon-framework-cvs-20020806.jar
-SAXONCLASSPATH=$(JAVACLASSES)/saxon.jar
-RESOLVERCLASSPATH=$(JAVACLASSES)/endorsed/resolver-xml-commons.jar
-XERCESCLASSPATH=$(JAVACLASSES)/endorsed/xml-apis.jar:$(JAVACLASSES)/endorsed/xercesImpl.jar
-CLICLASSPATH=$(JAVACLASSES)/commons-cli-1.0.jar
+JAVACLASSES=/usr/share/java
+LOCALJAVACLASSES=/usr/local/javaclasses
+FOPCLASSPATH=$(JAVACLASSES)/fop.jar:$(LOCALJAVACLASSES)/fop.jar
+AVALONCLASSPATH=$(JAVACLASSES)/avalon-framework.jar:$(LOCALJAVACLASSES)/avalon-framework.jar
+SAXONCLASSPATH=$(JAVACLASSES)/saxon.jar:$(LOCALJAVACLASSES)/saxon.jar
+RESOLVERCLASSPATH=$(JAVACLASSES)/xml-commons-resolver.jar:$(LOCALJAVACLASSES)/xml-commons-resolver.jar
+XERCESCLASSPATH=$(JAVACLASSES)/xml-apis.jar:$(JAVACLASSES)/xercesImpl.jar:$(LOCALJAVACLASSES)/xml-apis.jar:$(LOCALJAVACLASSES)/xercesImpl.jar
+CLICLASSPATH=$(JAVACLASSES)/commons-cli.jar:$(LOCALJAVACLASSES)/commons-cli.jar
 
 all: xhtml html pdf
 
index 16e4f1d0a0c71d3215562ae955e88f18d91accb9..a021880e9c296c9c8b059de7d3936f209f5d48b9 100644 (file)
@@ -33,23 +33,31 @@ results using Saxon. I have used FOP-0.20.5 for FO Processor.
 The top-level file assumes that the docbook DTD files are located in
 `http://www.oasis-open.org/docbook/xml/4.2/'. The customization
 stylesheets assume that the docbook stylesheets are located in
-`http://cvs.sourceforge.net/viewcvs.py/*checkout*/docbook/xsl/'. I am
-not quite sure if the latter URL is correct. If you want to use local
-files from your XML installation, you must change these paths at the
-top of the top-level XML file and of each customization stylesheet.
-Alternatively, you can use catalog entries to map the Public ID for
-the Docbook DTD and the system id of the docbook XSL stylesheets to
-your local paths.
+`http://docbook.sourceforge.net/release/xsl/current/'. If you want to
+use local files from your XML installation, you must change these
+paths at the top of the top-level XML file and of each customization
+stylesheet.  Alternatively, you can use catalog entries to map the
+Public ID for the Docbook DTD and the system id of the docbook XSL
+stylesheets to your local paths.
 
 You can use the included java class BookMaker to generate the various
 forms of the documentation. Note that it requires the Jakarta Commons
 CLI package. Call BookMaker with the option '--help' to get a short
-overview of its usage. Use the included Makefile, or learn from it how
-the BookMaker class can be called. If you use the Makefile, you must
-edit the class paths to reflect your java setup. Set the environment
-variable PROGOPTS=--useCatalog if you want to use a catalog. I have
-better results with Xerces and the catalog resolver; therefore Xerces
-is placed before Saxon in the class paths.
+overview of its usage. Use the included Makefile or Ant build file, or
+learn from them how the BookMaker class can be called.
+
+Unfortunately, I do not know of a standard file system setup for java
+jar files. The class paths in the Makefile reflect the java setup of a
+Debian Sarge system. Moreover, it allows for the same setup in
+/usr/local, for jar files installed locally. If you use the Makefile,
+you must edit the class paths to reflect your own java setup. If you
+want to use a catalog with the Makefile, you should set the
+environment variable PROGOPTS=--useCatalog. I have better results
+with Xerces and the catalog resolver; therefore Xerces is placed
+before Saxon in the class paths.
+
+For instructions to use the Ant build file, see the comments at the
+top of that file.
 
 If you do not use a catalog, you can also use Saxon and FOP from the
 command line. The following are typical invocations. Here the
@@ -71,7 +79,4 @@ java $JAVAFLAGS \
        org.apache.fop.apps.Fop \
        -xml DnI.xml -xsl cust-html-docbook.xsl -pdf book.pdf
 
-I will try to construct an ant build file and an XML catalog which
-make conversion with your own XML and Java system easier.
-
 $Id$
diff --git a/src/documentation/content/xdocs/DnI/build.xml b/src/documentation/content/xdocs/DnI/build.xml
new file mode 100644 (file)
index 0000000..ae34c59
--- /dev/null
@@ -0,0 +1,202 @@
+<?xml version="1.0"?>
+<!--
+  Copyright 2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- ===========================================================================
+
+                           * ================== *
+                           |  FOP build system  |
+                           |    DnI subsystem   |
+                           * ================== *
+
+
+Building instructions
+=====================
+
+Unfortunately, I do not know of a standard file system setup for java
+jar files. The class paths in this Ant build file reflect the java
+setup of a Debian Sarge system. If you use this Ant build file, you
+must change the appropriate variables to reflect your own java
+setup. This can be done in a file build-local.properties. For the relevant
+variables and their default values, see below, under the comment `jar
+files'.
+
+If you want to use a catalog, set the property usecatalog to
+true. Make sure the file CatalogManager.properties can be found along
+the class path. I have better results with Xerces and the catalog
+resolver; therefore Xerces is placed before Saxon in the class paths.
+
+Make sure your current working directory is where this very file is
+located. Then give the command `ant' to build all, or `ant target' to
+build target. Use the command `ant -projecthelp' for a list of
+available commands.
+
+     ====================================================================== -->
+
+<project name="DnI" default="all" basedir=".">
+
+       <!-- used to set values for testing etc. -->
+       <!-- build-local.properties is not stored in CVS and overrides values from build.properties -->
+       <property file="${basedir}/build-local.properties"/>
+
+       <property name="book" value="DnI.xml"/>
+       <property name="custom_docbook_xhtml_stylesheet" value="cust-xhtml-docbook.xsl"/>
+       <property name="custom_docbook_html_stylesheet" value="cust-html-docbook.xsl"/>
+       <property name="custom_docbook_fo_stylesheet" value="cust-fo-docbook.xsl"/>
+       
+       <!-- destinations -->
+       <property name="build_dir" value="../../../../../build"/>
+       <property name="bookmakerclasspath" value="${build_dir}/classes"/>
+       <property name="dni_build_dir" value="${build_dir}/site/DnI"/>
+       <property name="xhtml_dir" value="${dni_build_dir}/xhtml"/>
+       <property name="pdf_dir" value="${dni_build_dir}"/>
+       
+       <!-- jar files -->
+       <property name="javaclasses" value="/usr/share/java"/>
+    <!-- the following should be FOP Maintenance -->   
+       <property name="fop-jar" value="${javaclasses}/fop.jar"/>
+    <property name="avalon-framework-jar" value="${javaclasses}/avalon-framework.jar"/>
+    <property name="saxon-jar" value="${javaclasses}/saxon.jar"/>
+       <property name="xml-commons-resolver-jar" value="${javaclasses}/xml-commons-resolver.jar"/>
+       <property name="xercesImpl-jar" value="${javaclasses}/xercesImpl.jar"/>
+       <property name="xml-apis-jar" value="${javaclasses}/xml-apis.jar"/>
+    <property name="commons-cli-jar" value="${javaclasses}/commons-cli.jar"/>
+       <!-- needed for the CatalogManager.properties file -->
+       <property name="catalog-manager" value="/etc/xml/resolver"/>
+    <path id="transformer-path">
+        <pathelement path="${xml-apis-jar}"/>
+        <pathelement path="${xercesImpl-jar}"/>
+        <pathelement path="${saxon-jar}"/>
+        <pathelement path="${avalon-framework-jar}"/>
+        <pathelement path="${xml-commons-resolver-jar}"/>
+        <pathelement path="${commons-cli-jar}"/>
+        <pathelement path="${bookmakerclasspath}"/>
+        <pathelement path="${catalog-manager}"/>
+    </path>   
+       
+    <!-- ================================= 
+          target: all              
+         ================================= -->
+    <target name="all" depends="html, xhtml, pdf"
+            description="builds HTML, XHTML and PDF"/>
+
+    <!-- - - - - - - - - - - - - - - - - - 
+          target: bookmaker                      
+         - - - - - - - - - - - - - - - - - -->
+    <target name="bookmaker">
+        <echo message="Building Bookmaker"/>
+       <mkdir dir="${bookmakerclasspath}"/>
+               <javac srcdir="${basedir}" includes="BookMaker.java" destdir="${bookmakerclasspath}" debug="1">
+                       <classpath>
+                               <pathelement path="${fop-jar}"/>
+                               <pathelement path="${avalon-framework-jar}"/>
+                               <pathelement path="${xml-commons-resolver-jar}"/>
+                               <pathelement path="${commons-cli-jar}"/>
+                               <pathelement path="${catalog-manager}"/>
+                       </classpath>
+               </javac>
+       </target>
+
+       <!-- - - - - - - - - - - - - - - - - - 
+          target: html                      
+         - - - - - - - - - - - - - - - - - -->
+    <target name="html" depends="bookmaker"
+            description="builds the HTML version">
+       <property name="html_dir" value="${dni_build_dir}/html"/>
+       <property name="usecatalog" value="false"/>
+       <property name="javaflags" value="-Dno.option=none"/>
+       <condition property="progopts" value="--useCatalog">
+               <istrue value="${usecatalog}"/>
+       </condition>
+               <property name="progopts" value=""/>
+       <echo message="Building HTML"/>
+        <mkdir dir="${html_dir}"/>
+               <java className="BookMaker" fork="true" dir="${basedir}">
+                       <jvmarg value="${javaflags}"/>
+                       <arg line="${progopts} --parameter base.dir ${html_dir}/ -xml ${book} -xsl ${custom_docbook_html_stylesheet} -out ${html_dir}/DnI.html"/>
+                       <classpath refid="transformer-path"/>
+               </java>
+    </target>
+
+    <!-- - - - - - - - - - - - - - - - - - 
+          target: xhtml                      
+         - - - - - - - - - - - - - - - - - -->
+    <target name="xhtml" depends="bookmaker"
+            description="builds the XHTML version">
+        <property name="xhtml_dir" value="${dni_build_dir}/xhtml"/>
+        <property name="usecatalog" value="false"/>
+        <property name="javaflags" value="-Dno.option=none"/>
+        <condition property="progopts" value="--useCatalog">
+            <istrue value="${usecatalog}"/>
+        </condition>
+        <property name="progopts" value=""/>
+        <echo message="Building XHTML"/>
+        <mkdir dir="${xhtml_dir}"/>
+        <java className="BookMaker" fork="true" dir="${basedir}">
+            <jvmarg value="${javaflags}"/>
+            <arg line="${progopts} --parameter base.dir ${xhtml_dir}/ -xml ${book} -xsl ${custom_docbook_xhtml_stylesheet} -out ${xhtml_dir}/DnI-xhtml.xml"/>
+            <classpath refid="transformer-path"/>
+        </java>
+    </target>
+
+    <!-- - - - - - - - - - - - - - - - - - 
+          target: fo                      
+         - - - - - - - - - - - - - - - - - -->
+    <target name="fo" depends="bookmaker"
+            description="builds the FO file for the printed version">
+        <property name="fo_dir" value="${dni_build_dir}"/>
+        <property name="usecatalog" value="false"/>
+        <property name="javaflags" value="-Dno.option=none"/>
+        <condition property="progopts" value="--useCatalog">
+            <istrue value="${usecatalog}"/>
+        </condition>
+        <property name="progopts" value=""/>
+        <echo message="Building FO"/>
+        <mkdir dir="${fo_dir}"/>
+        <java className="BookMaker" fork="true" dir="${basedir}">
+            <jvmarg value="${javaflags}"/>
+            <arg line="${progopts} -xml ${book} -xsl ${custom_docbook_fo_stylesheet} -out ${fo_dir}/DnI.fo"/>
+            <classpath refid="transformer-path"/>
+        </java>
+    </target>
+
+    <!-- - - - - - - - - - - - - - - - - - 
+          target: pdf                      
+         - - - - - - - - - - - - - - - - - -->
+    <target name="pdf" depends="bookmaker"
+            description="builds the PDF file of the printed version">
+        <property name="pdf_dir" value="${dni_build_dir}"/>
+        <property name="usecatalog" value="false"/>
+        <property name="javaflags" value="-Dno.option=none"/>
+        <condition property="progopts" value="--useCatalog">
+            <istrue value="${usecatalog}"/>
+        </condition>
+        <property name="progopts" value=""/>
+        <echo message="Building PDF"/>
+        <mkdir dir="${pdf_dir}"/>
+        <java className="BookMaker" fork="true" dir="${basedir}">
+            <jvmarg value="${javaflags}"/>
+            <arg line="${progopts} -xml ${book} -xsl ${custom_docbook_fo_stylesheet} -pdf ${pdf_dir}/DnI.pdf"/>
+            <classpath>
+                <pathelement path="${fop-jar}"/>
+                <!-- note that FOP HEAD is in the transformer path; FOP Maintenance must come first -->
+                <path refid="transformer-path"/>
+            </classpath>
+        </java>
+    </target>
+
+</project>
+
index 503b0a81cef1db31b79b99703fdcf9d650fd74f1..5cb0d063a620ec1eddf63edaebb43a7ef9914ce6 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  * Copyright 2004 The Apache Software Foundation.
+  * Copyright 2004-2005 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@
   version="1.0">
 
   <xsl:import
-    href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/docbook/xsl/fo/docbook.xsl"/>
+    href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
 
   <!-- Add other variable definitions here -->
   <xsl:variable name="paper.type" select="'A4'"/>
index ce688571ea5eb8358546292f8ce7869c8592bab4..7bad087728c57aa58dd170e20324cf4fcc465f28 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  * Copyright 2004 The Apache Software Foundation.
+  * Copyright 2004-2005 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   version="1.0">
 
   <xsl:import
-    href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/docbook/xsl/html/chunk.xsl"/>
+    href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
   <!-- Use this import if you do not want chunks -->
   <!-- 
   <xsl:import
-    href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/docbook/xsl/html/docbook.xsl"/> 
+    href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/> 
 -->
 
   <xsl:param name="chunk.section.depth" select="2"/>
index 0bfb38d6dc6619e93c3e522f8cf7afcb8412b978..764e99eb9aeb4aa0283e83ea94d293b5ca059810 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  * Copyright 2004 The Apache Software Foundation.
+  * Copyright 2004-2005 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   version="1.0">
 
   <xsl:import
-    href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/docbook/xsl/xhtml/chunk.xsl"/>
+    href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
 
   <!-- Use this import if you do not want chunks -->
   <!-- 
   <xsl:import
-    href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/docbook/xsl/xhtml/docbook.xsl"/> 
+    href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/> 
 -->
 
   <xsl:param name="chunker.output.encoding" select="'UTF-8'"/>