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

RE: one line of xml to indented xml doc

Subject: RE: one line of xml to indented xml doc
From: Astor Rivera <arivera@xxxxxxxx>
Date: Mon, 25 Mar 2002 11:32:28 -0800
rockermode
Okay. It looks like it's the msxsl parser adding the end tag.

Cheers,
Astor

-----Original Message-----
From: Astor Rivera [mailto:arivera@xxxxxxxx]
Sent: Monday, March 25, 2002 11:03 AM
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: RE:  one line of xml to indented xml doc


Joerg,

When I applied the stylesheet to this xml:

<?xml version="1.0" encoding="UTF-8"?>
<MainApp>
	<CONFIG>
		<STATUSBAR visible="true" units="true" scale="true"
rockermode="true"/>
		<TOOLBARS>
			<TOOLBAR name="main" visible="true"/>
			<TOOLBAR name="browse" visible="true"/>
			<TOOLBAR name="draw" visible="false"/>
			<TOOLBAR name="tlbCustom" caption="My Tools"
visible="true">
				<TOOLBUTTON command="clearselected"/>
				<TOOLBUTTON command="delete"/>
				<TOOLBUTTON name="tlCustom1" image="$fish"
shortcut="A1"/>
			</TOOLBAR>
		</TOOLBARS>
		<SYSTEMOBJECTS>
			<APPLICATION onstartup="MsgBox
&quot;Starting&quot;"/>
		</SYSTEMOBJECTS>
	</CONFIG>
</MainApp>

it gave me an extra element at the end.

so when an element ends like so <APPLICATION onstartup="MsgBox
&quot;Starting&quot;"/>
the style adds an end tag </APPLICATION>

how can I remove the extra node that attaches itself?

Thanks,
Astor




-----Original Message-----
From: Joerg Heinicke [mailto:joerg.heinicke@xxxxxx]
Sent: Monday, March 25, 2002 6:51 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  one line of xml to indented xml doc


Another indentation-stylesheet:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output indent="no" encoding="ISO-8859-1"/>

     <xsl:template match="node()">
         <xsl:variable name="indent">
             <xsl:for-each select="ancestor::*">
                 <xsl:text>    </xsl:text>
             </xsl:for-each>
         </xsl:variable>
         <xsl:value-of select="concat('&#10;',$indent)"/>
         <xsl:copy>
             <xsl:copy-of select="@*"/>
             <xsl:apply-templates 
select="*|text()[normalize-space()]|comment()"/>
             <xsl:if test="*">
                 <xsl:value-of select="concat('&#10;',$indent)"/>
             </xsl:if>
         </xsl:copy>
     </xsl:template>

     <xsl:template match="text()[normalize-space() and 
not(preceding-sibling::* or following-sibling::*)]">
         <xsl:value-of select="normalize-space(.)"/>
     </xsl:template>
</xsl:stylesheet>

Regards,

Joerg


-- 

System Development
VIRBUS AG
Fon  +49(0)341-979-7411
Fax  +49(0)341-979-7409
joerg.heinicke@xxxxxxxxx
www.virbus.de


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

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


 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.