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

How does one merge sequences?

Subject: How does one merge sequences?
From: Kenneth Stephen <marvin.the.cynical.robot@xxxxxxxxx>
Date: Sun, 10 Oct 2004 19:50:51 -0500
merge sequences
Hi,

    The following code :

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

        <xsl:output omit-xml-declaration="yes" method="text" />

        <xsl:template match="/">
                <xsl:variable name="seq1">
                        <xsl:element name="item">1</xsl:element>
                        <xsl:element name="item">2</xsl:element>
                </xsl:variable>
                <xsl:variable name="seq2">
                        <xsl:element name="item">3</xsl:element>
                        <xsl:element name="item">4</xsl:element>
                        <xsl:element name="item">5</xsl:element>
                </xsl:variable>

                <xsl:call-template name="process">
                        <xsl:with-param name="merged" select="$seq1/*
| $seq2/*" />
                </xsl:call-template>
        </xsl:template>

        <xsl:template name="process">
                <xsl:param name="merged" />

                <xsl:for-each select="$merged">
                        <xsl:value-of select="." />
                        <xsl:if test="count(preceding-sibling::item) = 0">
                                <xsl:text> = first</xsl:text>
                        </xsl:if>
                        <xsl:text>
</xsl:text>
                </xsl:for-each>
        </xsl:template>

</xsl:stylesheet>

....produces the following output :

bash-2.05b$ java net.sf.saxon.Transform seq.xsl seq.xsl 
1 = first
2
3 = first
4
5

....indicating that the "merged" sequence is still recognized as two
sequences instead of a single merged one. How can one do a proper
merge?

Thanks,
Kenneth

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.