xsl-list
[Top] [All Lists]

Re: [xsl] Need help OR'ing in XPATH.

2006-03-22 06:05:23


but its a best practice to refer a text value 
of a node by text(). In case you have child nodes for owner then u will find 
yourself troubled.

Actually one has to be very careful using text().
For example in <zz>aaa<!-- a comment -->bbb</zz> 
text() selects two nodes (and in xslt1 the second will be discarded in
most contexts)


<xsl:a-t select="book[normalize-space(owner/text())='aaa' or 

that will work in XSLT1 as the later text nodes are discarded, but in
xslt2 it will generate an error as owner has more than one text() child
(coming from the indentation) and its an error to pass a sequence of
more than one item to normalize-space (except in backward compatibility
mode)

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--