]> matita.cs.unibo.it Git - helm.git/blob - helm/mowgli/home/xsl/deadlines.xsl
- list of people
[helm.git] / helm / mowgli / home / xsl / 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
8 <xsl:output method="html"/>
9
10 <xsl:template match="/">
11  <html>
12   <head>
13    <title>Events Sorted by Deadlines</title>
14    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
15    <link rel="stylesheet" href="../style/mowgli.css" type="text/css"/>
16   </head>
17   <body>
18     <xsl:call-template name="head">
19      <xsl:with-param name="path_to_top" select="'.'"/>
20     </xsl:call-template>
21     <h1>Events</h1>
22     [<a href="events.html">Sorted by event date</a>] [Sorted by deadline]
23     <br /><br />
24     <hr />
25     <ul>
26      <xsl:apply-templates select="events/event/deadline"/>
27     </ul>
28     <xsl:call-template name="foot">
29      <xsl:with-param name="path_to_top" select="'.'"/>
30     </xsl:call-template>
31   </body>
32  </html>
33 </xsl:template>
34
35 <xsl:template match="deadline">
36  <li>
37   <b>
38    <xsl:variable name="kind">
39     <xsl:call-template name="color_of_deadline_kind">
40      <xsl:with-param name="kind" select="@kind"/>
41     </xsl:call-template>
42    </xsl:variable>
43    <span style="color: {$kind}">
44     <xsl:call-template name="print_date">
45      <xsl:with-param name="date" select="date/text()"/>
46     </xsl:call-template>
47    </span>
48   </b>
49   <xsl:text> </xsl:text>
50   <xsl:value-of select="description"/>
51   <xsl:text> </xsl:text>
52   <a href="{../url}" target="_top"><xsl:value-of select="../name"/></a>
53  </li>
54 </xsl:template>
55
56 </xsl:stylesheet>
57