Subject: AW: only display if subnodes occur more than once
From: "Prerovsky, Clemens" <Clemens.Prerovsky@xxxxxxx>
Date: Thu, 23 Jun 2005 15:08:37 +0200
|
Anrew Welch wrote:
> <xsl:template match="sub_a|sub_b|sub_c">
> <xsl:variable name="copy"
> select="boolean(*/following-sibling::*[local-name() =
> preceding-sibling::*/local-name()])"/>
>
> <xsl:if test="$copy">
> <xsl:copy-of select="."/>
> </xsl:if>
> </xsl:template>
<xsl:if test="boolean(*/following-sibling::*[local-name() =
preceding-sibling::*/local-name()])"> works fine for my needs - thank
you very much! Could'nt have done it without you!
Best regards,
Clemens Prerovsky
|