<?xml version="1.0"?> 
<xsl:stylesheet 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  version="1.0">

<xsl:output method="xml" indent="yes" encoding="us-ascii"/>

<xsl:template match="/ROLLINGSTONE.COM_NEWS">
<rss version="2.0">
<channel>
<description>
Rolling Stone
</description>
<link>
http://www.rollingstone.com
</link>
<title>
Rolling Stone
</title>
<xsl:apply-templates select="NEWS_ITEM" />
</channel>
</rss>
</xsl:template>


<xsl:template match="NEWS_ITEM">
<item>
<link>
<xsl:value-of select="URL" />
</link>
<description>
<xsl:value-of select="DESCRIPTION" />
</description>
<title>
<xsl:value-of select="HEADLINE" />
</title>
</item>
</xsl:template>


</xsl:stylesheet>
