xsl-list
[Top] [All Lists]

RE: Is it possible to modify the source-tree?

2005-09-13 11:48:28
Pardon my ignorance, but I'm not familiar with this
"xx:node-set()" call. Do I have to use oraxslt2 like
David said or can I continue to use Saxon8B?

As Mike Kay said,

In 2.0 you don't need the calls on xx:node-set().

Since Saxon 8 is an XSLT 2.0 processor, you can drop the xx:node-set() 
extension function.

So, for example,

<xsl:variable name="v2">
  <xsl:apply-templates select="xx:node-set($v1)" mode="phase2"/>
</xsl:variable> 

can be 

<xsl:variable name="v2">
  <xsl:apply-templates select="$v1" mode="phase2"/>
</xsl:variable> 

Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)

--~------------------------------------------------------------------
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>
--~--