Hi George,
Thank you very much! I'm using the line you suggested and this is working fine now.
Do you know if there is another parameter for the diagram generator to get chunking support? The generateChunks="true" parameter does not have any effect on the image generator.
The problem is that he is creating links like
"myschema.xsd.html#type_MyType"
in the .map file for the image maps. For one big html file this is ok, but if you enable chunking the link should rather look like this:
'myschema.xsd.html_type_MyType.html#type_MyType".
BTW, the integrated documentation generator in oXygen does this correctly.
The modified xs3p.xsl is an XSLT 2.0 stylesheet so you need to use from ant an XSLT 2.0 processor like Saxon 8 for instance. From ant you get by default an XSLT 1.0 processor, thus the errors you got.
Thanks for pointing me to the right direction. Actually there is a parameter for ant to specify the xslt processor. I'm using this line in my build.xml, just in case someone else is running into the same issue:
- Code: Select all
<xslt basedir="." destdir="${target-dir}" extension=".html" style="${original-loc}/${xslt-file}" classpath="..\..\..\lib\saxon8.jar">
Thanks,
Oliver