Subject: Re: XSL sorting
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Tue, 22 Jan 2002 10:31:18 +0000
|
Hi Maia,
> I'd like to sort all events by attrList/attr/data, where
> attrList/attr/name="some value" for example: trap type.
You want to get the attr whose name is "trap type". You can do this
with a predicate, as follows:
attrList/attr[name = 'trap type']
>From that attr element, you want to get the data element, which you
can do with:
attrList/attr[name = 'trap type']/data
So your sort should look like:
<xsl:apply-templates select="Event">
<xsl:sort select="attrList/attr[name = 'trap type']/data" />
</xsl:apply-templates>
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|