[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: attribute question
Do you mean like this? <xsl:template match="@color> <xsl:attribute name="color"> <!--Insert some value --> <xsl:apply-templates select="@*"/> </xsl:attribute> </xsl:template> The example I was working from is here: http://www.dpawson.co.uk/xsl/sect2/identity.html and is as follows: <xsl:stylesheet version="1.0" xmlns:xsl ="http://www.w3.org/1999/XSL/Transform"> <!-- Import the identity transformation. --> <xsl:import href="Identity.xsl"/> <!-- | This will match any element's "date" attribute | Make the pattern more specific if this is not appropriate +--> <xsl:template match="@date"> <!-- This will construct a "date" attribute having value of its content --> <xsl:attribute name="date"> <!-- Change what's in here to construct the "new" date format --> <xsl:value-of select="concat('new',.)"/> </xsl:attribute> </xsl:template> </xsl:stylesheet> "Michael Kay" <michael.h.kay@xxxxxxxxxxxx To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx> > cc: Sent by: Subject: RE: attribute question owner-xsl-list@xxxxxxxxxxxx rytech.com 01/17/2002 04:33 AM Please respond to xsl-list > I am currently using Xalan\Xerces. I am trying to match an > attribute. See > below: > > <rendition> > <style color="#FFFFFF" border="#FFFFFF" ></style> > </rendition> > > I am having difficulty matching the attribute. See below: > > <xsl:template match="@color> > <xsl:attribute name="color"> > <!--Insert some value --> > </xsl:attribute> > </xsl:template> > Are you doing an apply-templates that will select the attribute for matching, e.g. <xsl:apply-templates select="@*"/> ? 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
|