xsl-list
[Top] [All Lists]

Re: Printing ancestor elements of all element nodes

2005-08-03 04:16:36

<xsl:for-each select="//*">
 <xsl:text>&#10;</xsl:text>
 <xsl:value-of select="name()"/>
 <xsl:text> - </xsl:text>
 <xsl:for-each select="ancestor::*">
  <xsl:sort select="-count(ancestor::*)"/>
  <xsl:value-of select="name()"/>
  <xsl:if tets="position()!=last()">,</xsl:if>
 </xsl:for-each>
 </xsl:for-each>

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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