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

using exsl:node-set()

Subject: using exsl:node-set()
From: "Markus Hanel" <markus.hanel@xxxxxx>
Date: Mon, 26 Jul 2004 11:58:11 +0200 (MEST)
exsl node set
hallo,
I make something wrong! I want to use the exsl:node-set() function but at
www.exsl.org there is no download of the exsl.node-set.xsl stylesheet. But
in the main download there are two stylesheets: exsl.node-set.1.xsl and
exsl.node-set.2.xsl, but this not works.

markus

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common" extension-element-prefixes="exsl">

<xsl:import href="exsl.node-set.1.xsl" />
<xsl:import href="exsl.node-set.2.xsl" />

<xsl:template match="/">
<html>
<head><title></title></head>

<body>
  <xsl:apply-templates select="./table" />
</body>
</html>
</xsl:template>

<xsl:template match="table">
<xsl:variable name="sorted-rows-rtf">
    <xsl:for-each select="./row">
      <xsl:sort select="sum(./cell/@points)" data-type="number"
order="descending" />
      <xsl:copy-of select="." />
    </xsl:for-each>
  </xsl:variable>

  <xsl:variable name="sorted-rows"
select="exsl:node-set($sorted-rows-rtf)/row" />
  <xsl:value-of select="sum($sorted-rows[position() &lt;= 4]/cell/@points)"
/>
</xsl:template>
</xsl:stylesheet>

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.