Re: [xsl] Exsl functions in xslt 2

Subject: Re: [xsl] Exsl functions in xslt 2
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 19 Jan 2004 14:42:18 GMT
> This is great and works well for Saxon 6.5.3 and MSXML 4.  However, I
> would also like it to work with Saxon 7.8 



change the top level xsl:stylesheet to say version="2.0"
and add:

<xsl:function  name="msxsl:node-set" as="document-node()">
<xsl:param name="x"/>
<xsl:sequence select="$x"/>
</xsl:function>

saxon6 and msxml will process in forward-compatible mode and that will
be OK, saxon 7 will define this function as an identity.

It will process in native xslt2 mode which may or may not be OK,
depending on what you are doing, you may need to persuade it back to
backward compatibility mode if that can be done without harming
compatibility. (One way woul dbe to _only-) have the above definition in
the top level xslt2 stylesheet and have taht stylesheet import or
include the previous stylesheet that has a top level version=1.0.

David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread