<?xml version="1.0"?> 
<xsl:stylesheet 
  xmlns:rss=""
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  xmlns:dc="http://purl.org/dc/elements/1.1/" 
  xmlns:xhtml="http://www.w3.org/1999/xhtml" 
  version="1.0" 
  >

<xsl:output method="xml" indent="yes" encoding="us-ascii"/>

<xsl:template match="rss">
<rss version="2.0">
<xsl:apply-templates select="channel" />
</rss>
</xsl:template>

<xsl:template match="node() | @*">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>


