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]
Other format: [Raw text]

xsl: using attribute value in apply-templates select


Hello List,

I have an xml document filled with key-value pairs that the xsl needs to use to identify the proper nodes to process in the proper templates.

Given an xml like this:
<page>
<collection key="key.string.1">
<data>stuff</data>
<data>stuff</data>
</collection>
<collection key="key.string.2">
<data>stuff</data>
<data>stuff</data>
</collection>
</page>

And a template like this:
<xsl:template match="collection">
stuff...
</xsl:template

How would I write the select attribute of
<xsl:apply-templates select=" ? "/>

To properly select the collection node whose key attribute is equal to key.string.1?


Thanks for any help on this,
Alex



_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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]