Browse Source

Enhancements for javadocs.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196354 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
William Victor Mote 21 years ago
parent
commit
d874ac0358
2 changed files with 50 additions and 5 deletions
  1. 46
    2
      build.xml
  2. 4
    3
      src/java/org/apache/fop/overview.html

+ 46
- 2
build.xml View File

@@ -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 &#169; ${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>


+ 4
- 3
src/java/org/apache/fop/overview.html View File

@@ -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>

Loading…
Cancel
Save