This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: lookup table


> 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@ntlworld.com
work: Michael.Kay@softwareag.com 


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]