[jsword-svn] jsword-support/tools/java2html s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Tue Aug 16 11:03:11 MST 2005
Update of /cvs/jsword/jsword-support/tools/java2html
In directory www.crosswire.org:/tmp/cvs-serv29457/tools/java2html
Added Files:
HOWTO-UPGRADE.txt build.xml
Log Message:
Upgrading jsword-support/tools
--- NEW FILE: build.xml ---
<project name="java2html" default="java2html">
<!-- this should be overridden by the parent file -->
<property name="support.tools" value=".."/>
<taskdef name="java2html" classname="com.java2html.Java2HTMLTask">
<classpath>
<fileset dir="${support.tools}/java2html" includes="**/*.jar"/>
</classpath>
</taskdef>
<target name="java2html" description="HTML versions of the java code">
<mkdir dir="${target.web}/java2html"/>
<java2html title="J-Sword Source"
simple="no"
tabsize="4"
marginsize="4"
header="true"
footer="false"
destination="${target.web}/java2html">
<fileset refid="fileset.alljava"/>
<javadoc localRef="${source.etc}/javadoc" httpRef="http://java.sun.com/j2se/1.4/docs/api/"/>
</java2html>
</target>
</project>
--- NEW FILE: HOWTO-UPGRADE.txt ---
Instructions on how to upgrade java2html.
Obtain the most recent version of java2html from:
http://www.java2html.com
Create a directory in java2html with the name java2html-x.x.x
where x.x.x is the version number of java2html.
Unzip the file into this directory.
In the new directory, remove the following (only j2h.jar is needed):
api_examples
docsapi
*.bat
*.html
j2h
In CVS remove the old java2html directory.
More information about the jsword-svn
mailing list