xsl-list
[Top] [All Lists]

Re: Repeating Code

2005-10-10 15:17:51
On 10/10/2005, at 8:51 PM, Michael Kay wrote:

One workaround is to use apply-templates with a mode. Instead of

<xsl:call-template name="NNN">
  <xsl:with-param name="node" select="x"/>
</xsl:call-template>

<xsl:template name="NNN">
  <xsl:with-param name="node"/>

write

<xsl:apply-templates select="x" mode="MMM"/>

<xsl:template match="*" mode="MMM">

I'm sure this was suggested way back when in this thread...



I don't think it was, so thanks, I will give that a try.

Also for anyone interested, it made negligible difference to the speed to have 28 items as templates instead of listed individually.

Cheers,
Nick

--~------------------------------------------------------------------
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>
--~--



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