xsl-list
[Top] [All Lists]

Re: Number of times apply-templates gets executed.

2003-01-07 11:42:19

I think you probably want

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.1">

<xsl:variable name="xslSearchText"></xsl:variable>
<xsl:variable name="xslSearchState"></xsl:variable>


<xsl:template match="/">
        <xsl:apply-templates select="//state[(_at_)name=$xslSearchState]"/>
</xsl:template>


<xsl:template match="state">
<xsl:variable name="c" select="county/community[(_at_)name=$xslSearchText]"/>
<xsl:choose>
<xsl:when test="$c">
<xsl:apply-templates select="$c"/>
</xsl:when>
<xsl:otherwise>
ERROR: nothing found
</xsl;otherwise>
</xsl:choose>
</xsl:template>


<xsl:template match="community">
Just basically displaying the content of the node in HTML Table
format.
</xsl:template>


</xsl:stylesheet>

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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