[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Matching similar rows in a table

Subject: Matching similar rows in a table
From: Aadjan van der Helm <A.vanderHelm@xxxxxxxxxxxxx>
Date: Thu, 15 Jul 2004 10:21:24 +0200
aadjan van der helm
Question:

I want to transform the below source xml to the destination xml with a XSLT script. I run into problems trying to generate the <chapter></chapter> tags because there is no structural textual "signal" in the source XML to match the start/end of a chapter.

The source XML is the export from a DB in the form of a table. Each page is in a row, only the first page has the chapter title, in the other page that column contains no data.

The XSLT script has to pick up the special first row, create the chapter and name tags and insert the pages for the chapter until another special first row is detected.

Alternatively I could generate XML which has the chapter name in each first column in the page row. Then the XSLT script will has to detect a change in the content of the first column and start a new chapter.

How can I do this in XSLT?

Groeten,
--Aadjan

Source XML
<row><col>Chapter 1</col><col>page 1</col><col>picture1</col></row>
<row><col></col><col>page 2</col><col>picture2</col></row>
<row><col></col><col>page 3</col><col>picture3</col></row>
<row><col>Chapter 2</col><col>page 1</col><col>picture4</col></row>
<row><col></col><col>page 2</col><col>picture5</col></row>
<row><col></col><col>page 3</col><col>picture6</col></row>

Destination XML
<chapter>
<name>Chapter 1</name>
<page><content>picture1</content></page>
<page><content>picture2</content></page>
<page><content>picture3</content></page>
</chapter>
<chapter>
<name>Chapter 2</name>
<page><content>picture4</content></page>
<page><content>picture5</content></page>
<page><content>picture6</content></page>
</chapter>

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.