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

Re: xml to csv

Subject: Re: xml to csv
From: "Serena Phan" <serena.phan@xxxxxxxxxxx>
Date: Wed, 23 Nov 2005 07:43:55 +0000
fop csv
Thanks David. However, the processor that I`m using is Apache FOP 0.20.5 and it doesn`t seem to produce the same results as saxon.

Here`s the results I got from FOP:

a, dd1
a, dd2

Do you know how to fix that so that it works for FOP

Thanks a bunch.


Date: Mon, 21 Nov 2005 10:34:43 GMT
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
From: David Carlisle <davidc@xxxxxxxxx>
Subject: Re:  xml to csv
Message-Id: <200511211034.KAA15109@xxxxxxxxxxxxxxxxx>

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text"/>

<xsl:template match="root">
<xsl:apply-templates select="*[last()]"/>
</xsl:template>

<xsl:template match="root/*">
<xsl:param name="l"/>
<xsl:variable name="here" select="."/>
<xsl:variable name="sep">
<xsl:if test="following-sibling::*">, </xsl:if>
</xsl:variable>
<xsl:for-each select="descendant-or-self::*[not(*)]">
<xsl:choose>
<xsl:when test="$here/preceding-sibling::*">
<xsl:apply-templates select="$here/preceding-sibling::*[1]">
  <xsl:with-param name="l" select="concat(.,$sep,$l)"/>
</xsl:apply-templates>
</xsl:when>
<xsl:otherwise>
  <xsl:value-of select="concat(.,$sep,$l,'
')"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>

</xsl:stylesheet>

$ saxon bb.xml bb.xsl
a, bb1, ccc1, dd1
a, bb2, ccc1, dd1
a, bb3, ccc1, dd1
a, bb4, ccc1, dd1
a, bb1, ccc2, dd1
a, bb2, ccc2, dd1
a, bb3, ccc2, dd1
a, bb4, ccc2, dd1
a, bb1, ccc1, dd2
a, bb2, ccc1, dd2
a, bb3, ccc1, dd2
a, bb4, ccc1, dd2
a, bb1, ccc2, dd2
a, bb2, ccc2, dd2
a, bb3, ccc2, dd2
a, bb4, ccc2, dd2

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


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.