xsl-list
[Top] [All Lists]

Re: apply-templates and priorities

2004-09-15 15:22:58
At 2004-09-15 14:55 -0700, simon_handley(_at_)agilent(_dot_)com wrote:
I'm confused about how the priorities of templates are computed.

Priorities are only in play when you are matching the same node in two template rules.

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
    <xsl:template match="*" priority="1">
        <xsl:message>in first</xsl:message>
    </xsl:template>

    <xsl:template match="/" priority="10">
        <xsl:message>in second</xsl:message>
    </xsl:template>
</xsl:stylesheet>

Priority is irrelevant in the above stylesheet because when the processor starts and pushes the root node at your stylesheet, only your second template rule will match it.

Your first template rule matches any element ... it doesn't match the root node.

I hope this helps.

................. Ken

--
World-wide on-site corporate, govt. & user group XML/XSL training.
G. Ken Holman                 mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal



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