[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Transforming XML to XML (diff. format) using XSL

Subject: Re: Transforming XML to XML (diff. format) using XSL
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 3 Jun 2003 13:21:26 +0100
diff format
                    <xsl:sort select="bug_id"/>

That would select the bug_id element  child from the current field
element.
However you don't have such an element, what you do have is

   <field name="bug_id">1</field>

which would be field[@name='bug_id'] from the parent row element.

you have this xsl:sort in the xsl:for-each that is iterating over
fields, but i suspect that you want it on the outer xsl:for-each
that is iterating over the rows, to sort teh rows into bug id order.

Actually I don't think you want the inner for-each at all.

something like

 <xsl:for-each select="mysqldump/database/table/row"> 
 <xsl:sort select="field[@name='bug_id']"/>
 <xsl:if test= "field[@name='status_id']='7']">
                         <xsl:if test="field[@name='resolution']='1']">
                           <ol>
                           <li><xsl:value-of select="field[@name='title']"/></li>
                           </ol>
                       </xsl:if>
                     </xsl:if>
...

________________________________________________________________________
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
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.