]> matita.cs.unibo.it Git - helm.git/blob - helm/mowgli/home/xsl/approaching-deadlines.xsl
added some stylesheets for list of people and sorting
[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:template match="/">
12   <xsl:variable name="deadlines" select="events/event[position() &lt; 4]/deadline"/>
13   <xsl:apply-templates select="$deadlines">
14     <xsl:sort select="date" data-type="number"/>
15   </xsl:apply-templates>
16 </xsl:template>
17
18 </xsl:stylesheet>
19