Subject: Re: Same XPath expression with diferent results
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 8 Dec 2004 10:05:06 GMT
|
as the archives of this list will show you most weeks,
<xsl:template match="//menu">
matches exactly the same elements as
<xsl:template match="menu">
blabla only appears 3 times, corresponding to the /menus/menu. Why this isn't
giving the same 8 results?
On its own it will give no results at all. It just says use this
template if you apply nodes to a node that matches "menu" (note that a
match attribute takes a pattern not an XPath expression.) So it depends
on how often you call xsl:apply-templates with a select attribute
that selects these nodes.
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
________________________________________________________________________
|