]> matita.cs.unibo.it Git - helm.git/blob - helm/mowgli/home/xsl/approaching-deadlines.xsl
* Notion of future and past events/deadlines introduced.
[helm.git] / helm / mowgli / home / xsl / approaching-deadlines.xsl
1 <?xml version="1.0"?>
2
3 <xsl:stylesheet version="1.0"
4                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5
6 <xsl:import href="common.xsl"/>
7 <xsl:import href="deadlines.xsl"/>
8
9 <xsl:output method="html"/>
10
11 <xsl:param name="today"/>
12
13 <xsl:template match="/">
14   <h3>Approaching Deadlines:</h3>
15   <xsl:for-each select="events/event/deadline[date &gt;= $today]">
16    <xsl:sort select="date" data-type="number"/>
17    <xsl:if test="position() &lt; 4">
18     <xsl:apply-templates select="."/>
19    </xsl:if>
20   </xsl:for-each>
21 </xsl:template>
22
23 </xsl:stylesheet>