xsl-list
[Top] [All Lists]

Re: union vs. "or" vs. contains?

2004-10-19 04:03:25

So, I guess the alternative is something like the following on every 
main template?

the usual alternative to putting a global switch on a match pattern
predicate is to put it on the select attribute on the apply templates.

<xsl:apply-templates/>

<xsl:template match="*"/>

<xsl:template match="*[$foo='x']">zzz</xsl;template>

produces zzz for each element if foo is x and nothing otherwise.

The following does the same, but I think it's clearer, and it's probably
more efficient as the test only has to be done once, not on every
element that might possibly match.


<xsl:apply-templates select="*[$foo='x']"/>
or perhaps clearer
<xsl:if test="$foo='x'">
 <xsl:apply-templates/>
</xsl:if



<xsl:template match="*">zzz</xsl:template>



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
________________________________________________________________________