[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: XSL/XPath to generate a list of ancestors?

Subject: RE: XSL/XPath to generate a list of ancestors?
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Mon, 12 May 2008 17:13:51 +0100
RE:  XSL/XPath to generate a list of ancestors?
>      <xsl:template match="*" name="fullNameWorker" mode="fullName">
>          <xsl:if test=".!=/">
>              <xsl:apply-templates select=".." mode="fullName"/>
>              <xsl:if test="..!=/">.</xsl:if>
>              <xsl:value-of select="@name"/>
>          </xsl:if>
>      </xsl:template>

Never use != to compare node identity. It can be very expensive and it gives
the wrong answer. For example if your document is

<doc><subdoc>
    ...
  </subdoc></doc>

then doc and subdoc both compare equal to "/", and if the document is 100Mb
in size then you will be comparing some very long strings to prove it.

In 2.0, use "is". In 1.0, use generate-id(A)=generate-id(B).

Michael Kay
http://www.saxonica.com/

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.