|
Subject: Re: [xsl] recursive loop in XSL stylesheet is failing From: David Carlisle <davidc@xxxxxxxxx> Date: Thu, 25 Mar 2010 21:19:07 +0000 |
<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>| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] recursive loop in XSL sty, George | Thread | Re: [xsl] recursive loop in XSL sty, George |
| Re: [xsl] recursive loop in XSL sty, George | Date | Re: [xsl] recursive loop in XSL sty, George |
| Month |