I suspect this is wishful thinking on my part and that there is no
choice here, but some pretty hard graft!
If it's inconvenient to number the rows while generating the table, just
do it in two passes, first generate without numbers, but say adding a
spurious number-me attribute to the fo:table-row then apply a trivial
stylesheet that is the identity transfom plus a single template
something like
<xsl:template match="fo:table-row[(_at_)number-me]">
<xsl:copy>
<xsl:copy-of select="@*[name()!='mumber-me']"/>
<fo:table-cell>
<fo:block>
<xsl:number/>
</fo:block>
</fo:table-cell>
<xsl;copy-of select="*"/>
<xsl:copy>
</xsl:template>
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--