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

Re: how to <xsl:apply-templates /> for ELEMENT nodes o

Subject: Re: how to <xsl:apply-templates /> for ELEMENT nodes only?
From: "James A. Robinson" <jimr@xxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 30 Mar 2004 06:26:28 -0800
xslt apply templates text
> But in order to stop the text node from being spewed out by default, I 
> have to explicityly surpress it with
> <xsl:template match="//text()" />
> 
> While this works, surely there is a more elegant way. The source XML 
> uses an informal schema designed by someone else which mixes text with 
> elements (document centric schema). I'm halfway through overhauling 
> their XSLT templates and I just want all templates matching any type of 
> element to be applied.

I'm rather new to XSL, so I may be missing something, but I would think
that what you did is *exactly* right -- you override default handling
of text() to display nothing.

An alternative may be to make sure you always apply-templates against
elements instead of something like node() which matches text(), or,
of course, against text() itself. The following is an example which
descends an XML tree and only prints out the elements:

<?xml version='1.0' encoding='UTF-8'?>
<xsl:stylesheet
        xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
        xmlns:xalan='http://xml.apache.org/xalan'
        version='1.0'>

        <xsl:output
                encoding='UTF-8'
                method='xml'
                indent='yes'
                xalan:indent-amount='2'/>

        <xsl:template match='/'>
                <xsl:apply-templates select="/*"/>
        </xsl:template>

        <xsl:template match="*">
                <xsl:copy>
                        <xsl:copy-of select="./@*"/>
                        <xsl:apply-templates select="./*"/>
                </xsl:copy>
        </xsl:template>

</xsl:stylesheet>


Jim

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.