xsl-list
[Top] [All Lists]

Re: Do Templates Conflict?

2005-05-04 13:23:20
Hi, Edward,

"Does it matter that one selected a more specific context?"

Very much so. As a general rule, the more specific the pattern, the higher 
its priority.

Check out http://www.w3.org/TR/xslt#conflict

You can also set the priority for a template.

<xsl:template match="something" priority="10"> will pretty much ensure 
that this template gets applied when the something element is matched, 
regardless of what other templates exist for the something element.

<xsl:template match="something" priority="-10"> can be handy for ensuring 
that at least some template is reached - an "if all else fails" template.

Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)

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