RE: apply-templates

Subject: RE: apply-templates
From: Linda van den Brink <lvdbrink@xxxxxxx>
Date: Tue, 30 May 2000 12:59:32 +0200
Paul Martin wrote: 

> 1. Since template rules can be applied to all types of nodes, 
> including attributes,
> then if we had eg:-
> 
> <xsl:template match="ATOM">
>                   <xsl:apply-templates select="@UNITS"/>
> </xsl:template>
> 
> which applies templates to the UNITS attributes of ATOM elements;
> then to process the UNITS attributes following on from the 
> above, would we have a template rule with the following match 
> attribute value ??
> 
> <xsl:template match="@UNITS">
>                  do whatever
> </xsl:template>

Yep
 
> 2. What is the advantage of the above over accessing the 
> UNITS attributes of ATOM via value-of in the 1st template 
> rule above ??

The above would be useful if you don't simply want the value of the
attribute, but you want to do further processing based on the attribute
value. You could turn the attribute into an element and apply templates of
other nodes inside it, for example. 
 
> 2. If apply-templates with no select attribute applies to ALL 
> children of the template rule's matched node, then does 
> "children" refer to just the child element nodes, or to the 
> attribute nodes also ??

"children" here refers to just the child element nodes. The attribute nodes
are not children of the element. See also the recent thread on "Matching
attributes with @". 

Linda van den Brink 


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


Current Thread