Re: [xsl] accessing attributes from different contexts

Subject: Re: [xsl] accessing attributes from different contexts
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Mon, 20 Jan 2003 21:19:19 +0200
Claude Montpetit wrote:
Considering the following xsl code

<xsl:template match="elem[@attrib]">
  <xsl:variable name="attrib" select="@attrib"/>
  <xsl:value-of select="$otherDoc/otherElem[@attrib=$attrib]"/>
</xsl:template>

, is there a way to compare the "attrib" attribute of the template's
context node to the one in the otherDoc xpath expression without
creating a variable? If the above approach the best way to do this?

<xsl:value-of select="$otherDoc/otherElem[@attrib=current()/@attrib]"/>


--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel


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



Current Thread