This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: simple xsl:choose question part 2


> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]