xsl-list
[Top] [All Lists]

Re: [xsl] xpath syntax error

2008-12-17 09:57:12
match="p[count(node()) = 0] | q[count(node()) = 0]"

or some other construct as you suggest. Though you could write this more
tersely as

match="p[not(node())] | q[not(node())]"

Sometimes it's bit nicer to keep them separate:

match="p[not(node())]"/>
match="q[not(node())]"/>

...so when you're scanning through the list of templates in your IDE
it's easier to spot.



-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

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

<Prev in Thread] Current Thread [Next in Thread>