ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> xsl-list
xsl-list
Re: [xsl] Why template match differs?
by David Carlisle other posts by this author
Dec 11 2003 5:17PM messages near this date
[xsl] Why template match differs? | RE: [xsl] Re: Re: Re: Unbounded element grouping/concatenation
>  What is the different between following two statements?


<xsl:template match="link//llnode" mode="yyy"> 

that matches anly llnode that is a descendent of a link node.
so this
<xsl:for-each select="*"> 
selects all children of those llink nodes.

Your other template is almost completely different.

<xsl:template match="link" mode="yyy"> 

that matches any link node

<xsl:for-each select="//llnode"> 

this selects all llnode from anywhere in the document irrespective of
which link node was matched.
 the " ..some action.. " is now executed on the link node not on its
children as in the first template.

You could yuse .//llnode in the second template to find all llnodes
below the current link, but in either case if you know a more specific
path than // it would be good to use it. // is very expensive it causes
a search the full depth of the tree looking for the specified nodes.

David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
Thread:
SHEIKH Sajjad
David Carlisle

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved