<?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="macromedia_resources">
<rss version="0.92">

<channel>
<title>Macromedia Resource Feed</title>
<link>http://www.macromedia.com/desdev/resources/macromedia_resources.xml</link>
<description>XML feed from Macromedia</description>

<xsl:apply-templates select="resource"/>

</channel>
</rss>
</xsl:template>

<xsl:template match="resource">
<item>
<title><xsl:value-of select="title"/></title>
<link><xsl:value-of select="url"/></link>
</item>
</xsl:template>

</xsl:stylesheet>
