~ubuntu-branches/ubuntu/natty/libxslt/natty

« back to all changes in this revision

Viewing changes to tests/exslt/math/max.1.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-01-24 16:26:15 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070124162615-8ivleans2t5rdkjt
Tags: 1.1.20-0ubuntu1
* New upstream release.
* debian/rules:
  - bumped shlibs, new interfaces added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<xsl:stylesheet version="1.0"
3
 
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
 
                xmlns:math="http://exslt.org/math"
5
 
                exclude-result-prefixes="math">
6
 
 
7
 
<xsl:template match="values">
8
 
   <result>
9
 
      <xsl:text>Maximum: </xsl:text>
10
 
      <xsl:value-of select="math:max(value)" />
11
 
   </result>
12
 
</xsl:template>
13
 
 
 
1
<?xml version="1.0"?>
 
2
<xsl:stylesheet version="1.0"
 
3
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 
4
                xmlns:math="http://exslt.org/math"
 
5
                exclude-result-prefixes="math">
 
6
 
 
7
<xsl:template match="values">
 
8
   <result>
 
9
      <xsl:text>Maximum: </xsl:text>
 
10
      <xsl:value-of select="math:max(value)" />
 
11
   </result>
 
12
</xsl:template>
 
13
 
14
14
</xsl:stylesheet>
 
 
b'\\ No newline at end of file'