<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"/>
	<xsl:template match="/">
		<xsl:apply-templates/>
	</xsl:template>
  
	<xsl:template match="rss">
		<xsl:apply-templates select="channel"/>
	</xsl:template>
  
	<xsl:template match="channel">
		<xsl:element name="data">
			<xsl:apply-templates select="item"/>
		</xsl:element>
	</xsl:template>
  
	<xsl:template match="channel/item">
		<xsl:element name="event">
			<xsl:attribute name="start"><xsl:apply-templates select="pubDate"/></xsl:attribute>
			<xsl:attribute name="title"><xsl:apply-templates select="title"/></xsl:attribute>
			<xsl:attribute name="link"><xsl:apply-templates select="link"/></xsl:attribute>
			<xsl:apply-templates select="description"/>
		</xsl:element>
	</xsl:template>
  
	<xsl:template match="item/title">
		<xsl:apply-templates/>
	</xsl:template>
	
	<xsl:template match="item/description">
		<xsl:apply-templates/>
	</xsl:template>
	  
	<xsl:template match="item/pubDate">
		<xsl:apply-templates/>
	</xsl:template>
	  
	<xsl:template match="item/link">
	      <xsl:apply-templates/>
	</xsl:template>
</xsl:stylesheet>