|
Subject: Re: Number of node in list from stylesheet From: Sebastian Rahtz <sebastian.rahtz@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> Date: Tue, 23 May 2000 14:35:32 +0100 (BST) |
Jeni Tennison writes:
> <xsl:variable name="monthNumber">
> <xsl:apply-templates select="document('')//foo:month" mode="getNumber">
> <xsl:with-param name="monthName" select="$monthName" />
> </xsl:apply-templates>
> </xsl:variable>
>
> and then create a template:
>
> <xsl:template match="foo:month" mode="getNumber">
> <xsl:param name="monthName" />
> <xsl:if test="@name = $monthName">
> <xsl:number format="01" />
> </xsl:if>
> </xsl:template>
why pass the monthname as parameter, as opposed to
select="document('')//foo:month[@name=$monthName] " mode="getNumber"
? doesnt that the work the same way, and look more natural?
Sebastian
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: Number of node in list from sty, Jeni Tennison | Thread | Re: Number of node in list from sty, Jeni Tennison |
| RE: parametrized xsl, Jonathan Asbell | Date | Re: XSLT & XBase ( Dans Special the, Eric van der Vlist |
| Month |