xsl-list
[Top] [All Lists]

RE: Select elements between others

2004-01-20 03:41:39
Thank you all, I didn't recognise it as a grouping problem, I was fixated on the idea expressed by my post's subject.

Joe


From: Jarno(_dot_)Elovirta(_at_)nokia(_dot_)com
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject: RE: [xsl] Select elements between others
Date: Tue, 20 Jan 2004 12:18:38 +0200

Hi,

> I want to turn this into a more normal form to make it easier
> to manage:

It's usually easier to help people if they show us what they have so far; your's is a grouping problem, see <http://www.jenitennison.com/xslt/grouping/>.

  <xsl:template match="data">
    <xsl:copy>
      <xsl:apply-templates select="block"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="block">
    <xsl:copy>
      <xsl:apply-templates select="following-sibling::*[1]" mode="group"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="item" mode="group">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
    <xsl:apply-templates select="following-sibling::*[1]" mode="group"/>
  </xsl:template>
  <xsl:template match="*" mode="group"/>
  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

Cheers,

Jarno - Wumpscut: Mother (Maternal Instinct)


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


_________________________________________________________________
Use MSN Messenger to send music and pics to your friends http://www.msn.co.uk/messenger


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



<Prev in Thread] Current Thread [Next in Thread>