This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: sort problem


On Wednesday 04 September 2002 23:09, aruniima.chakrabarti@iflexsolutions.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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]