1<?xml version="1.0"?> 2<xsl:stylesheet version="1.0" 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 4 xmlns:pfix="party.com"> 5 6 <!-- FileName: namespace134 --> 7 <!-- Document: http://www.w3.org/TR/xslt --> 8 <!-- DocVersion: 19991116 --> 9 <!-- Section: 2.4 --> 10 <!-- Creator: David Marston --> 11 <!-- Purpose: Declare prefixed namespace at stylesheet level, then use another prefix in 12 attribute name, but same namespace. New namespace-decl must be issued, or change prefix. --> 13 <!-- This test raises another facet of the issue of supplied prefixes on the attribute 14 name. Processor developers could disagree about whether the combination of a prefixed 15 name and an explicit namespace attribute with a URI signals a request from the 16 stylesheet to generate a namespace declaration, even when the requested URI is already 17 available to apply to the attribute simply by using a different prefix. In other words, 18 does the stylesheet really want to ensure that an xmlns:other declaration is issued? --> 19 20<xsl:output method="xml" indent="no" encoding="UTF-8"/> 21 22<xsl:template match="/"> 23 <out> 24 <xsl:element name="inner"> 25 <xsl:attribute name="other:nuts" namespace="party.com">almond</xsl:attribute> 26 </xsl:element> 27 </out> 28</xsl:template> 29 30 31 <!-- 32 * Licensed to the Apache Software Foundation (ASF) under one 33 * or more contributor license agreements. See the NOTICE file 34 * distributed with this work for additional information 35 * regarding copyright ownership. The ASF licenses this file 36 * to you under the Apache License, Version 2.0 (the "License"); 37 * you may not use this file except in compliance with the License. 38 * You may obtain a copy of the License at 39 * 40 * http://www.apache.org/licenses/LICENSE-2.0 41 * 42 * Unless required by applicable law or agreed to in writing, software 43 * distributed under the License is distributed on an "AS IS" BASIS, 44 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 45 * See the License for the specific language governing permissions and 46 * limitations under the License. 47 --> 48 49</xsl:stylesheet> 50