xsl-list
[Top] [All Lists]

Re: Get all childs with xsl:for-each

2005-02-08 05:13:06


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
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--



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