xsl-list
[Top] [All Lists]

RE: Why template match differs?

2003-12-12 02:20:22
David,

What I meant was 

<xsl:for-each select="*//llnode"> will search under one level up
ancestor which will give the same results as match link//llnode since
link is one level up.

Obviously link//llnode is limited while just matchin link will give the
possibility to write more statements for any child underneath.

Thanks & Regards,

/s

-----Original Message-----
From: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk] 
Sent: 11 December 2003 18:53
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Why template match differs?



Following two templates generates the same results:
They do?


<xsl:template match="link//llnode" mode="yyy">
<xsl:for-each select="*">
so this is iterating over all elements (of any name) that have a parent
llnode and an ancestor link

<xsl:template match="link" mode="yyy">
<xsl:for-each select="*//llnode">
this is iterating over all elements with name llnode that are
descendents, but not children, of a link element.

It is no doubt possible to find a document where these select the same
sets of nodes, but in general they will be very different.

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



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