Re: [xsl] apply-templates instead of for-each

Subject: Re: [xsl] apply-templates instead of for-each
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 20 Sep 2004 11:46:24 +0100
>   <xsl:template match="$gtmenu" 

It is not allowed in xslt 1 to have variable references in match patters
so this should have been a syntax  error and you should get no output.

Even if variables were allowed (as they are in xslt2 draft) it would not
be what you want as match patterns have to match teh relevant nodes not
the varibable containing the whole node set so you want

 match="MenuItem"

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
________________________________________________________________________

Current Thread