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

Re: "Simple" copy all and find and replace

Subject: Re: "Simple" copy all and find and replace
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Tue, 8 Jul 2003 12:07:19 +0100
xslt copy all
Hi Kai,

> For my program I need XML-Files, where nodes like PHOTO, IMG, FOTO,
> BILD, BILDCHEN should be renamed with the name IMAGE and the
> original name should be saved as an attribute "oldname". The rest of
> the file should be the same. Just copy all and when the special
> nodes were found, rename them. I thought it would be really simple,
> but I tried some hours and had no good result. Maybe sombeody could
> help me.

You need to use the identity template, which copies a document
recursively:

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

coupled with a template that does the renaming that you want:

<xsl:template match="PHOTO | IMG | FOTO | BILD | BILDCHEN">
  <IMAGE oldname="{local-name()}">
    <xsl:apply-templates select="@*|node()" />
  </IMAGE>
</xsl:template>

Whenever the processor comes across a <PHOTO>, <IMG> etc. element, it
will use the second of these templates, and create an <IMAGE> element
with an oldname attribute whose value is the name of the original
element. Whenever the processor comes across some other kind of node,
it will copy it and move on to its attributes and children. You can
add other templates to do other renaming as required.

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.