This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

numbering sorted list


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@multiweb.nl


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]