Macromedia's XML resource feed

In honor of the big MX announcements today, ably described by InfoWorld's Tom Yager, I've synthesized an RSS feed from Macromedia's Designer Developer XML Feed . Wonder if I should enter the contest for best integration of the feed?

XML Contest: A panel of judges will review the submissions. The judging panel will be comprised of Macromedia employees with a background in web design, development, and XML, or another appropriate, related field. The judges will inspect the source files of all entries, and award prizes based on the creativity of the use (50%) and overall integration into the existing web site (50%). Prizes will be awarded based on the following categories: (1) Best integration with existing web site; (2) Most creative implementation of the XML Feed.

OK. My source is this URL and this transform:

<?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>

Probably not quite what they had in mind, though.


Former URL: http://weblog.infoworld.com/udell/2002/04/29.html#a207