Re: [xsl] flatened hiearchies for xslt2

Subject: Re: [xsl] flatened hiearchies for xslt2
From: ac <ac@xxxxxxxxxxxxx>
Date: Thu, 08 Mar 2007 10:24:38 -0500
Hi David,

You are right, my mistake, I had to make the change because I was
supplying a sequence rather than a node containing a sequence.

Like Dimitri, I also seem to work in extreme hours sometimes ...

I will watch it better.

Thank you,
Andre




change it


David Carlisle a C)crit :
First David, yours works fine, but I had to modify

<xsl:param name="s" select="section"/>
to
<xsl:param name="s" select="following-sibling::*"/>

Hmm looks suspicious, it worked as posted on the example you gave (wherethe top level element (only) was a section that contained the other section elements as content). If the node on which you start the grouping is a sibling of the other nodes 9as implied by your change then the first template that starts the process would need to ensure that it only applies templates to that node, not to all its siblings.

David



David

Current Thread