xsl-list
[Top] [All Lists]

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

2003-09-04 04:48:32

<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



<Prev in Thread] Current Thread [Next in Thread>