> -----Original Message----- > From: Kerry, Richard > > My error messages are as follows : > > C:\Projects\Documentation>set > CLASSPATH=C:/Downloads/Saxon/saxonb9-0-0-1j/saxon9.jar > > C:\Projects\Documentation>java net.sf.saxon.Transform > -s:Proliant.dbk > -xsl:C:\Downloads\DocBook\docbook-xsl-1.73.2\html\chunk.xsl > base.dir=ProliantDocumentationChunked/ > Warning: at xsl:stylesheet on line 4 of > file:/C:/Downloads/DocBook/docbook-xsl-1 > <file:///C:/Downloads/DocBook/docbook-xsl-1> .73.2/html/chunk.xsl: > Running an XSLT 1.0 stylesheet with an XSLT 2.0 processor
The standard DocBook XSL stylesheets are written in XSLT 1.0 and designed to be processed by an XSLT 1.0 processor. Saxon 9 is an implementation of XSLT 2.0, and it is not guaranteed to work with those stylesheets. You should use an XSLT 1.0 processor, such as Saxon 6.5.5. (There is an experimental and incomplete set of DocBook stylesheets implemented in XSLT 2.0, but they have not been officially released. See http://www.docbook.org/docs/howto/#dbxsl2.) /MJ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
