|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Xalan attribute order
> Thomas Bayer wrote:
> > Hallo,
> >
> > I know, attribute order doesn't matter, and if order matters, something is
> > wrong. But I generate HTML from XML and there are old tools. So I have to
> > keep the attribute order. I guess Xalan sorts the attributs alphabetically.
> > Is there a way, to change the behaviour of Xalan?
Well, if you are copying from input to output and want to keep the attributes
in alphabetic order, you could so something like
<xsl:template match = "*">
<xsl:copy>
<xsl:for-each select = "@*">
<xsl:sort select = "name()"/>
<xsl:copy/>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
Cheers,
Tony.
====
Anthony B. Coates, Data Architect
mailto:abcoates@xxxxxxxxxxxxx
MDDL Editor (Market Data Definition Language)
http://www.mddl.org/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








