xsl-list
[Top] [All Lists]

RE: [xsl] Matching elements with specific multiple parents

2011-04-01 18:54:07
Don't think that quite does it
child[parent::foo or parent::bar]
is the same as 
child[../foo or ../bar]

which was my first attempt, but they both say "does the parent contain a foo
or bar child" not "is the parent foo or bar"

But thanks all for the suggestions !


----------------------------------------
David A. Lee
dlee(_at_)calldei(_dot_)com
http://www.xmlsh.org


-----Original Message-----
From: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk] 
Sent: Friday, April 01, 2011 3:43 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Cc: David Lee
Subject: Re: [xsl] Matching elements with specific multiple parents


On 01/04/2011 22:38, David Lee wrote:
<xsl:template match="child[node-name(..) = ( QName((),'foo') ,
QName((),'bar') )]">

child[parent::foo or parent::bar]

perhaps or

*[self::foo or self::bar]/child

or

...

David


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--