xsl-list
[Top] [All Lists]

Re: [xsl] does instant saxon 6.5.3 support xsl:result-document ?

2007-07-22 05:49:03
With saxon 6.5.3, you can also use "xsl:document" to output multiple documents as long as you change the "version" to 1.1 as follows:

<xsl:stylesheet version="1.1" xmlns:xsl=http://www.w3.org/1999/XSL/Transform...
                                  ^^^^
Then, you can do something like:

<xsl:document href="{$filename}" method="html">
   ...
</xsl:document>

But as David suggested you should seriously consider using XSLT2.0 (and using saxon 8 instead of saxon 6...)

...sam


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--