[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Parameter problem


Subject: Re: [xsl] Parameter problem
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 2 Oct 2003 12:29:35 +0100

<xsl:template match="PartyList/When [1]">
here your current node is a When element
so here
<xsl:apply-templates select="PartyList/When [last()]">
you are selecting a When grandchild of the current When element.
i suspect that you don't want that, you want your youngest sibling so
that's
<xsl:apply-templates select="following-sibling::When [last()]">

Incidentally don't do
	<xsl:param name = "last"><xsl:value-of
select="@Attendance"/></xsl:param>

or
	<xsl:variable name="difference"><xsl:value-of select = "$last -
$first"/></xsl:variable>

or 

<xsl:with-param name="first"><xsl:copy-of
select="$firstN"/></xsl:with-param>

It makes the system work much harder than necessary.


just use 


	<xsl:param name = "last" select="@Attendance"/>
        <xsl:variable name="difference" select = "$last -$first"/>
       <xsl:with-param name="first" select="$firstN"/>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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



Current Thread