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

Re: Need help with XSLT: adding new node btw existing

Subject: Re: Need help with XSLT: adding new node btw existing elements
From: "Nishi Bhonsle" <nishiandprafull@xxxxxxxxx>
Date: Wed, 16 Aug 2006 14:57:46 -0700
Re:  Need help with XSLT: adding new node btw existing
David:
I tried this but in the output, i notice that the namespace gets added
as attributes to the environment as well as variable elements. Is
there way that can be avoided?

xslt -

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:b="blabla">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="node() | @*">
<xsl:copy>
 <xsl:apply-templates select="node() | @*" />
 </xsl:copy>
 </xsl:template>
 <xsl:template match="b:environment">
<environment>
<variable id="SAROOTDIR" value="D:\Dir1"/>   	
 <variable id="SADATADIR" value="D:\Dir2"/> 	
 </environment>
</xsl:template>
</xsl:stylesheet>

and the output looks like -

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="C:\test1.xslt"?>
<test xmlns="blabla">
<comp id="New">
<process-type id="home">
<environment xmlns="" xmlns:b="blabla">
<variable xmlns="" id="SAROOTDIR" value="D:\Dir1"/>
<variable xmlns="" id="SADATADIR" value="D:\Dir2"/>
</environment>
</process-type>
</comp>
</test>

Thanks!


On 8/16/06, David Carlisle <davidc@xxxxxxxxx> wrote:


<xsl:template match="environment">

that matches elements called environment in no namespace but you have no
such elements, your original example looked like:

<test xmlns="blabla">
<comp id="New">
<process-type id="home" module-id="TESTER" status="enabled">
<environment>

so your document has an element environment in the namespace blabla
to match an element of that name put
xmlns:b="blabla" in your xsl stylesheet and use

<xsl:template match="b:environment">

(This is a FAQ)

David

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.