Menu

#4 generate-id function

open
nobody
None
5
2008-12-01
2008-12-01
No

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>

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.