[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Var references in "match" attribute of xsl:template?

Subject: Re: Var references in "match" attribute of xsl:template?
From: Jeni Tennison <mail@xxxxxxxxxxxxxxxx>
Date: Fri, 10 Nov 2000 10:42:41 +0000
xsl template match attribute
David,

> I vaguely remember I've read that the value of the "match" attribute
> of "xsl:template" cannot reference a variable in any way.  If that's
> true, then I have to duplicate the domain class name in the
> "domainClass" setting, and in the top-level "xsl:template" tag.  It
> would be nice if I could define the domain class in a single place,
> and reference it in all the places it is used.  Is there any way to do
> this?

It's true that you cannot use a variable within the match pattern of a
template.  However, you can get around it in two ways.  The first is
to include the variable in whatever way you need to within the select
expression that is used to decide which nodes to apply templates to:

  <xsl:apply-templates select="*[name() = $domainClass]" />

and have a general template:

<xsl:template match="*">
   ...
</xsl:template>
  
The second is to embed conditional processing within a more general
template:

<xsl:template match="*">
  <xsl:if test="name() = $domainClass">
     ...
  </xsl:if>
</xsl:template>

Of these, the first is generally more efficient because it narrows
down the nodes that have templates applied to them earlier in the
process.

However, I note from your description that:

> The name of the root tag element is exactly the same as the domain
> class.

By 'root tag element' I guess you mean the document element: the
element at the very top of the document tree.  If that's the case,
then you can always get the name of that element through the XPath:

  name(/*) [or local-name(/*) if you're using namespaces]

i.e. the name of the element that is a child of the root node.  You
*can* use this expression within the match pattern of a template.

You can also match on the document element (the element representing
your domain class) with the match pattern:

  /*

I hope that helps,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/



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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.