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

Re: Inquiry: Reordering XML elements through XSL

  • From: "G. Ken Holman" <gkholman@C...>
  • To: XML-Dev Mailing list <xml-dev@i...>
  • Date: Fri, 18 Jun 1999 19:47:22 -0700

xslt preserve elements
At 99/06/18 18:34 -0700, Aaron Fischer wrote:
>My XML documents consist of two basic tag blocks, <A></A> and <B></B>.
>They can either be interwoven, i.e. <A></A><B></B><A></A><B></B>, or
>separated into sections, i.e. <A></A><A></A><B></B><B></B>.

Fine ... I'll assume the interweaving and separation you desire is in
document order of the original in each case.

>I know I can apply a cludge to solve the above problem.  Namely, use
>element omission and make two XSL sweeps of the same document.  Run one XSL
>script that will output only <A> tags, another script that will output <B>
>tags, then concatenate the two output files.

No kludge necessary ... just make two passes of the source tree (visiting
only the nodes you desire) in a single stylesheet.

>However, this still leaves the reverse problem of translating from a tag
>order of AAABBB to ABABAB.  I'm not sure how this problem could be solved
>without the use of some direct reordering functionality.

Again, I'll assume you want to preserve the document order of the input in
the elements of the output ... if you want another order than document
order, the example below won't show that.  I've added attributes to the
elements to illustrate the ordering.

I've also illustrated using different numbers of A and B, though it also
works with the identical number.

I hope this helps.

............ Ken


T:\fischer>type test.xml
<?xml version="1.0"?>
<test>
<a name="ken"/>
<b name="kathryn"/>
<a name="alex"/>
<b name="kaitlyn"/>
<a name="ted"/>
<a name="john"/>
</test>
T:\fischer>type test1.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
                indent-result="yes">

<xsl:template match="/*">                       <!--document element-->
  <xsl:copy>
    <xsl:copy-of select="@*"/>                     <!--preserve atts-->
      <xsl:copy-of select="//a"/>              <!--preserve elements-->
      <xsl:copy-of select="//b"/>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>

T:\fischer>call xsl test.xml test1.xsl test1.xml
T:\fischer>type test1.xml
<test>
<a name="ken"/>
<a name="alex"/>
<a name="ted"/>
<a name="john"/>
<b name="kathryn"/>
<b name="kaitlyn"/>
</test>

T:\fischer>type test2.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
                indent-result="yes">

<xsl:template match="/*">                       <!--document element-->
  <xsl:copy>
    <xsl:copy-of select="@*"/>                     <!--preserve atts-->
    <xsl:call-template name="do-rest"/>
  </xsl:copy>
</xsl:template>

<xsl:template name="do-rest">
  <xsl:param-variable name="index" expr="1"/>   <!--init'd only once-->
  <xsl:if test="//a[$index] | //b[$index]">
    <xsl:copy-of select="//a[$index]"/>        <!--preserve elements-->
    <xsl:copy-of select="//b[$index]"/>
    <xsl:call-template name="do-rest">                   <!--recurse-->
      <xsl:param name="index" expr="$index + 1"/>
    </xsl:call-template>
  </xsl:if>
</xsl:template>

</xsl:stylesheet>

T:\fischer>call xsl test1.xml test2.xsl test2.xml
T:\fischer>type test2.xml

<test>
<a name="ken"/>
<b name="kathryn"/>
<a name="alex"/>
<b name="kaitlyn"/>
<a name="ted"/>
<a name="john"/>
</test>

T:\fischer> 

--
G. Ken Holman                    mailto:gkholman@C...
Crane Softwrights Ltd.             http://www.CraneSoftwrights.com/x/
Box 266, Kars, Ontario CANADA K0A-2E0   +1(613)489-0999   (Fax:-0995)
Website:  XSL/XML/DSSSL/SGML services, training, libraries, products.
Publications:   Introduction to XSLT (3rd Edition) ISBN 1-894049-00-4


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)



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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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.