[xsl] Re: Using Variable in Template Matching....

Subject: [xsl] Re: Using Variable in Template Matching....
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Fri, 21 Jun 2002 23:58:34 -0700 (PDT)
> Can i do
> <xsl:apply-templates match="$param"/>
> 
> and....
> 
> <xsl:template match="$param"/>

No, as this can lead to a circular definition (e.g. a global variable,
whose content instantiates the template that refers to the same
variable in its match attribute).

Also, it is not clear whay type of nodes you'd be trying to match
above...

But you can do:

<xsl:apply-templates select="$param"/>

Cheers,
Dimitre Novatchev.





__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread