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

Re: how to avoid generating an < empty element />

Subject: Re: how to avoid generating an < empty element />
From: Manuel Souto Pico <manuel.souto@xxxxxxxxxxxxxx>
Date: Thu, 05 Feb 2009 15:42:16 +0100
Re:  how to avoid generating an < empty element />
Thank you so much, David,

Your code helps me understand what I was writing wrong (or redundantly).

As it is now, the following code outputs the langSet for Spanish only:

	<langSet lang="spa-es"><ntig><termGrp>
	 <xsl:for-each  select="$t">
	  <xsl:copy-of select="."/>
	  <xsl:copy-of select="../termNote"/>>
	  <xsl:copy-of select="../date"/>>
	 </xsl:for-each>

but ideally it should output the langSet for any language, so I tried replacing the code above with

               <xsl:for-each select="langSet">
                  <xsl:copy-of select="current()"/>
               </xsl:for-each>

The result seems to be good contents-wise, with the langSet for all the languages. However, the format is akward, with one blank line between every two lines of contents, what makes me thing that perhaps there's somethign wrong. Any suggestion for improvmenet?

Thank you very much!!
Manuel

PS The full template would be like this now:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:key name="spa-term"
match="text/body/termEntry/langSet[@lang='spa-es']/ntig/termGrp/term"
use="."/>
<xsl:template match="/">
<martif type="Part2v1" lang="en">
<martifHeader>
<fileDesc>
<sourceDesc>
<p></p>
</sourceDesc>
</fileDesc>
</martifHeader>
<text>
<body>
<xsl:for-each select="martif/text/body/termEntry">
<xsl:variable name="t" select="langSet[@lang='spa-es']/ntig/termGrp/term
[generate-id(.) = generate-id(key('spa-term', .)[1])]"/>
<xsl:if test="$t">
<termEntry id="{@id}">
<xsl:for-each select="note|date">
<xsl:copy-of select="current()"/>
</xsl:for-each>
<xsl:for-each select="langSet">
<xsl:copy-of select="current()"/>
</xsl:for-each>
</termEntry>
</xsl:if>
</xsl:for-each> </body>
</text>
</martif>
</xsl:template>
</xsl:stylesheet>




David Carlisle escribis:
Just move the if test up before you create the outer element.
ehile I was there I simplified mist of the other code which seemed to be
more verbose than needed,


<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:key name="spa-term" match="text/body/termEntry/langSet[@lang='spa-es']/ntig/termGrp/term" use="."/>
<xsl:template match="/">
<martif type="TBX" xml:lang="en">
<martifHeader>
<fileDesc>
<sourceDesc>
<p></p>
</sourceDesc>
</fileDesc>
</martifHeader>
<text>
<body>
<xsl:for-each select="martif/text/body/termEntry">
<xsl:variable name="t" select="langSet[@lang='spa-es']/ntig/termGrp/term
[generate-id(.) = generate-id(key('spa-term', .)[1])]"/>
<xsl:if test="$t">
<termEntry id="{@id}">
<langSet lang="spa-es"><ntig><termGrp>
<xsl:for-each select="$t">
<xsl:copy-of select="."/>
<xsl:copy-of select="../termNote"/>>
<xsl:copy-of select="../date"/>>
</xsl:for-each>
</termGrp>
</ntig>
</langSet> </termEntry>
</xsl:if>
</xsl:for-each>
</body>
</text>
</martif>
</xsl:template>
</xsl:stylesheet>


David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________

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.