[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Why template match differs?

Subject: RE: Why template match differs?
From: "SHEIKH Sajjad" <Sajjad.SHEIKH@xxxxxxxxxxx>
Date: Thu, 11 Dec 2003 18:39:35 +0100
xsl template mode differs
Thanks David.

Following two templates generates the same results:

Cheers,

<xsl:template match="link//llnode" mode="yyy">
<xsl:for-each select="*">
</xsl:template>

<xsl:template match="link" mode="yyy">
<xsl:for-each select="*//llnode">
</xsl:template>

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx] 
Sent: 11 December 2003 18:17
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  Why template match differs?



> 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


______________________________________________________________
This message has been scanned for all viruses by BTnet VirusScreen. The
service is delivered in partnership with MessageLabs.

This service does not scan any password protected or encrypted
attachments.  

If you are interested in finding out more about the service, please
visit our website at
http://www.btignite.com/internetservices/btnet/products_virusscreen.htm
==============================================================

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.