]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/news.xsl
This commit was manufactured by cvs2svn to create branch
[helm.git] / helm / mowgli / home / xsl / news.xsl
diff --git a/helm/mowgli/home/xsl/news.xsl b/helm/mowgli/home/xsl/news.xsl
deleted file mode 100644 (file)
index 6ed83b3..0000000
+++ /dev/null
@@ -1,59 +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:output method="xml"/>
-
-<xsl:template match="/">
- <html>
-  <head>
-   <title>News Archive</title>
-  </head>
-  <body>
-    <h1>News Archive</h1>
-    <dl>
-     <xsl:apply-templates/>
-    </dl>
-  </body>
- </html>
-</xsl:template>
-
-<xsl:template match="event">
- <xsl:param name="small" select="false()"/>
- <dt>
-  <b>
-   <xsl:call-template name="print_date">
-    <xsl:with-param name="date" select="date"/>
-   </xsl:call-template>
-  </b>
-  <xsl:if test="header">
-   <xsl:value-of select="' -- '"/>
-   <em>
-    <xsl:value-of select="header"/>
-   </em>
-  </xsl:if>
- </dt>
- <dd>
-  <xsl:copy-of select="description/*|description/text()"/>
-  <xsl:if test="not($small) and who">
-   <br/><br/>
-   <div class="right">
-    <xsl:variable name="who" select="document(concat('../xml/people/',who/@file,'.xml'))/person"/>
-    <em>
-     <a href="people/{who/@file}.html">
-      <div class="small">
-       <xsl:call-template name="person-name">
-        <xsl:with-param name="file" select="who/@file"/>
-       </xsl:call-template>
-      </div>
-     </a>
-    </em>
-   </div>
-  </xsl:if>
- </dd>
-</xsl:template>
-
-</xsl:stylesheet>