Subject: RE: [xsl] Source Reducer From: "Aron Bock" <aronbock@xxxxxxxxxxx> Date: Mon, 06 Jun 2005 19:56:22 +0000 |
From: <tomas.vanek@xxxxxxxxxxxxx>
The reduction according the ancestor count (wihout "mode"): <xsl:template match="@*"> <xsl:copy-of select=./> </xsl:template>
<xsl:template match="node()"> <xsl:param name="level>1</xsl:param>
<xsl:copy> <xsl:apply-templates select="@*"/> <xsl:if test="$level < 4"> <xsl:apply-templates select="node()"> <xsl:with-param name="level" select="$level + 1"/> </xsl:apply-templates> </xsl:if> </xsl:copy> </xsl:template>
Current Thread |
---|
|
<- Previous | Index | Next -> |
---|---|---|
RE: [xsl] Source Reducer, tomas.vanek | Thread | Re: [xsl] Source Reducer, Karl Stubsjoen |
Re: [xsl] Formatting multi-line add, JBryant | Date | [xsl] Works in firefox but not in i, Marzka, Jeremy |
Month |