Subject: Re: test="" not taking value of attribute
From: Florian Leifeld <leifeld@xxxxxxxxxxxxxxxx>
Date: Tue, 26 Aug 2008 17:19:44 +0200
|
Am 26.08.2008 um 17:08 schrieb Michael Kay:
[..snip.]
<xsl:variable name="veranstaltungen" select="//news/month" />
<xsl:when test="$veranstaltungen[@year=../@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[@year=current()/../@date]
Michael Kay
http://www.saxonica.com/
Your solution worked! Thank you very much.
|