<?xml version="1.0"?> 
<xsl:stylesheet 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  xmlns:content="http://purl.org/rss/1.0/modules/content/" 
  xmlns:dc="http://purl.org/dc/elements/1.1/" 
  xmlns:xhtml="http://www.w3.org/1999/xhtml" 
  version="1.0" 
  exclude-result-prefixes="xhtml"
 >

<xsl:output method="xml" indent="yes" encoding="us-ascii"/>

<xsl:template match="rss">
<rss version="2.0" xml:base="http://weblog.infoworld.com/udell">
<xsl:apply-templates select="channel" />
</rss>
</xsl:template>

<xsl:template match="node() | @*">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="//xhtml:body">
<body xmlns="http://www.w3.org/1999/xhtml">
<xsl:copy-of select="./*" />
</body>
</xsl:template>

<!--
<xsl:template match="//xhtml:body">
<body xmlns="http://www.w3.org/1999/xhtml">
<xsl:copy-of select="./*[position()=1]" />
<p>
[Full story: 
<a>
<xsl:attribute name="href">
<xsl:value-of select="ancestor::item/link"/>
</xsl:attribute>
<xsl:value-of select="ancestor::item/title"/>
</a>
]
</p>
</body>
</xsl:template>
-->

<xsl:template match="//content:encoded">
</xsl:template>


</xsl:stylesheet>


