generate-id function
Status: Beta
Brought to you by:
dnovatchev
I found out that there is no FXSL implementation of the generate-id function. If you want to add one, feel free to copy/paste the following code:
<xsl:function name="f:generate-id" as="element()">
<f:generate-id/>
</xsl:function>
<xsl:template match="f:generate-id" mode="f:FXSL">
<xsl:param name="arg1"/>
<xsl:sequence select="f:generate-id($arg1)"/>
</xsl:template>
<xsl:function name="f:generate-id">
<xsl:param name="node"/>
<xsl:sequence select="generate-id($node)"/>
</xsl:function>