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

Re: [xsl] Reusing Variables!!


Subject: Re: [xsl] Reusing Variables!!
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 9 Jan 2004 10:26:26 GMT

> but how can I get what I want here?

It would have been easier to answer this if you'd have said what result
you wanted rather than just post some code that doesn't work, as only
you really know what you intended that to do.

Asside from variable bindings why are you using concat to adjoin the
empty string '' to things that is essentially a no-op?

Your for-each is apparrently concatenating all the namee attributes,
with no separator so I think you probably want

<xsl:variable name="url">
<xsl:value-of select="breakdown[@sort='page']/@data"/>
<xsl:text>1</xsl:text>
<xsl:for-each select="breakdown[@sort='param' and @type='fixed']">
    <xsl:value-ofselect="@name"/>
</xsl:for-each>
</xsl:variable>
-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
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