RE: [xsl] Rename element

Subject: RE: [xsl] Rename element
From: "Shailesh Shinde" <shailesh@xxxxxxxxxxxx>
Date: Mon, 7 Nov 2005 11:13:24 +0530
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: [xsl] 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