]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/publication.xsl
This commit was manufactured by cvs2svn to create branch
[helm.git] / helm / mowgli / home / xsl / publication.xsl
diff --git a/helm/mowgli/home/xsl/publication.xsl b/helm/mowgli/home/xsl/publication.xsl
deleted file mode 100644 (file)
index 3bd290e..0000000
+++ /dev/null
@@ -1,51 +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><xsl:value-of select="publication/title"/></title>
-  </head>
-  <body>
-    <xsl:apply-templates/>
-  </body>
- </html>
-</xsl:template>
-
-<xsl:template match="publication">
- <h1><xsl:value-of select="title"/></h1>
- <h2>
-  <xsl:for-each select="author">
-   <xsl:choose>
-    <xsl:when test="@file">
-     <a href="../../people/{@file}.html">
-      <xsl:call-template name="person-name">
-       <xsl:with-param name="form" select="'abbreviated'"/>
-       <xsl:with-param name="file" select="@file"/>
-      </xsl:call-template>
-     </a>
-    </xsl:when>
-    <xsl:otherwise>
-     <xsl:value-of select="surname"/>
-     <xsl:text>, </xsl:text>
-     <xsl:value-of select="name"/>
-    </xsl:otherwise>
-   </xsl:choose>
-   <xsl:if test="position() != last()">
-    <xsl:text> ; </xsl:text>
-   </xsl:if>
-  </xsl:for-each>
- </h2>
- <p><xsl:value-of select="where"/></p>
- <xsl:if test="html">
-  <p>Download: <a href="{html/@file}.html">[HTML]</a></p>
- </xsl:if>
-</xsl:template>
-
-</xsl:stylesheet>