1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" 3 xmlns:bdd="http://bdd.lotus.com" 4 exclude-result-prefixes="bdd"> 5 6 <!-- FileName: axes62 --> 7 <!-- Document: http://www.w3.org/TR/xpath --> 8 <!-- DocVersion: 19991116 --> 9 <!-- Section: 2.2 Axes--> 10 <!-- Creator: David Marston --> 11 <!-- Purpose: Use a NameTest on the namespace axis. --> 12 13<xsl:output method="xml" encoding="UTF-8" indent="no" /> 14 15<xsl:template match="/"> 16 <out> 17 <xsl:text> </xsl:text> 18 <xsl:apply-templates select="doc"/> 19 <xsl:text> </xsl:text> 20 </out> 21</xsl:template> 22 23<xsl:template match="doc"> 24 <xsl:for-each select="namespace::ped"> 25 <xsl:element name="{name(.)}"><xsl:value-of select="."/></xsl:element> 26 </xsl:for-each> 27 <xsl:text> </xsl:text> 28 <!-- Do the same when the prefix is also declared here in the stylesheet. Shouldn't conflict. --> 29 <xsl:for-each select="namespace::bdd"> 30 <xsl:element name="{name(.)}"><xsl:value-of select="."/></xsl:element> 31 </xsl:for-each> 32</xsl:template> 33 34 35 <!-- 36 * Licensed to the Apache Software Foundation (ASF) under one 37 * or more contributor license agreements. See the NOTICE file 38 * distributed with this work for additional information 39 * regarding copyright ownership. The ASF licenses this file 40 * to you under the Apache License, Version 2.0 (the "License"); 41 * you may not use this file except in compliance with the License. 42 * You may obtain a copy of the License at 43 * 44 * http://www.apache.org/licenses/LICENSE-2.0 45 * 46 * Unless required by applicable law or agreed to in writing, software 47 * distributed under the License is distributed on an "AS IS" BASIS, 48 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 49 * See the License for the specific language governing permissions and 50 * limitations under the License. 51 --> 52 53</xsl:stylesheet> 54