topical media & game development

talk show tell print

mashup-amazon-05-05-01-XML-radiohead.xsl / xsl



  <?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>
          <xsl:apply-templates select="artist" />
        </body>
      </html>
    </xsl:template>
  
    <xsl:template match="artist">
      <h1>
        <xsl:value-of select="@name"></xsl:value-of>
      </h1>
      <table>
        <xsl:apply-templates select="albums" />
      </table>
    </xsl:template>
  
    <xsl:template match="albums">
      <xsl:apply-templates select="album" />
    </xsl:template>
  
    <xsl:template match="album">
      <tr>
        <td>
          <h2>
            <xsl:value-of select="@name"></xsl:value-of>
          </h2>
        </td>
      </tr>
      <xsl:apply-templates select="songs" />
    </xsl:template>
  
    <xsl:template match="songs">
      <xsl:apply-templates select="song" />
    </xsl:template>
  
    <xsl:template match="song">
      <tr>
        <td>
          <xsl:value-of select="."></xsl:value-of>
        </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.