Re: [xsl] [Fwd: Re: Re: Using a variable in XSLT]

Subject: Re: [xsl] [Fwd: Re: Re: Using a variable in XSLT]
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 4 Sep 2003 12:48:32 +0100
<xsl:template match="xs:documentation">
<xsl:documentation>
<xsl:copy-of select="@*/>
<xsl:apply-templates select="self::*[lang($lang)]/*[name()=$SystemSelected]"/>
</xsl:documentation>
</xsl:template>


actually you want no ouput if this element has the wrong lang
not an empty element, so don't do what i wrote above, do


<xsl:template match="xs:documentation">
<xsl:if test="lang($lang)">
<xsl:documentation>
<xsl:copy-of select="@*/>
<xsl:apply-templates select="*[name()=$SystemSelected]"/>
</xsl:documentation>
</xsl:if>
</xsl:template>


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


Current Thread