EXSLT - set:leading - EXSLT Function Implementation

Supported Version: 1
XML Definition: set.leading.xml
Source: set.leading.function.xsl

Source

<exsl:function name="set:leading">
   <xsl:param name="nodes"
              select="/.." />
   <xsl:param name="node"
              select="/.." />
   <xsl:variable name="end-node"
                 select="$node[1]" />
   <xsl:choose>
      <xsl:when test="not($end-node) or not($nodes)">
         <exsl:result select="$nodes" />
      </xsl:when>
      <xsl:when test="count($end-node|$nodes) != count($nodes) or                        count($nodes[1] | $end-node) = 1">
         <exsl:result select="/.." />
      </xsl:when>
      <xsl:otherwise>
         <exsl:result select="$nodes[1] |                                set:leading($nodes[position() > 1], $end-node)" />
      </xsl:otherwise>
   </xsl:choose>
</exsl:function>

Change History

Submitted: 2001-03-28
Creator: Jeni Tennison(http://www.jenitennison.com)

Returns the nodes in one node set that come before a particular node.

VersionModifiedByDetails
1.12001-05-08Jeni Tennison

Added a description of how the template-equivalent to the function works.

1.22001-05-22Jeni Tennison
  • Added vendor implementations in Saxon and 4XSLT
  • Changed status to stable
1.32001-06-11Jeni Tennison

Added vendor implementation in jd.xslt.

1.42001-08-23Jeni Tennison

Added vendor implementation in libxslt.

1.52002-08-20Craig Stewart

Added Xalan-J implementation to the list.

1.62002-11-12Craig Stewart

Updated 4XSLT version to 0.12.0a3.

Copyright

http://www.exslt.org/set/functions/leading/set.leading.function.xsl.html last modified 2002-11-12