xsl-list
[Top] [All Lists]

RE: [xsl] using every inside a predicate

2006-05-23 02:04:55
From: andrew welch [mailto:andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com] 
Sent: 23 May 2006 09:41
 
The context node in the last predicate is <name> so its not 
doing anything, you either need
every $s in /sections/section   (to make it from the root)
or
every $s in ancestor::sections/section  (to walk back up the tree)

Of course! 

Thanks Andrew.


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