<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
  <h2>Recordings</h2>
  <table border="1">
    <tr bgcolor="#A4A4A4">
      <th>Date</th>
      <th>Channel</th>
      <th>Title</th>
    </tr>
    <xsl:for-each select="GetRecordedResponse/Recorded/Programs/Program">
    <tr bgcolor="#F2F5A9">
      <td><b><xsl:value-of select="@startTime"/></b></td>
      <td><b><xsl:value-of select="Channel/@channelName"/></b></td>
      <td><b><xsl:value-of select="@title"/></b></td>
    </tr>
  </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>