xsl-list
[Top] [All Lists]

Re: [xsl] test="" not taking value of attribute

2008-08-26 10:20:09

Am 26.08.2008 um 17:08 schrieb Michael Kay:

[..snip.]
<xsl:variable name="veranstaltungen" select="//news/month" />
<xsl:when test="$veranstaltungen[(_at_)year=(_dot_)(_dot_)/@date]/@name =
substring (@name,1,3)">
    do something
</xsl:when>
[..snip.]

Why does the "../@date" in the while clause not contain (at
least it seems so) anything?

You haven't shown us your XML source, but my guess is that you are imagining that ../@date selects the same thing inside the predicate as it would select
outside the predicate. In fact the context node changes inside the
predicate. Perhaps you want

test="$veranstaltungen[(_at_)year=current()/../@date]

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
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>
--~--


Your solution worked! Thank you very much.

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>