Re: [xsl] xsl:value-of select : how to make some tags printed and others not

Subject: Re: [xsl] xsl:value-of select : how to make some tags printed and others not
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Tue, 07 Oct 2003 11:27:05 -0400
David,

At 08:13 AM 10/7/2003, you wrote:

except that you don't want a copy at all, you need to change somthing,
so use the indentity transformation  (posted to this list most weeks,
also in the faq and explictly in the xslt spec)

then you want
<xsl:apply-templates/>
together with a template for sw that does not copy the element node

<xsl:template match="sw">
  <xsl:value-of select="."/>
</xsl:template>

But you meant


<xsl:template match="sw">
  <xsl:apply-templates/>
</xsl:templates>

(If you want nodes under the <sw> to be processed, in this case to be copied.)

That keyboard of yours is acting up again. :->

Cheers,
Wendell


====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ======================================================================


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



Current Thread