<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:rss="http://purl.org/rss/1.0/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	exclude-result-prefixes="rdf rss dc">
	<xsl:output
		method="xml"
		encoding="UTF-8"
		indent="yes" />
	<xsl:template match="/">
		<xsl:apply-templates select="/rdf:RDF/rss:channel" />
	</xsl:template>
	<xsl:template match="rss:channel">
		<CHANNEL HREF="{rss:link}">
			<xsl:apply-templates select="dc:date" />
			<TITLE><xsl:value-of select="rss:title" /></TITLE>
			<xsl:apply-templates select="rss:description" />
			<xsl:apply-templates select="//rss:item" />
		</CHANNEL >
	</xsl:template>
	<xsl:template match="rss:item">
		<ITEM HREF="{rss:link}">
			<xsl:apply-templates select="dc:date" />
			<TITLE><xsl:value-of select="rss:title" /></TITLE>
			<xsl:apply-templates select="rss:description" />
		</ITEM>
	</xsl:template>
	<xsl:template match="rss:description">
		<ABSTRACT><xsl:value-of select="." /></ABSTRACT>
	</xsl:template>
	<xsl:template match="dc:date">
		<xsl:attribute name="LASTMOD">
			<xsl:value-of select="." />
		</xsl:attribute>
	</xsl:template>
</xsl:stylesheet>