Re: [xsl] table formating

Subject: Re: [xsl] table formating
From: Michael Kay <mike@xxxxxxxxxxxx>
Date: Wed, 26 Jan 2011 14:20:29 +0000
On 26/01/2011 14:08, Michael Kay wrote:
Do a preprocessing pass to add an @index attribute to all cells.

Identity template plus

<xsl:template match="row">
<xsl:for-each-group select="cell" group-starting-with="cell[@index]">
<xsl:for-each select="current-group()">
<cell index="{current-group()[1]/@index + position() - 1}">
<xsl:copy-of select="child::node()"/>
</
</
</
</

Sorry, that's the answer to a slightly different question - but one that's often useful in this kind of situation.

For your problem I'd be inclined to use sibling recursion:

<xsl:template match="row">
<xsl:apply-templates select="cell[1]" mode="add-missing-cells">
<xsl:wirh-param name="present-in-output select="0"/>
</xsl:apply-templates>
</xsl:template>

<xsl:template match="cell" mode="add-missing-cells" priority="1">
<xsl:with-param name="present-in-output" as="xs:integer"/>
<xsl:copy-of select="."/>
<xsl:apply-templates select="following-sibling::cell[1]" mode="add-missing-cells">
<xsl:with-param name="present-in-output select="$present-in-output+1"/>
</xsl:apply-templates>
</xsl:template>


<xsl:template match="cell[@index]" mode="add-missing-cells" priority="2">
<xsl:wirh-param name="present-in-output" as="xs:integer"/>
<xsl:variable name="missing" select="@index - ($present-in-output + 1)" as="xs:integer"/>
<xsl:for-each select="1 to $missing"><cell/></xsl:for-each>
<xsl:copy-of select="."/>
<xsl:apply-templates select="following-sibling::cell[1]" mode="add-missing-cells">
<xsl:with-param name="present-in-output select="$present-in-output+$missing+1"/>
</xsl:apply-templates>
</xsl:template>


Michael Kay
Saxonica

Current Thread