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

RE: Rename element

Subject: RE: Rename element
From: "Shailesh Shinde" <shailesh@xxxxxxxxxxxx>
Date: Mon, 7 Nov 2005 11:13:24 +0530
rename element xml
Hi,

With the help of your reference I have manage to get the following output
as:

<test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<sample xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="test.xsd">
<sample1>
<p>ABCDEFGHIJK</p>
<scriptin lang="enu"/>
<scriptin lang ="enu1"/>
<p>123456</p>
<p>789123</p>
</sample1>
</sample>
</test>
Here I am getting sample element and it's attribute which i don't required
also my test contains namespace but not the schema location attribute.

Where my input is:

<sample xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="test.xsd">
<sample1>
<p>ABCDEFGHIJK</p>
<script lang="enu"/>
<script lang ="enu1"/>
<p>123456</p>
<p>789123</p>
</sample1>
</sample>

By using this xsl:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<xsl:output method="xml" indent="yes" encoding="UTF-8"
omit-xml-declaration="no"/>

	<xsl:template match="/">
		<test>
			<xsl:apply-templates/>
		</test>
	</xsl:template>
	<xsl:template match="*[not(self::script)]">
  <!-- Makes a shallow copy of the element in question -->
  <xsl:copy>
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/> <!-- Applies templates to below elements -->
  </xsl:copy>
</xsl:template>
<xsl:template match="script">
<scriptin>
<xsl:copy-of select="@*"/>
</scriptin>
 </xsl:template>

Where I have done mistake? Can you please help me?

Thanks,
Shailesh


-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx] 
Sent: Friday, November 04, 2005 8:10 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  Rename element


see

http://www.dpawson.co.uk/xsl/sect2/identity.html


________________________________________________________________________
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
________________________________________________________________________

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.