OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: 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



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]