RE: [xsl] lookup table

Subject: RE: [xsl] lookup table
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Wed, 24 Jul 2002 09:18:56 +0100
> What I'm doing is
> 
> select="document('')/*/data:definitions/term[@name = name()]"
> 
The name() of term elements is always "term", so this is equivalent to

  select="document('')/*/data:definitions/term[@name = 'term']"

I suspect, without studying your logic, that you want

  select="document('')/*/data:definitions/term[@name = name(current())]"

Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx 


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


Current Thread