You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by "Voytenko, Dimitry" <DV...@SECTORBASE.COM> on 2000/09/08 03:50:42 UTC

Using of extensions

Does anyone wrote extensions that return result-tree-fragments. For instance
I have xslt fragment
<xsl:variable name="test">
	<my-ext:execute/>
</xsl:variable>

in the case my-ext:execute returns elements so they can be used further for
instance with nodeset extension

<xsl:for-each select="Nodeset:nodeset($test)/tagx">
	............
</xsl:for-each>