xsl-list
[Top] [All Lists]

Re: Changing an html colour value

2004-12-21 08:03:28


    <xsl:apply-templates select="//x:body"/>

that will search your entire input document to an arbitrary depth to
find all body elements. If you only have one, a more specific path not
using // would be a lot more efficient.


  <xsl:copy-of select="x:table"/>

That says that you want a copy of the whole table, unchanged. You don't
want a copy so you don't want to use copy of. You want to transform it
so you want 

 <xsl:apply-templates select="x:table"/>

The transform you want to do is an identity transform (faq has entries
on this idiom) 

<xsl:template match="node()">
 <xsl:copy>
 <xsl:apply-templates select="@*|node()"/>
 </xsl:copy>
</xsl:template>

except the things you don't want copying:


<xsl:template match="@bgcolor[.='#ffffff']">
  <xsl:attribute name="bgcolor">#999999</xsl:attribute>
</xsl:template>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>