xsl-list
[Top] [All Lists]

Re: sort problem

2002-09-04 23:20:28
On Wednesday 04 September 2002 23:09, 
aruniima(_dot_)chakrabarti(_at_)iflexsolutions(_dot_)com 
wrote:
                        <xsl:apply-templates select="@*">
                                <xsl:sort select="name()"
data-type="text"/> </xsl:apply-templates>

If you want to be pedantic, the <xsl:sort> here doesn't matter, so you can 
save a few CPU cycles by just doing:

  <xsl:apply-templates select="@*"/>

The reason is because

  <e a="1" b="2"/>

will be interpreted exactly the same as:

  <e b="2" a="1"/>

by any compliant XML parser.

-- 
Peter Davis

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



<Prev in Thread] Current Thread [Next in Thread>