<?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="/">
 <rss version="2.0">
 <channel>
 <title>your MythTV Upcoming Recordings</title>
 <link>http://yourmythweb.com</link>
 <description>The Upcoming Recordings of mythtv</description>

<language>en-au</language>
 

 <xsl:for-each select="Status/Scheduled/Program">
 <item>
 <title><xsl:value-of select="@title"/> - <xsl:value-of select="Channel/@channelName"/></title>
 <link>http://yourmythweb.com/status.php</link>
 </item>

 </xsl:for-each>

 
 
 </channel>
  </rss>

</xsl:template>

</xsl:stylesheet>
