|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Problem with xsl:copy
David, Sorry, The problem get worse. Now I am losing all of the <td> tags altogether and am getting the following: <tr class = "oddRowStyle">Name:Susan</tr> <tr class="evenRowStyle"> Address: Maple Leaf Lane </tr> Rechell -----Original Message----- From: David Carlisle [mailto:davidc@xxxxxxxxx] Sent: Friday, November 08, 2002 9:44 AM To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx Cc: xsl-list@xxxxxxxxxxxxxxxxxxxxxx Subject: Re: Problem with xsl:copy > The resulting xml file I am getting is: of course without showing us the input file it;'s a bit hard to guess... but ????? <xsl:copy> that makes a tr node ? <xsl:for-each select="td"> ??? <xsl:attribute name="class" that (repeadedly) adds a class attribute to this tr node once for each td in the source. You presumably want something like <xsl:template match="tr[td[not(a) and text() != 'Data not available' and not(@*)]]"> ????? <xsl:copy> ?? <xsl:choose> ?? <xsl:when test="position() mod 2 = 0"> ?? <xsl:for-each select="td"> <td class="evenRowStyle"> ??? <xsl:apply-templates select="node()|@*"/> </td> </xsl:for-each> ?? </xsl:when> ?? <xsl:otherwise> ?? <xsl:for-each select="td"> <td class="oddRowStyle"> ??? <xsl:apply-templates select="node()|@*"/> </td> </xsl:for-each> ?? </xsl:otherwise> ?? </xsl:choose> ???? </xsl:copy> </xsl:template> _____________________________________________________________________ This message has been checked for all known viruses by Star Internet delivered through the MessageLabs Virus Scanning Service. For further information visit http://www.star.net.uk/stats.asp or alternatively call Star Internet for details on the Virus Scanning Service. 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
|

Cart








