xsl-list
[Top] [All Lists]

Re: Comparing nodes in XPath

2005-01-21 13:13:03
Ok, but that's not the case when using variable. And i change that to 

<xsl:value-of 
select="document('connections.xml')/connections/connection[(_at_)id=(_dot_)/Conn]"/>

but it still doen´t work the way i expected...

I

On Fri, 21 Jan 2005 20:00:19 -0000, Michael Kay <mike(_at_)saxonica(_dot_)com> 
wrote:
Why is this xpath NOT working

<xsl:value-of
select="document('connections.xml')/connections/connection[(_at_)id
=Conn]"/>

 and this IS

<xsl:variable name="conn" select="Conn"/>
<xsl:value-of
select="document('connections.xml')/connections/connection[(_at_)id
=$conn]"/>

Because the context for evaluating a path expression (such as Conn) is
different depending on where it's written. In your furst case, it's looking
for Conn as a child element of connection.

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



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