Re: [docbook-apps] Generate HTML 3.2 for displaying in Java application

From
Thomas Singer <>
Date
2003-09-15T12:01:17+00:00
ID
Thread
Re: [docbook-apps] Generate HTML 3.2 for displaying in Java application
> The javahelp.xsl stylesheet generates HTML chunks, but in the  
> buildfile a single HTML output file is specified. 
> 
> I suggest you use the regular docbook.xsl stylesheet if you do not want chunks.
> If you want chunks, use chunk.xsl. You can set an output directory with the base.dir parameter.

Thanks for the hint with the junks, now it works using this task:

	<java classname="com.icl.saxon.StyleSheet" fork="yes" 
dir="${dist}/javahelp">
		<arg value="../../${src}/${document.name}.xml"/>
		<arg value="../../${stylesheet}/javahelp.xsl"/>

		<classpath>
			<path refid="classpath.saxon"/>
		</classpath>
	</java>

Cheers,
Tom