topical media & game development

talk show tell print

professional-xml-15-Listing-15-23.txt / txt



  <?xml version="1.0" encoding="utf-8"?>
  
  <xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
    <xsl:template match="/">
        <html>
        <body>
          <h3>List of Painters &amp; Paintings</h3>
          <table border="1">
            <tr bgcolor="LightGrey">
              <th>Name</th>
              <th>Painting</th>
              <th>Year</th>
            </tr>
            <xsl:apply-templates select="//Painter"/>
          </table>
        </body>
      </html>
    </xsl:template>
  
    <xsl:template match="Painter">
      <tr>
        <td>
          <xsl:value-of select="@name"/>
        </td>
        <td>
          <xsl:value-of select="Painting/Title"/>
        </td>
        <td>
          <xsl:value-of select="Painting/Year"/>
        </td>
      </tr>
    </xsl:template>
  
  </xsl:stylesheet>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.