[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Sorting in Ancient Greek


Subject: Re: [xsl] Sorting in Ancient Greek
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 20 Apr 2004 16:37:44 +0100

sort order is processor specific, but there is a processor independent
way to achieve

   the behaviour we would like is for the
   various different unaccented and accented alphas to be treated as
   equivalent for sorting purposes.

just translate them all to be the same in the xsl:sort

for example

<xsl:sort select="translate(.,
'&#x3AC;&#x3B1;'
'&#x3B1;&#x3B1;'
)"/>

will sort alpha with and without tonos accent as equal.
You just need to extend the two lists of characters...

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


Current Thread