xsl-list
[Top] [All Lists]

Re: [xsl] how to match elements in all depth

2008-03-25 06:21:40
On 25/03/2008, Mansour <mansour77(_at_)yahoo(_dot_)com> wrote:
Ok, may be the question is too long. Let's put it in short words.
 I have this document:

 <xml version="1.0">
 <root>
 <myelement attr1="val">
    <myelement>
    </myelement>
 </myelement>
 </root>

 A template that process "myelement" tag would be:

 <xsl:template match="myelement">
 found  element <value-of select="name(.)" />
 </xsl:template>

 This will process only the outer element and will never  reach the inner
 one ! is there a way I can  process the nested "myelement " ?


Read about the "default template rules":

http://www.dpawson.co.uk/xsl/sect2/defaultrule.html

When you override the default template with one of your own, you're
responsible for continuing the processing (using something like
xsl:apply-templates).



-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

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