|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Rename element
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 ________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. 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
|







