Hi all,
I have the following problem:
I have an xhtml file that I want to transform using
xslt, like the one below. I want to prepend and append
some text and change some body tag attributes but
copy any other attributes. I cannot seem to get that
done in the same transformation.
An example:
<html>
<head>
</head>
<body text="#003366" bgcolor="#663300" onload="otherAttribs()">
<p>My page</p>
</body>
</html>
The result should be:
<html>
<head>
</head>
<body text="#000000" bgcolor="#ffffff" onload="otherAttribs()">
Prepend text
<p>My page</p>
Append text
</body>
</html>
The xslt I use:
<xsl:template match="body">
<xsl:copy>
Prepend text
<xsl:apply-templates/>
Append text
</xsl:copy>
</xsl:template>
removes body tag attributes. How can
I copy the body tag attributes at the
same time, so I can use something like:
<xsl:template match="body/@text">
<xsl:attribute name="text">#000000</xsl:attribute>
</xsl:template>
to change attributes.
Thanks,
Diogo
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
--~------------------------------------------------------------------
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>
--~--