[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

context position incorrect

Subject: context position incorrect
From: "Steve Brown" <prospect@xxxxxxxxxxx>
Date: Wed, 28 Jun 2000 10:24:00 +1000
context position incorrect
Hi,
am having a problem with the position function and am hoping its my lack of
knowledge rather than Xalan. The XSL below:

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

<xsl:template match="list">
	<xsl:apply-templates select="item[@include='yes']"/>
</xsl:template>

<xsl:template match="item">
	*<xsl:value-of select="@a"/>*
	position = <xsl:value-of select="position()"/>
	last = <xsl:value-of select="last()"/>
</xsl:template>

</xsl:stylesheet>


is run on this XML:


<?xml version="1.0"?>
<list>
	<item a="1" include="yes"/>
	<item a="2" include="no"/>
	<item a="3" include="no"/>
	<item a="4" include="no"/>
	<item a="5" include="yes"/>
	<item a="6" include="yes"/>
	<item a="7" include="yes"/>
</list>

to give:

        *1*
        position = 1
        last = 4
        *5*
        position = 5
        last = 4
        *6*
        position = 6
        last = 4
        *7*
        position = 7
        last = 4

I thought it would give:

        *1*
        position = 1
        last = 4
        *5*
        position = 2
        last = 4
        *6*
        position = 3
        last = 4
        *7*
        position = 4
        last = 4

Any ideas?
Thanks,
Steve.


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.