So, if I say:
<xsl:template match="//stone">
...
</xsl:template>
I specify a template for every <stone> element regardless of where it
appears in the file?
yes, although
<xsl:template match="stone">
would match the same elements. It's never useful to start a match
pattern with //.
Meaning that:
/stone
and
/stone/*/stone
would activate the same template? Is that right?
I don't understand this last part. /stone and /stone/*/stone
are very different expressions and woul dselect different nodes in a
select expression and match different nodes if used in a match pattern.
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>
--~--