xsl-list
[Top] [All Lists]

RE: generic sort based on attribute names

2005-01-25 13:48:58

OK, 
This is the recursive stylesheet I have, to handle a generic XML. 
How does the thing you explained with the 'e' fit here. 

xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

    <xsl:template match="*">

        <xsl:copy>

            <xsl:for-each select="@*">

                <xsl:sort select="name(.)"/>

                <xsl:attribute name="{name(.)}">

                    <xsl:value-of select="."/>

                </xsl:attribute>

            </xsl:for-each>

           

            <xsl:apply-templates>

                <!-- the select for this sort needs to be the concatenated      
                name-value pairs of all the attributes sorted                   
                in alphabetical order -->
                        
                <xsl:sort select="name(.)"/>

            </xsl:apply-templates>

        </xsl:copy>

    </xsl:template>

</xsl:stylesheet>

 


-----Original Message-----
From: Joris Gillis [mailto:roac(_at_)pandora(_dot_)be] 
Sent: Tuesday, January 25, 2005 12:14 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] generic sort based on attribute names

Tempore 21:09:23, die 01/25/2005 AD, hinc in  
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com scripsit Chaitanya Desai  
<cdesai(_at_)syncata(_dot_)com>:

I want this to be generic.
The tag/attribute names are not known. The 'e' was just part of the  
example.
'e' is jsut a random name. It can be everything; it's not related to  
elements residing in the input file who also happen to be named 'e'.

regards,
-- 
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-view.cgi?userid=38041)
"Φιλήκοον ειναι μαλλον η φιλόλαλον"  -  
Κλεόβουλος

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--