1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" 3 xmlns:foo="http://foo.com" 4 xmlns:baz="http://foo.com" 5 exclude-result-prefixes="foo baz"> 6 7 <!-- FileName: NUMBERFORMAT41 --> 8 <!-- Document: http://www.w3.org/TR/xslt --> 9 <!-- DocVersion: 19991116 --> 10 <!-- Section: 12.3 --> 11 <!-- Creator: David Bertoni --> 12 <!-- Purpose: Test of multiple decimal-format elements with identical qualified names. 13 This is allowed as long as all attributes are identical (including defaults). --> 14 15<xsl:decimal-format name="foo:decimal1" minus-sign='-' NaN='not a number'/> 16<xsl:decimal-format name="baz:decimal1" NaN='not a number' decimal-separator='.'/> 17 18<xsl:template match="doc"> 19 <out> 20 <xsl:text> </xsl:text> 21 <foo> 22 <xsl:value-of select="format-number('NaN','###','foo:decimal1')"/> 23 <xsl:text>, </xsl:text> 24 <xsl:value-of select="format-number(-13.2,'###.0','foo:decimal1')"/> 25 </foo> 26 <xsl:text> </xsl:text> 27 <baz> 28 <xsl:value-of select="format-number('NaN','###','baz:decimal1')"/> 29 <xsl:text>, </xsl:text> 30 <xsl:value-of select="format-number(-13.2,'###.0','baz:decimal1')"/> 31 </baz> 32 </out> 33</xsl:template> 34 35 36 <!-- 37 * Licensed to the Apache Software Foundation (ASF) under one 38 * or more contributor license agreements. See the NOTICE file 39 * distributed with this work for additional information 40 * regarding copyright ownership. The ASF licenses this file 41 * to you under the Apache License, Version 2.0 (the "License"); 42 * you may not use this file except in compliance with the License. 43 * You may obtain a copy of the License at 44 * 45 * http://www.apache.org/licenses/LICENSE-2.0 46 * 47 * Unless required by applicable law or agreed to in writing, software 48 * distributed under the License is distributed on an "AS IS" BASIS, 49 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 50 * See the License for the specific language governing permissions and 51 * limitations under the License. 52 --> 53 54</xsl:stylesheet> 55