XT bug?

Subject: XT bug?
From: David Hunter <david.hunter@xxxxxxxxxxx>
Date: Tue, 30 May 2000 14:59:18 -0400
I just finished leaving the list, because I get too much email, and now I
have a question, and have to re-join.  :-)

I have come across an inconsistency, between XT and Saxon/MSXML3 (the May
release of MSXML).  I'm assuming that XT is incorrect, but I want to be
sure.

Suppose I have the following XML:

<nodes>
  <node>a</node>
  <node>b</node>
  <node>c</node>
</nodes>

I want to create a stylesheet which prints out only the value of the last
<node> element.  So I have done this:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="text"/>

<xsl:template match="/nodes/node[last()]">
  <xsl:value-of select="."/>
</xsl:template>

<xsl:template match="text()"/>
</xsl:stylesheet>

>From both Saxon and MSXML, I get "c" as my output, but from XT I get
nothing.

Is this an XT bug?  Note that if I change the template match to
"/nodes/node[position() = last()]", it works the same in all three.

If this is a bug, I'll submit it on XT's web site, but if it's a
re-interpretation of the spec, I'll leave it.

David Hunter
MobileQ
david.hunter@xxxxxxxxxxx
http://www.mobileq.com 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread