[Home] [By Thread] [By Date] [Recent Entries]
Dave,
This is less sophisticated, graceful and powerful than Dimitre's solution, but perhaps requires less sophistication, grace and power to maintain (so a hacker may prefer it): <xsl:template name="deepest">
<xsl:for-each select="//folder"> <!-- sorry everyone! -->
<xsl:sort select="count(ancestor-or-self::*)" order="descending"/>
<xsl:if test="position()=1">
<xsl:value-of select="count(ancestor-or-self::*)"/>
</xsl:if>
</xsl:if>
</xsl:template>It uses the trick of sorting all the nodes in the document by how deep they are, and then throwing away all but the first, reporting its depth. Brutal, inefficient, and poor to scale, but it should work. (Nor does it tell you which nodes are deepest, as Dimitre's function does.) Cheers, Wendell At 03:05 PM 5/10/2002, you wrote: Ok, I have basically almost a file structure in an xml document, something like this: ====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ====================================================================== XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



