But there are some remaining issues to deal with:
* there is no xslt template to deal with <collabname>, thus making the frontpage very ugly with <collabname> written in red.
I beleive I have added the right instructions to the README now so with that XSL shippet the collabname will be properly printed. I suggest you try it out with a very limited manual (ie. put most of the manual.xml file to an XML comment, and then run the xsl build to see if it works out).
Yes, it works.
* the DOCTYPE should be added automatically. Maybe some xslt tweaking can solve this problem?
I remember there used to be some problems with the doctype. In the current XSL sheets (latest phpdoc CVS), there are the following parameters:
chunker.output.doctype-public chunker.output.doctype-system
which can define the two components of the doctype used in chunking. Could you please check if these params are available in the XSL used to generate the htmlhelp output.
I think not, althought I'm not expert in XSL. I've added this to common.xsl: <xsl:param name="chunker.output.doctype-system" select="'XHTML'"/> <xsl:param name="chunker.output.doctype-public" select="'bsah public'"/>
And it didn't added the doctype to the files. Or do I need to add anything else?
(I've run a grep in the old xsl dir and I've found nothing, so I suppose it isn't supported?..)
Nuno