1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 4 <!-- FileName: select74 --> 5 <!-- Document: http://www.w3.org/TR/xslt --> 6 <!-- DocVersion: 19991116 --> 7 <!-- Section: 8 Repetition --> 8 <!-- Purpose: Test for-each example from XSLT spec. --> 9 10<xsl:template match="/"> 11 <html> 12 <head> 13 <title>Customers</title> 14 </head> 15 <body> 16 <table> 17 <tbody> 18 <xsl:for-each select="customers/customer"> 19 <tr> 20 <th> 21 <xsl:apply-templates select="name"/> 22 </th> 23 <xsl:for-each select="order"> 24 <td> 25 <xsl:apply-templates/> 26 </td> 27 </xsl:for-each> 28 </tr> 29 </xsl:for-each> 30 </tbody> 31 </table> 32 </body> 33 </html> 34</xsl:template> 35 36 37 <!-- 38 * Licensed to the Apache Software Foundation (ASF) under one 39 * or more contributor license agreements. See the NOTICE file 40 * distributed with this work for additional information 41 * regarding copyright ownership. The ASF licenses this file 42 * to you under the Apache License, Version 2.0 (the "License"); 43 * you may not use this file except in compliance with the License. 44 * You may obtain a copy of the License at 45 * 46 * http://www.apache.org/licenses/LICENSE-2.0 47 * 48 * Unless required by applicable law or agreed to in writing, software 49 * distributed under the License is distributed on an "AS IS" BASIS, 50 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 51 * See the License for the specific language governing permissions and 52 * limitations under the License. 53 --> 54 55</xsl:stylesheet> 56