vmote 2003/07/06 19:09:24
Modified: . build.xml
Added: src/java/org/apache/fop/rtf/rtflib package.html
src/java/org/apache/fop/rtf/rtflib/exceptions package.html
src/java/org/apache/fop/rtf/rtflib/interfaces package.html
src/java/org/apache/fop/rtf/rtflib/rtfdoc package.html
src/java/org/apache/fop/rtf/rtflib/testdocs package.html
src/java/org/apache/fop/rtf/rtflib/tools package.html
Log:
Place RTFLib into its own group for purposes of javadoc generation. Add package.html
files for the RTFLib packages.
Revision Changes Path
1.88 +17 -13 xml-fop/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-fop/build.xml,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- build.xml 4 Jul 2003 20:54:17 -0000 1.87
+++ build.xml 7 Jul 2003 02:09:24 -0000 1.88
@@ -40,8 +40,8 @@
<!-- build-local.properties is not stored in CVS and overrides values from
build.properties -->
<property file="${basedir}/build-local.properties"/>
<property file="${basedir}/build.properties"/>
-
- <property name="optional.lib.dir" value="${basedir}/lib"/>
+
+ <property name="optional.lib.dir" value="${basedir}/lib"/>
<fileset dir="${basedir}" id="dist.bin">
<include name="conf/**"/>
@@ -135,11 +135,11 @@
<include name="**/*.java"/>
<exclude name="**/*${ignore_this}"/>
</patternset>
-
+
<patternset id="graphics-configuration-source">
<include name="org/apache/fop/svg/GraphicsConfiguration.java"/>
</patternset>
-
+
<!-- =================================================================== -->
<!-- Initialization target -->
@@ -244,7 +244,7 @@
<target name="init-avail">
<echo message="${ant.version}"/>
-
+
<available property="jimi.present" classname="com.sun.jimi.core.Jimi"
classpathref="libs-build-classpath"/>
<condition property="jimi.message" value="Jimi Support PRESENT">
@@ -256,7 +256,7 @@
</not>
</condition>
<echo message="${jimi.message}"/>
-
+
<available property="jai.present" classname="javax.media.jai.JAI"
classpathref="libs-build-classpath"/>
<condition property="jai.message" value="JAI Support PRESENT">
@@ -268,7 +268,7 @@
</not>
</condition>
<echo message="${jai.message}"/>
-
+
<available property="jce.present" classname="javax.crypto.Cipher"
classpathref="libs-build-classpath"/>
<condition property="jce.message" value="JCE Support PRESENT">
@@ -280,9 +280,9 @@
</not>
</condition>
<echo message="${jce.message}"/>
-
+
<available property="jdk14.present" classname="java.lang.CharSequence"/>
-
+
<available property="junit.present" classname="junit.framework.TestCase"
classpathref="libs-build-classpath"/>
<condition property="junit.message" value="JUnit Support PRESENT">
@@ -640,7 +640,7 @@
-->
</target>
<target name="junit" depends="package, transcoder-pkg" description="Runs FOP's
JUnit tests" if="junit.present">
- <mkdir dir="${build.dir}/test-classes"/>
+ <mkdir dir="${build.dir}/test-classes"/>
<javac destdir="${build.dir}/test-classes" debug="${debug}"
deprecation="${deprecation}" optimize="${optimize}">
<src path="${basedir}/test/java"/>
<classpath>
@@ -651,7 +651,7 @@
</classpath>
</javac>
<echo message="Running basic functionality tests for fop-transcoder.jar"/>
- <mkdir dir="${build.dir}/test-reports/fop-transcoder"/>
+ <mkdir dir="${build.dir}/test-reports/fop-transcoder"/>
<junit>
<sysproperty key="basedir" value="${basedir}"/>
<formatter type="plain"/>
@@ -669,7 +669,7 @@
</batchtest>
</junit>
<echo message="Running basic functionality tests for
fop-transcoder-allinone.jar"/>
- <mkdir dir="${build.dir}/test-reports/fop-transcoder-allinone"/>
+ <mkdir dir="${build.dir}/test-reports/fop-transcoder-allinone"/>
<junit>
<sysproperty key="basedir" value="${basedir}"/>
<formatter type="plain"/>
@@ -689,7 +689,7 @@
</batchtest>
</junit>
<echo message="Running basic functionality tests for fop.jar"/>
- <mkdir dir="${build.dir}/test-reports/fop"/>
+ <mkdir dir="${build.dir}/test-reports/fop"/>
<junit>
<sysproperty key="basedir" value="${basedir}"/>
<formatter type="plain"/>
@@ -780,6 +780,10 @@
<package name="org.apache.fop.fonts"/>
<package name="org.apache.fop.fonts.*"/>
<package name="org.apache.fop.util"/>
+ </group>
+ <group title="RTFLib (formerly JFor) Subpackage Candidate">
+ <package name="org.apache.fop.rtf.rtflib"/>
+ <package name="org.apache.fop.rtf.rtflib.*"/>
</group>
</javadoc>
</target>
1.1 xml-fop/src/java/org/apache/fop/rtf/rtflib/package.html
Index: package.html
===================================================================
<HTML>
<TITLE>org.apache.fop.rtf.rtflib</TITLE>
<BODY>
<P>Classes used to build RTF documents in a generic way, i.e. they are usable by
systems other than FOP.</P>
</BODY>
</HTML>
1.1
xml-fop/src/java/org/apache/fop/rtf/rtflib/exceptions/package.html
Index: package.html
===================================================================
<HTML>
<TITLE>org.apache.fop.rtf.rtflib.exceptions</TITLE>
<BODY>
<P>Classes handling specialized exceptions that arise during RTF creation.</P>
</BODY>
</HTML>
1.1
xml-fop/src/java/org/apache/fop/rtf/rtflib/interfaces/package.html
Index: package.html
===================================================================
<HTML>
<TITLE>org.apache.fop.rtf.rtflib.interfaces</TITLE>
<BODY>
<P>Interfaces used to build RTF documents.</P>
</BODY>
</HTML>
1.1 xml-fop/src/java/org/apache/fop/rtf/rtflib/rtfdoc/package.html
Index: package.html
===================================================================
<HTML>
<TITLE>org.apache.fop.rtf.rtflib.rtfdoc</TITLE>
<BODY>
<P>Independent subsystem (not specific to FOP) classes that are used to build
RTF documents.</P>
</BODY>
</HTML>
1.1 xml-fop/src/java/org/apache/fop/rtf/rtflib/testdocs/package.html
Index: package.html
===================================================================
<HTML>
<TITLE>org.apache.fop.rtf.rtflib.testdocs</TITLE>
<BODY>
<P>Classes used to test/demonstrate RTFLib capabilities by generating sample
RTF documents.
systems other than FOP.</P>
</BODY>
</HTML>
1.1 xml-fop/src/java/org/apache/fop/rtf/rtflib/tools/package.html
Index: package.html
===================================================================
<HTML>
<TITLE>org.apache.fop.rtf.rtflib.tools</TITLE>
<BODY>
<P>Utility classes used in RTF file generation.</P>
</BODY>
</HTML>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]