[Home] [By Thread] [By Date] [Recent Entries]
On 25/03/2010 20:38, George wrote:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">There is one tiny little bit that I want to change. On the output the categories start with a colon: <xsl:key name="c" match="Category" use="@ID"/>
<xsl:variable name="c" select="document('Categories.xml')"/>
<xsl:template match="Entry">
<xsl:text> </xsl:text>
<xsl:value-of select="Date"/>
<xsl:text>;</xsl:text>
<xsl:variable name="cid" select="CategoryID"/>
<xsl:for-each select="$c">
<xsl:apply-templates select="key('c',$cid)"/>
</xsl:for-each>
<xsl:text>;</xsl:text>
<xsl:value-of select="Recipient"/>
<xsl:text>;</xsl:text>
<xsl:value-of select="Value"/>
</xsl:template><xsl:template match="Category">
<xsl:variable name="cid" select="@ParentID"/>
<xsl:for-each select="$c">
<xsl:apply-templates select="key('c',$cid)"/>
<xsl:if test="key('c',$cid)">:</xsl:if>
</xsl:for-each>
<xsl:value-of select="en"/>
</xsl:template></xsl:stylesheet>
|

Cart



