]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/people-list.xsl
Modified Files:
[helm.git] / helm / mowgli / home / xsl / people-list.xsl
index a40d62272e6c56deaa4bfed47babf7b1a804e185..fb1cbcc515552a9a2a3be32f66348b3116ab00b8 100644 (file)
@@ -5,19 +5,14 @@
 
 <xsl:import href="common.xsl"/>
 
-<xsl:output method="html"/>
+<xsl:output method="xml"/>
 
 <xsl:template match="people">
  <html>
   <head>
    <title>People Directory</title>
-   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-   <link rel="stylesheet" href="../style/mowgli.css" type="text/css"/>
   </head>
   <body>
-    <xsl:call-template name="head">
-     <xsl:with-param name="path_to_top" select="'.'"/>
-    </xsl:call-template>
     <h1>People</h1>
 
     <table border="0" width="100%">
@@ -26,7 +21,6 @@
 
     <h3><a name="#site">By Site</a></h3>
     <xsl:apply-templates select="from">
-      <xsl:sort select="@site"/>
     </xsl:apply-templates>
 
     </td>
     </td>
     </tr>
     </table>
-
-    <xsl:call-template name="foot">
-     <xsl:with-param name="path_to_top" select="'.'"/>
-    </xsl:call-template>
   </body>
  </html>
 </xsl:template>
  <xsl:apply-templates select="$site/name | $site/subsite[1]/name">
   <xsl:with-param name="file" select="@site"/>
  </xsl:apply-templates>
- <xsl:apply-templates select="person">
-  <xsl:sort select="@file"/>
- </xsl:apply-templates>
+ <xsl:apply-templates select="person"/>
 </xsl:template>
 
 </xsl:stylesheet>
-