<?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="/ultraseek_query/results">
<rss version="2.0">
<channel>
<description>
InfoWorld search results for Udell
</description>
<link>
http://search.infoworld.com/
</link>
<title>
InfoWorld search results for Udell
</title>
<xsl:apply-templates select="result" />
</channel>
</rss>
</xsl:template>


<xsl:template match="result">
<item>
<link>
<xsl:value-of select="@href" />
</link>
<description>
<xsl:value-of select="summary" />
</description>
<title>
<xsl:value-of select="title" />
</title>
</item>
</xsl:template>

<xsl:template match="text()">
</xsl:template>



</xsl:stylesheet>
