You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2002/05/15 23:26:11 UTC

DO NOT REPLY [Bug 9134] New: - xsltc doesn't select last template when set priority equal

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9134>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9134

xsltc doesn't select last template when set priority equal

           Summary: xsltc doesn't select last template when set priority
                    equal
           Product: XalanJ2
           Version: CurrentCVS
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: org.apache.xalan.xsltc
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: tom.amiro@sun.com


Xsltc is selecting the wrong template when the explicitly set priority 
is equal. The last template should be selected.

conflictres24.xsl
-----------------
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <!-- FileName: conflictres24 -->
  <!-- Scenario: Standard-XML -->
  <!-- Document: http://www.w3.org/TR/xslt -->
  <!-- DocVersion: 19991116 -->
  <!-- Section: 5.5 -->
  <!-- Purpose: Test for conflict resolution on templates assigned equal
priority. -->
  <!-- Creator: Gary Peskin -->
  <!-- should see 1 conflict warning, because both templates are at same
priority, but
     the last one should be selected. If priorities weren't assigned, more
specific one
     (the "a" template) would have won. -->

<xsl:strip-space elements="doc"/>

<xsl:template match="doc">
  <out>
    <xsl:apply-templates/>
  </out>
</xsl:template>

<xsl:template match="a" priority="-2.0">
  <xsl:text>This template should not be matched.</xsl:text>
</xsl:template>

<xsl:template match="node()" priority="-2.0">
  <xsl:text>This template should be matched.</xsl:text>
</xsl:template>

</xsl:stylesheet>