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

Re: How to prevent copying non-existing elements?

Subject: Re: How to prevent copying non-existing elements?
From: Michael Ludwig <mlu@xxxxxxxxxxxxx>
Date: Tue, 04 Aug 2009 15:16:10 +0200
Re:  How to prevent copying non-existing elements?
Ben Stover schrieb:
Lets start with the following simplified piece of XSLT code :

<xsl:template match="/">
   ....
  <moxx:someelement>
      <xsl:value-of select="/moxx:aaa/moxx:bbb"/>
  </moxx:someelement>
  ....

So when bbb is an optional element and it does NOT exist in the source
XML then the following chunk is still created in the target XML doc:

<moxx:someelement></moxx:someelement>

How can I prevent the creation of these frame element tags when there
is no source element?

You will want to learn about the difference between *pull* processing (your pseudocode and Michael Kay's XSLT example and Martin's "verbose way") and *push* processing (Martin's first suggestion, and my example below).

Also, you will want to learn about the identity template, which is a
very common and important XSLT pattern, given below.

<xsl:stylesheet version="1.0"
  xmlns:moxx="net.moxx"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
    <moxx:root>
      <xsl:apply-templates select="moxx:aaa/moxx:bbb"/>
    </moxx:root>
  </xsl:template>

  <xsl:template match="moxx:bbb"><!-- or moxx:aaa/moxx:bbb
    for greater precision in matching -->
    <moxx:someelement>
      <xsl:apply-templates/>
    </moxx:someelement>
  </xsl:template>

  <xsl:template match="@*|node()"><!-- identity template -->
    <xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
  </xsl:template>

</xsl:stylesheet>

Michael Ludwig

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-2011 All Rights Reserved.