<?xml version="1.0"?>
<xsl:stylesheet
     version="1.0"
     xmlns:dateManipulator="urn:dateManipulator"
     xmlns="EssayList"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output
          omit-xml-declaration="no"
          method="xml" />



     <xsl:template match="EssayList">

<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/">
              <channel>
                    <title>David's Essays</title>
                    <link>http://www.rationalmind.net/david/essays</link>
                    <description>Essays Written by David Veksler</description>
                    <language>en-us</language>
                    <copyright>2000-2004 David Veksler</copyright>
                    <lastBuildDate><xsl:value-of select="Date" /></lastBuildDate>
                    <docs>http://backend.userland.com/rss</docs>
                    <generator>David Veklser's Manual</generator>
                    <category domain="rationalmind.net">Essays</category>
                    <xsl:apply-templates select="EssayList" />

 <xsl:for-each select="DocumentList/Document">
          <item>
               <title><xsl:value-of select="Title" /></title>
               <pubDate><xsl:value-of select="Date" /></pubDate>
               <guid isPermaLink="true"><xsl:value-of select="Link" /></guid>
               <category><xsl:value-of select="Level" /></category>
               <author>David</author>
               <link><xsl:value-of select="Link" /></link>
               <description disable-output-escaping="yes"><xsl:value-of select="Title" /></description>
          </item>

		</xsl:for-each>
	</channel>
          </rss>


               

     </xsl:template>
</xsl:stylesheet>
