xsl-list
[Top] [All Lists]

RE: Comparing nodes in axis

2004-12-17 14:00:03
However, in my second example,

ancestor::menu = (//menu)[$pos]

i can not do

(count(ancestor::menu|(//menu)[$pos])=1)

but if my understanding of the union operator is correct, i can make

(count(ancestor::menu|(//menu)[$pos])=(count(ancestor::menu))

Right?

Yes. Or you could do

xsl:variable name="P" select="(//menu)[$pos]"
xsl:if test="ancestor::menu[count(.|$P)=1]"

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--