numbering sorted list

Subject: numbering sorted list
From: Marko Draisma <mdraisma@xxxxxxxxxxx>
Date: Sun, 30 Apr 2000 15:8:10 +0100
I have a XML-file like this:

<list>
 <color name="red"/>
 <color name="blue"/>
 <color name="yellow"/>
</list>

In the generated text I want to sort and number the list like this:

color1=blue
color2=red
color3=yellow

I tried something like this:

<xsl:for-each select="color">
<xsl:sort select="@name"/>
color<xsl:number/>=<xsl:value-of select="@name"/>
</xsl:for-each>

but in this case the number represents the original position in the xml-file.

Can anyone give me a hint please?


~^~^~^~^~^~^~^~^~^~^~^~^~
Marko Draisma
mailto:mdraisma@xxxxxxxxxxx


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread