]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/approaching-deadlines.xsl
This commit was manufactured by cvs2svn to create branch 'moogle'.
[helm.git] / helm / mowgli / home / xsl / approaching-deadlines.xsl
diff --git a/helm/mowgli/home/xsl/approaching-deadlines.xsl b/helm/mowgli/home/xsl/approaching-deadlines.xsl
deleted file mode 100644 (file)
index 7a7317f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-
-<xsl:stylesheet version="1.0"
-                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-<xsl:import href="common.xsl"/>
-<xsl:import href="deadlines.xsl"/>
-
-<xsl:output method="xml"/>
-
-<xsl:param name="today"/>
-
-<xsl:template match="/">
- <html-fragment>
-  <h3>Approaching Deadlines:</h3>
-  <xsl:for-each select="events/event/deadline[date &gt;= $today]">
-   <xsl:sort select="date" data-type="number"/>
-   <xsl:if test="position() &lt; 4">
-    <xsl:apply-templates select="."/>
-   </xsl:if>
-  </xsl:for-each>
- </html-fragment>
-</xsl:template>
-
-</xsl:stylesheet>