1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 4 <!-- FileName: node11 --> 5 <!-- Document: http://www.w3.org/TR/xpath --> 6 <!-- DocVersion: 19991116 --> 7 <!-- Section: 2.3 --> 8 <!-- Creator: David Marston --> 9 <!-- Purpose: Test for node tests in match patterns (and union in select). --> 10 11<xsl:template match="/doc"> 12 <out> 13 <xsl:apply-templates select="*|@*|comment()|processing-instruction()|text()"/> 14 </out> 15</xsl:template> 16 17<xsl:template match="*"><!-- for child elements --> 18 <xsl:text>E:</xsl:text><xsl:value-of select="name()"/> 19 <xsl:apply-templates select="@*"/> 20 <xsl:apply-templates/> 21 <xsl:text> 22</xsl:text> 23</xsl:template> 24 25<xsl:template match="@*"> 26 <xsl:text>A:</xsl:text><xsl:value-of select="name()"/> 27</xsl:template> 28 29<xsl:template match="text()"> 30 <xsl:text>T:</xsl:text><xsl:value-of select="."/> 31</xsl:template> 32 33<xsl:template match="comment()"> 34 <xsl:text>C:</xsl:text><xsl:value-of select="."/> 35</xsl:template> 36 37<xsl:template match="processing-instruction()"> 38 <xsl:text>P:</xsl:text><xsl:value-of select="name()"/> 39</xsl:template> 40 41 42 <!-- 43 * Licensed to the Apache Software Foundation (ASF) under one 44 * or more contributor license agreements. See the NOTICE file 45 * distributed with this work for additional information 46 * regarding copyright ownership. The ASF licenses this file 47 * to you under the Apache License, Version 2.0 (the "License"); 48 * you may not use this file except in compliance with the License. 49 * You may obtain a copy of the License at 50 * 51 * http://www.apache.org/licenses/LICENSE-2.0 52 * 53 * Unless required by applicable law or agreed to in writing, software 54 * distributed under the License is distributed on an "AS IS" BASIS, 55 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 56 * See the License for the specific language governing permissions and 57 * limitations under the License. 58 --> 59 60</xsl:stylesheet> 61