|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Variables and inherited attributes
> the currently active value for xml:lang is > > <xsl:value-of select="ancestor-or-self::*/@xml:lang[1]"/> > Not quite; that select expression returns the set of xml:lang values on all ancestor nodes (the [1] does nothing, as an element can't have two xml:lang attributes), and the xsl:value-of then selects the string value of the first one in document order, which is the outermost. Correct is: <xsl:value-of select="(ancestor-or-self::*/@xml:lang)[last()]"/> or (perhaps marginally faster) <xsl:value-of select="ancestor-or-self::*[@xml:lang][1]/@xml:lang"/> Mike Kay XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








