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

xsl:sort


xsl sort
Dear All,

    I have recently discovered an interesting
behavior of  <xsl:sort> statement. A had to sort
a not so large (3MByte) XML document that
has divisions of text. Divisions have a subjectcode
attribute and I would have liked to sort them by
the subjectcode. The program was the following:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" encoding="iso-8859-1"/>

<xsl:template match="* | CDATA | @* | comment()">
  <xsl:copy>
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

<xsl:template match="body">
<body>
  <xsl:apply-templates select="div">
  <xsl:sort data-type="text" select="@subjectcode"/>
  </xsl:apply-templates>
</body>
</xsl:template>

</xsl:stylesheet>
----------------------------------------------------

For small files it works fine. In the case of larger files
the output seems to be good, but when one looks it
more closely, there are errors in the order of divisions
in the middle of the file. The first 20%, and the last 20%
was good, but not in between.
When I tried different XSLT interpreters, they all worked
so (XT.EXE, SAXON.EXE 6.2.1, MSXSL 3.0). Have
some of you an idea?


Zoltán Alexin, assistant lecturer
University of Szeged,
Department of Applied Informatics,
e-mail: alexin@i...
www: http://www.inf.u-szeged.hu/~alexin
Motto: "e-pistula non erubescit"


  • Follow-Ups:

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.