xsl-list
[Top] [All Lists]

Re: [xsl] Using "match" and "name" in one template.

2007-08-23 09:43:26
On 8/23/07, John Smith <debrief(_at_)gmail(_dot_)com> wrote:
Hello,

Is it possible to call a template using

<xsl:call-template name="x"></xsl:call-template>

and then in the actual template have

<xsl:template match="a|b" name="x"></xsl:template>

so the template would only be applied once the template is called and
only if the matching criteria is satisfied.

That's what xsl:apply-templates is for:

<xsl:apply-templates select="a|b"/>

...will cause the appropriate template to be executed once for each of
the nodes selected.  If nothing is selected, nothing will be output.

-- 
http://andrewjwelch.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>
--~--

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