xsl-list
[Top] [All Lists]

Re: access the root element

2005-11-03 08:57:30
Hi, Kai,

You've fallen into a very common misunderstanding. / gets the root node, 
but Metrics is not the root node. Metrics is the first (and only) child of 
the root node.

So, to fix your problem, you have a couple choices:

You can change
<xsl:template match="/">
to
<xsl:template match="Metrics">

or

You can change
<xsl:value-of select="@date"/>
to
<xsl:value-of select="Metrics/@date"/>
(and do the same for all similar values).

Oh, and you've invented a new word with "desparating" - I kinda like that 
one.

HTH

Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--