|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Template priority
> I need to apply two different templates respectively against two different > elements, both of which unfortunately have the same name, but different > parents and attribute sets. > > The input xml is of the general form > > <root> > <x> > <z bunny="bugs farmer="fudd"/> > </x> > <y> > <z birdy="tweety" puddytat="sylvester"/> > </y> > </root> > > What would be the recommended way to differentiate the two templates? > Parentage? Priority? Mode? Something else? Brian, noticed that all your answers said to use the parent/child tests. That makes sense if the parent child relationship is static. However, if it's not, and your attributes are well defined there is no reason not to select on attribute instead, eg: <xsl:template match="z[@birdy]"> and <xsl:template match="z[@bunny]"> will discriminate between the two cases you give... XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






