<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:rss="http://purl.org/rss/1.0/"
	xmlns:i='http://www.w3.org/2002/12/cal/ical#'
	xmlns:x='http://www.w3.org/2002/12/cal/prod/Apple_Comp_273def595c8b3485#'
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
	xmlns:contact="http://www.w3.org/2000/10/swap/pim/contact#"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:xhtml="http://www.w3.org/1999/xhtml"
	xmlns:foaf="http://xmlns.com/foaf/0.1/"
	xmlns:dc ="http://purl.org/dc/elements/1.1/"
	xmlns:dcterms="http://purl.org/dc/terms/"
	xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
	xmlns:date="http://exslt.org/dates-and-times"
	extension-element-prefixes="date rss i x rdf rdfs contact content xhtml foaf dc dcterms trackback "
>

<xsl:output 
	method="xml"
	doctype-public="-//W3C//DTD XHTML 1.1//EN"
	doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
	encoding="utf-8"
	indent="yes"
/> 


<xsl:variable name="now" select="date:date-time()"/>
<!--<xsl:variable name="day" select="date:add($now,'P1M')"/>-->
<xsl:variable name="day" select="$now"/>
<xsl:variable name="mm" select="date:month-in-year($day)"/>
<xsl:variable name="beginningmonth" select="concat(substring($day,1,8),'01')"/>


<xsl:template match="/">
	<xsl:apply-templates select="rdf:RDF"/>
</xsl:template>

<xsl:include href="rical2html.xsl"/>

</xsl:stylesheet> 
