Re: [xsl] Get all childs with xsl:for-each

Subject: Re: [xsl] Get all childs with xsl:for-each
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 8 Feb 2005 12:13:06 GMT
> Why can't I get all <a> or <img> tags inside a relation when I use the
> above template?

hard to guess given the amount of information that you posted.
Does your input document use a defautl namespace? that would account
for the non matching, as explained in the faq.

			<xsl:when test="name(.) = 'my-relation'">

It's better to use
test="self::my-relation"
as it's namespace safe (assuming that your element really is in
no-namespace)


  <xsl:for-each select="descendant-or-self::a">

since you know the current node isn't an a you could just use

<xsl:for-each select="descendant::a">

or

<xsl:for-each select=".//a">

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________

Current Thread