xslt union,xslt union operator,xslt xpath union,xsl select operator,xpath union select,xslt colour,xpath color,no duplicates xslt,xpath predicate with union operator,xml xslt union, xml%%%xslt union - Re: XPATH

[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XPATH | union operator question

Subject: Re: XPATH | union operator question
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Fri, 19 Dec 2003 11:40:10 -0500
xslt union
At 2003-12-19 16:05 +0100, christof.hoeke@xxxxxxx wrote:
###TODO
in the following xml: if the inner @color is there use it, otherwise use the outer @color

Use: ( @color | ../@color )[last()]


###XML
<test>
<line color="outer1">
<x color="inner1"/>
</line>
</test>
...
<xsl:template match="x">
<xsl:value-of select="@color | parent::line/@color"/><br/>
<xsl:value-of select="parent::line/@color | @color "/><br/>
<xsl:value-of select="(@color | parent::line/@color)[1]"/><br/>
<xsl:value-of select="(parent::line/@color | @color)[1] "/><br/>

In all four of the above, you are asking for the first in document order. XPath returns the nodes unordered but XSLT examines the returned nodes in document order. Since the <line> element is before the <x> element in document order, all four expressions are obtaining the colour attribute of <line>.


what does the | operator in "@color | parent::line/@color" select? only the most specific?

No, it only specifies the union of the two sets, with no duplicates. XSLT will then consider the resulting set always in document order.


In my suggestion at top, the last() predicate will select the last of the set, which if there is only one is the one itself, but if there are two it takes the inner one.

I hope this helps.

............... Ken


-- North America (Washington, DC): 3-day XSLT/2-day XSL-FO 2004-02-09 Instructor-led on-site corporate, government & user group training for XSLT and XSL-FO world-wide: please contact us for the details

G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
ISBN 0-13-065196-6                       Definitive XSLT and XPath
ISBN 0-13-140374-5                               Definitive XSL-FO
ISBN 1-894049-08-X   Practical Transformation Using XSLT and XPath
ISBN 1-894049-11-X               Practical Formatting Using XSL-FO
Member of the XML Guild of Practitioners:     http://XMLGuild.info
Male Breast Cancer Awareness  http://www.CraneSoftwrights.com/s/bc


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



Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.