xsl/calendar-summary: skip events older than 1 year

should speed up build process by much
This commit is contained in:
Astro 2012-03-06 19:06:38 +01:00
parent e6fff13329
commit 2ca0fcf4f7
1 changed files with 34 additions and 30 deletions

View File

@ -29,6 +29,9 @@
<xsl:template match="event">
<xsl:param name="link"/>
<!-- Events must have started at least one year ago -->
<xsl:variable name="minstart" select="date:add(date:date-time(), '-P366D')"/>
<xsl:if test="starts-with(date:difference(start, $minstart), '-')">
<event>
<title>
<xsl:choose>
@ -59,6 +62,7 @@
</link>
<!-- TODO: Link -->
</event>
</xsl:if>
</xsl:template>
</xsl:stylesheet>