diff options
-rw-r--r-- | build.xml | 48 | ||||
-rw-r--r-- | src/java/org/apache/fop/overview.html | 7 |
2 files changed, 50 insertions, 5 deletions
@@ -130,6 +130,7 @@ list of possible build targets. <tstamp/> <property name="Name" value="Fop"/> <property name="name" value="fop"/> + <property name="NAME" value="FOP"/> <property name="version" value="1.0dev"/> <filter token="version" value="${version}"/> <property name="year" value="1999-2003"/> @@ -576,15 +577,58 @@ list of possible build targets. classpathref="libs-build-classpath" author="true" version="true" - windowtitle="${Name} API" - doctitle="${Name}" + windowtitle="${NAME} API" + doctitle="Formatting Objects Processor (FOP)" bottom="Copyright © ${year} Apache Software Foundation. All Rights Reserved." overview="${src.dir}/java/org/apache/fop/overview.html" + use="true" failonerror="true"> <sourcepath> <pathelement path="${src.java}"/> <pathelement path="${build.gensrc}"/> </sourcepath> + <group title="Control and Startup"> + <package name="org.apache.fop.apps"/> + <package name="org.apache.fop.configuration"/> + <package name="org.apache.fop.messaging"/> + <package name="org.apache.fop.servlet"/> + </group> + <group title="XSL-FO Tree"> + <package name="org.apache.fop.fo"/> + <package name="org.apache.fop.fo.*"/> + <package name="org.apache.fop.datatypes"/> + <package name="org.apache.fop.extensions"/> + </group> + <group title="Layout"> + <package name="org.apache.fop.layoutmgr"/> + <package name="org.apache.fop.layoutmgr.*"/> + <package name="org.apache.fop.layout"/> + <package name="org.apache.fop.layout.*"/> + </group> + <group title="Area Tree"> + <package name="org.apache.fop.area"/> + <package name="org.apache.fop.area.*"/> + </group> + <group title="Paginated Rendering"> + <package name="org.apache.fop.render"/> + <package name="org.apache.fop.render.*"/> + <package name="org.apache.fop.viewer"/> + </group> + <group title="Structural Rendering"> + <package name="org.apache.fop.rtf.renderer"/> + </group> + <group title="Utility"> + <package name="org.apache.fop.pdf"/> + <package name="org.apache.fop.mif"/> + <package name="org.apache.fop.tools"/> + <package name="org.apache.fop.tools.*"/> + <package name="org.apache.fop.svg"/> + <package name="org.apache.fop.image"/> + <package name="org.apache.fop.image.*"/> + <package name="org.apache.fop.fonts"/> + <package name="org.apache.fop.fonts.*"/> + <package name="org.apache.fop.util"/> + </group> </javadoc> </target> diff --git a/src/java/org/apache/fop/overview.html b/src/java/org/apache/fop/overview.html index af1f3c055..5e22c3235 100644 --- a/src/java/org/apache/fop/overview.html +++ b/src/java/org/apache/fop/overview.html @@ -1,9 +1,10 @@ <HTML> <TITLE>FOP Overview</TITLE> <BODY> -<P>FOP is an XSL formatter and renderer that works with an XSLT transformer to -produce PDF (and eventually other output formats) from XML documents.</P> +<P>FOP formats and renders XSL-FO input into a variety of output formats, +including PDF and PostScript.</P> -<P>To get an overview of the FOP process, begin with the class <A HREF="org/apache/fop/apps/Driver.html">org.apache.fop.apps.Driver</A>.</P> +<P>To more information, including general documentation, go to the <A +href="http://xml.apache.org/fop" target="fop-home">FOP Home Page</A>.</P> </BODY> </HTML>
\ No newline at end of file |