[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: RE: Infinte nesting with sorting
Thanks for the reply, but I can't upgrade because I do transformations on server-side In case somenone is interested, I've been able to do it with this XSL: <?xml version="1.0" encoding="ISO-8859-1" ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"> <xsl:template match="/"> <xsl:apply-templates select="//Issue" order-by="+@id"/> </xsl:template> <xsl:template match="Issue"><p> <xsl:value-of select="@id" /> <xsl:apply-templates /></p> </xsl:template> <xsl:template match="Chapter"> <BLOCKQUOTE> <xsl:value-of select="@id" /> <xsl:apply-templates select="Chapter" order-by="+@id" /> </BLOCKQUOTE> </xsl:template> </xsl:stylesheet> This transforms properly the XML Oscar Rueda 11/01/02 13:16:12, "Michael Kay" <michael.h.kay@xxxxxxxxxxxx> escribió: >> But sorting the chapters looks painful, does anyone have a clue? >> >> By the way, I'm using IE5, so I can't use <xsl:stylesheet >> version="1.0" >> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> >> >Everything is painful when using WD-xsl, and you're unlikely to get any >advice from this list other than to upgrade to XSLT as soon as you possibly >can: the longer you leave it, the more difficult adn expensive it will be. > >Your statement that you can't use XSLT because you're using IE5 is quite >incorrect: all you need to do is download and install MSXML3. > >Mike Kay > > > XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list > > > 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
|