RE: [xsl] xsl beginner - sum () dont work

Subject: RE: [xsl] xsl beginner - sum () dont work
From: <Jarno.Elovirta@xxxxxxxxx>
Date: Wed, 9 Jun 2004 16:57:17 +0300
Hi,

> 		<title>...</Title>

Your source is not well-formed XML.

> <?xml version="1.0" encoding="iso-8859-1"?>
> <xsl:stylesheet version="1.0"
> xmlns:xsl="http://www.w3c.org/1999/XSL/Transform";>

The namespace should be "http://www.w3.org/1999/XSL/Transform";

> <xsl:value-of select="sum(/musik/track/time)" />

xsl:value-of is not an allowed top-level element. Use

  <xsl:template match="/">
    <xsl:value-of select="sum(/musik/track/time)" />
  </xsl:template>

and reread the XSLT spec.

Cheers,

Jarno - DJ Morgan (www.djmorgan.com): DarkNRG

Current Thread