This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: few question regarding the use of id generation


> If c were a child/descendant of results then:
> 
> <xsl:template match="results[//c='2']">


This can really go wrong!! With '//c' all results in the file are 
matched, if any c in the file has the value '2'. Change it to 
'descendant::c' or './/c' if you want descendant <c>s. '//c' means 
descendants of root node.

I hope I'm not wrong.

Regards,

Joerg

-- 

System Development
VIRBUS AG
Fon  +49(0)341-979-7411
Fax  +49(0)341-979-7409
joerg.heinicke@virbus.de
www.virbus.de


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]