1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:f="http://exslt.org/functions"
extension-element-prefixes="f">
<f:function name="f:f1">
<xsl:param name="n"/>
<xsl:for-each select="namespace::*">
<xsl:sort/>
</xsl:for-each>
<xsl:choose>
<xsl:when test="$n > 0">
<f:result select="f:f1($n - 1)"/>
</xsl:when>
<xsl:otherwise>
<f:result select="1"/>
</xsl:otherwise>
</xsl:choose>
</f:function>
<f:function name="f:f2">
<xsl:for-each select="namespace::*">
<xsl:sort/>
</xsl:for-each>
<f:result select="1"/>
</f:function>
<f:function name="f:f3">
<xsl:for-each select="namespace::*">
<xsl:sort/>
</xsl:for-each>
<f:result>
<xsl:number/>
</f:result>
</f:function>
<f:function name="f:f4">
<xsl:for-each select="namespace::*">
<xsl:sort/>
</xsl:for-each>
<f:result>
<xsl:apply-templates/>
</f:result>
</f:function>
<f:function name="f:f5">
<xsl:for-each select="namespace::*">
<xsl:sort/>
</xsl:for-each>
<f:result select="key('xxx', 'yyy')"/>
</f:function>
<xsl:template match="/*">
<xsl:value-of select="f:f1(4)"/>
<xsl:value-of select="f:f2()"/>
<xsl:value-of select="f:f3()"/>
<xsl:value-of select="f:f4()"/>
<xsl:value-of select="f:f5()"/>
</xsl:template>
</xsl:stylesheet>
|