]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/work-package.xsl
ocaml 3.09 transition
[helm.git] / helm / mowgli / home / xsl / work-package.xsl
index b6bc9347f817c1ee01d9fa5d10819da187ed5d06..8cb465b5d86e1780ee0c565d15dc4273eb0c18f3 100644 (file)
@@ -5,7 +5,7 @@
 
 <xsl:import href="common.xsl"/>
 
-<xsl:output method="html"/>
+<xsl:output method="xml"/>
 
 <xsl:template match="/">
  <html>
     <xsl:text>: </xsl:text>
     <xsl:value-of select="work-package/name"/>
    </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:apply-templates/>
+    <xsl:apply-templates/>
   </body>
  </html>
 </xsl:template>
   <xsl:text>: </xsl:text>
   <xsl:value-of select="name"/>
  </h1>
- <h2>Begin: <xsl:value-of select="begin"/></h2>
- <h2>End: <xsl:value-of select="end"/></h2>
+ <h2>
+   Begin: <xsl:value-of select="begin"/> &#x0A0;&#x0A0;&#x0A0;
+   End: <xsl:value-of select="end"/>
+ </h2>
+ <h2>
+  <xsl:text>Work Package Leader: </xsl:text>
+  <a href="../people/{leader/@file}.html">
+   <xsl:call-template name="person-name">
+    <xsl:with-param name="file" select="leader/@file"/>
+   </xsl:call-template>
+  </a>
+ </h2>
+ <h2>Contribution of Each Site (in Man Monthes):</h2>
+ <span style="margin-left: 1cm">
  <table>
   <tr>
    <xsl:for-each select="person-month">
-    <td><xsl:value-of select="@participant"/></td>
+    <td>
+     <a href="../sites/{@participant}.html">
+      <xsl:value-of select="@participant"/>
+     </a>
+    </td>
    </xsl:for-each>
   </tr>
   <tr>
    <xsl:for-each select="person-month">
-    <td><xsl:value-of select="@number"/></td>
+    <td align="center"><xsl:value-of select="@number"/></td>
    </xsl:for-each>
   </tr>
  </table>
+ </span>
  <h2>Objectives:</h2>
  <xsl:copy-of select="objectives/*"/>
  <h2>Description:</h2>
- <xsl:copy-of select="description/*"/>
+ <xsl:apply-templates select="description/*"/>
  <h2>Deliverables:</h2>
  <ul>
   <xsl:for-each select="deliverable">
     <xsl:choose>
      <xsl:when test="@file">
       <a href="../deliverables/{@file}.html">
-       <xsl:value-of select="@file"/>
+       <xsl:variable name="deliverable"
+                     select="document(concat('../xml/deliverables/',@file,'.xml'))/deliverable"/>
+       <xsl:value-of select="$deliverable/@id"/>
+       <xsl:text> </xsl:text>
+       <xsl:value-of select="$deliverable/name"/>
       </a>
      </xsl:when>
      <xsl:otherwise>
   </xsl:for-each>
  </ul>
  <h2>Milestones and Expected Results:</h2>
- <xsl:copy-of select="milestone/*"/>
+ <xsl:copy-of select="milestones/*"/>
+</xsl:template>
+
+<xsl:template match="tasks">
+ <dl>
+  <xsl:apply-templates/>
+ </dl>
+</xsl:template>
+
+<xsl:template match="task">
+ <dt>
+  <a name="{@id}"/>
+  <xsl:value-of select="@id"/>
+  <xsl:text> </xsl:text>
+  <xsl:value-of select="name"/>
+ </dt>
+ <dd>
+  <xsl:copy-of select="*"/>
+ </dd>
+</xsl:template>
+
+<xsl:template name="p|ul|dl">
+ <xsl:copy-of select="."/>
 </xsl:template>
 
 </xsl:stylesheet>