]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/papers/use_case/stats/extract.xsl
removed papers that have been moved to the new "papers" repository
[helm.git] / helm / papers / use_case / stats / extract.xsl
diff --git a/helm/papers/use_case/stats/extract.xsl b/helm/papers/use_case/stats/extract.xsl
deleted file mode 100644 (file)
index 3704d92..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<xsl:stylesheet version="1.0"
-                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:html="http://www.w3.org/1999/xhtml"
-                xmlns:xlink="http://www.w3.org/1999/xlink"
-                xmlns:m="http://www.w3.org/1998/Math/MathML"
-                xmlns:box="http://helm.cs.unibo.it/2003/BoxML"
->
-
-<xsl:param name="uri" select="''"/>
-
-<xsl:output method="text"/>
-
-<xsl:template match="/">
- <xsl:choose>
-  <xsl:when test="$uri=''">
-   <xsl:apply-templates select="statistics/stats"/>
-  </xsl:when>
-  <xsl:otherwise>
-   <xsl:apply-templates select="statistics/stats[@for=$uri]"/>
-  </xsl:otherwise>
- </xsl:choose>
-</xsl:template>
-
-<xsl:template match="stats">
-  <xsl:value-of select="@for"/>
-  <xsl:text> </xsl:text>
-  <xsl:value-of select="size"/>
-  <xsl:text> </xsl:text>
-  <xsl:value-of select="number(elements/total) + number(text-nodes/total)"/>
-  <xsl:text> </xsl:text>
-  <xsl:value-of select="depth/max"/>
-  <xsl:text>
-</xsl:text>
-</xsl:template>
-
-</xsl:stylesheet>
-