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

RE: Small changes to source XML

Subject: RE: Small changes to source XML
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Fri, 14 May 2004 15:40:18 +0100
change source on xml id
Write an identity template that copies everything:

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

Then override it for the things you want to change:

<xsl:template match="a/@ID">
  <xsl:attribute name="ID">0</xsl:attribute>
</xsl:template>

Michael Kay 

> -----Original Message-----
> From: Kenny Akridge [mailto:kenny@xxxxxxxxxxxxxxxxx] 
> Sent: 14 May 2004 13:16
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  Small changes to source XML
> 
> Forgive me for seeming ignorant, but I certainly am in this 
> case.  I want to
> mostly copy all of my source XML to the output XML, with some 
> small changes.
> For instance:
> 
> <root>
> 	<a ID="74">
> 	<a ID="75">
> 	<a ID="76">
> </root>
> 
> I want this output:
> 
> <root>
> 	<a ID="0">
> 	<a ID="0">
> 	<a ID="0">
> </root>
> 
> 
> What is the best way to do this with a lot of XML without 
> using xsl:element?

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.