]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/work-packages_index.xsl
This commit was manufactured by cvs2svn to create branch 'moogle'.
[helm.git] / helm / mowgli / home / xsl / work-packages_index.xsl
diff --git a/helm/mowgli/home/xsl/work-packages_index.xsl b/helm/mowgli/home/xsl/work-packages_index.xsl
deleted file mode 100644 (file)
index d13fd45..0000000
+++ /dev/null
@@ -1,103 +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>Work Packages</title>
-  </head>
-  <body>
-    <xsl:apply-templates/>
-  </body>
- </html>
-</xsl:template>
-
-<xsl:template match="work-packages">
- <h1>Work Packages</h1>
- <table border="1">
-  <thead>
-   <tr>
-    <td>Work Package:</td>
-    <td>Tasks:</td>
-    <td>Deliverables:</td>
-   </tr>
-  </thead>
-  <tbody>
-   <xsl:apply-templates select="work-package"/>
-  </tbody>
- </table>
- <xsl:copy-of select="description/*"/>
-</xsl:template>
-
-<xsl:template match="work-package">
- <xsl:variable name="work-package"
-               select="document(concat('../xml/work-packages/',@file,'.xml'))/work-package"/>
- <tr>
-  <td valign="top">
-   <xsl:value-of select="$work-package/@number"/>.
-   <a href="{@file}.html">
-    <xsl:value-of select="$work-package/name"/>
-   </a>
-  </td>
-  <td valign="top">
-   <xsl:choose>
-    <xsl:when test="$work-package/description/tasks">
-     <xsl:apply-templates select="$work-package/description/tasks">
-      <xsl:with-param name="url" select="concat(@file,'.html')"/>
-     </xsl:apply-templates>
-    </xsl:when>
-    <xsl:otherwise>&#x00A0;</xsl:otherwise>
-   </xsl:choose>
-  </td>
-  <td valign="top">
-   <xsl:if test="$work-package/deliverable">
-    <ul>
-     <xsl:for-each select="$work-package/deliverable[@file]">
-      <xsl:apply-templates select="document(concat('../xml/deliverables/',@file,'.xml'))/deliverable">
-       <xsl:with-param name="url" select="concat('../deliverables/',@file,'.html')"/>
-      </xsl:apply-templates>
-     </xsl:for-each>
-    </ul>
-   </xsl:if>
-  </td>
- </tr>
-</xsl:template>
-
-<xsl:template match="tasks">
- <xsl:param name="url"/>
- <ul>
-  <xsl:apply-templates>
-   <xsl:with-param name="url" select="$url"/>
-  </xsl:apply-templates>
- </ul>
-</xsl:template>
-
-<xsl:template match="deliverable">
- <xsl:param name="url"/>
- <li>
-  <a href="{$url}">
-   <xsl:value-of select="@id"/>
-   <xsl:text> </xsl:text>
-   <xsl:value-of select="name"/>
-  </a>
- </li>
-</xsl:template>
-
-<xsl:template match="task">
- <xsl:param name="url"/>
- <li>
-  <a href="{$url}#{@id}">
-   <xsl:value-of select="@id"/>
-   <xsl:text> </xsl:text>
-   <xsl:value-of select="name"/>
-  </a>
- </li>
-</xsl:template>
-
-</xsl:stylesheet>