]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/work-package.xsl
- main page now generated automatically
[helm.git] / helm / mowgli / home / xsl / work-package.xsl
index 7dd7e93f92cf0dd3bab19b6bf5805de34714c410..b013b880812c2c3812d6fe06ffe20a894f73001f 100644 (file)
    <link rel="stylesheet" href="../../style/mowgli.css" type="text/css"/>
   </head>
   <body>
-   <xsl:apply-templates/>
+    <xsl:call-template name="head">
+     <xsl:with-param name="path_to_top" select="'..'"/>
+    </xsl:call-template>
+    <xsl:apply-templates/>
+    <xsl:call-template name="foot">
+     <xsl:with-param name="path_to_top" select="'..'"/>
+    </xsl:call-template>
   </body>
  </html>
 </xsl:template>
     <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>
@@ -68,7 +78,7 @@
   </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">
 </xsl:template>
 
 <xsl:template match="task">
- <dt><xsl:value-of select="@name"/></dt>
+ <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>