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

RE: sort problem

Subject: RE: sort problem
From: aruniima.chakrabarti@xxxxxxxxxxxxxxxxxx
Date: Thu, 5 Sep 2002 11:39:04 +0530
aruniima
Hello Peter,
	Thanks a lot... the solution u send with a small variation solved my
problem. & is giving me the required output. Thanks a lot
This is the final xsl. 

<xsl:template match="/ |  @* | node()">
		<xsl:copy>
			<xsl:apply-templates select="@*">
				<xsl:sort select="name()" data-type="text"/>
			</xsl:apply-templates>
			<xsl:apply-templates select="node()">
				<xsl:sort select="name()" data-type="text"/>
			</xsl:apply-templates>
		</xsl:copy>
		
    </xsl:template>

Regards,
aruniima

 -----Original Message-----
From: 	Peter Davis [mailto:pdavis152@xxxxxxxxx] 
Sent:	Thursday, September 05, 2002 10:42 AM
To:	xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Cc:	aruniima.chakrabarti@xxxxxxxxxxxxxxxxxx
Subject:	Re:  sort problem

On Wednesday 04 September 2002 21:28,
aruniima.chakrabarti@xxxxxxxxxxxxxxxxxx 
wrote:
>  Thanks David... but i still confused...if i do <xsl:apply-templates
> select="@* | * | text()"> or <xsl:apply-templates select="@* | * |
> node()">, the output doesnot contain any of the attributes. Please help in
> getting the required output.

The problem is probably that if you output attributes, they must be output 
immediately after the element to which they belong (you can't output any 
other elements or text before your attributes).

Since you are sorting by the name() of the nodes, the text() nodes will
always 
be output first, since the name of a text node is "#text".  The hash mark
(#) 
will be sorted alphabetically before the names of your attributes.

The solution could be to apply-templates to attributes and other nodes 
separately.  It doesn't make any sense to sort the output of attributes 
anyway (since attributes don't have any defined order).

<xsl:template match="/ | @* | node()">
  <xsl:copy>
    <xsl:apply-templates select="@*"/>
    <xsl:apply-templates select="node()">
      <xsl:sort select="name()"/>
    </xsl:apply-templates>
  </xsl:copy>
</xsl:template>

Let me know if this solves your problem, and HTH.

-- 
Peter Davis
----------------------------------------------------------------------------

This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepient you should not disseminate, distribute, store, print, copy or
deliver this message. Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and immediately delete this e-mail from
your system.


E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message which
arise as a result of e-mail transmission.  If verification is required
please request a hard-copy version.


--------------------------------------------------------------------------

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.