D
David Blickstein
Is there a way to test what Version of XSLT the transformer in use supports?
I have a key lookup that I think would run way faster using the V2 forms of
the key() function, but I want my stylesheet to run correctly under V1.
<xsl:choose>
<xsl:when test="This is v2">
.... use v2 features
</xsl:when>
<xsltherwise>
.... use v1 features
</xsltherwise>
</xsl:choose>
I have a key lookup that I think would run way faster using the V2 forms of
the key() function, but I want my stylesheet to run correctly under V1.
<xsl:choose>
<xsl:when test="This is v2">
.... use v2 features
</xsl:when>
<xsltherwise>
.... use v1 features
</xsltherwise>
</xsl:choose>