I use document('') only to perform call-template by it's name, through
variable
<xsl:template name="ra:sayHello"
match="xsl:template[(_at_)name='ra:sayHello']">
<xsl:text>Hello!</xsl:text>
</xsl:template>
...
<xsl:variable name="n" select='ra:sayHello'/>
<xsl:apply-templates select="document('')/*/xsl:template[(_at_)name=$n]">
Is there in XSLT 2.0 any alternatives to this technique?
<xsl:template mode="call" match="ra:sayHello">
<xsl:call-template name="ra:sayHello"/>
</xsl:template>
<xsl:template name="ra:sayHello">
<xsl:text>Hello!</xsl:text>
</xsl:template>
...
<xsl:variable name="n" as="element()">
<ra:sayHello/>
</xsl:variable>
<xsl:apply-templates mode="call" select="$n"/>
--
Vladimir Nesterovsky
http://www.nesterovsky-bros.com
--~------------------------------------------------------------------
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>
--~--