|
Subject: Re: [xsl] recursive loop in XSL stylesheet is failing From: David Carlisle <davidc@xxxxxxxxx> Date: Thu, 25 Mar 2010 17:29:42 +0000 |
Thanks. I intend to get following output: 02/10/2010;Illness expenses:Pharmacy;Test Pharmacy, Oakland;-19.1;
There may be another parent category where "Illness expenses" belongs to, lets say "George". Then the output should be as follows: 02/10/2010;George:Illness expenses:Pharmacy;Test Pharmacy, Oakland;-19.1;
Thanks in advance, George
<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:apply-templates select="key('c',CategoryID,$c)"/>
<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:apply-templates select="key('c',@ParentID,$c)"/>
<xsl:text>;</xsl:text>
<xsl:value-of select="en"/>
</xsl:template>ash-3.2$ saxon9 g.xml g.xsl <?xml version="1.0" encoding="UTF-8"?>
02/10/2010;Illness expenses;Pharmacy;Test Pharmacy, Oakland;-19.1 ...
________________________________________________________________________ The Numerical Algorithms Group Ltd is a company registered in England and Wales with company number 1249803. The registered office is: Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
| 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, David Carlisle | Date | Re: [xsl] recursive loop in XSL sty, Wendell Piez |
| Month |