Subject: Re: simple xsl:choose question part 2
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 17 Jun 2002 12:32:16 +0100
|
> now i have worked the way to add the inner span's but i can't figger the way
> how to inssert the outer span that holds inside all the <span>s
You made it hard for yourself by going
<xsl:for-each select="/CdList//*">
// here has flattened out the entire input tree and you are just
processing the leaves so you don't see where to add the grouping spans.
Instead do something like
<xsl:template match="/">
<span>
<xsl:apply-template/>
</span>
</xsl:template>
<xsl:template match="Dir">
<span>
<xsl:apply-template/>
</span>
</xsl:template>
<xsl:template match="File">
<xsl:call-template name="print"/>
</xsl:template>
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|