Re: [xsl] Same XPath expression with diferent results

Subject: Re: [xsl] Same XPath expression with diferent results
From: xptm <xptm@xxxxxxx>
Date: Wed, 08 Dec 2004 12:16:19 +0000
Ok, i understand that the two expressions are equivalent, but still don't understand why in my xsl only the three <menu> directly under the root are matched by the template...

David Carlisle wrote:

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
________________________________________________________________________

Current Thread