]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/style/theory_pres.xsl
Theory level DTD changed and .theory.xml files exported again.
[helm.git] / helm / style / theory_pres.xsl
index e2745fd0625c3c4a01734e16714bec1cd64d0aa7..6456301a658be30be94664494b7341d5f110f709 100644 (file)
@@ -31,7 +31,7 @@
 <!--***********************************************************************--> 
 
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                              xmlns:m="http://www.w3.org/1998/Math/MathML">
+                              xmlns:ht="http://www.cs.unibo.it/helm/namespaces/helm-theory">
 
 <!--<xsl:output method="html" encoding="iso-8859-1"/>-->
 <xsl:output 
        doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
        doctype-system="DTD/xhtml1-transitional.dtd" />
 
-<xsl:template match="Theory">
-     <html> 
-      <head></head>
-      <body>
-       <h2>THEORY<xsl:text>&#x00a0;</xsl:text><xsl:value-of select="@name"/></h2>
-       <xsl:apply-templates select="*"/>
-       <h2>END THEORY</h2>
-      </body>
-     </html>
+<xsl:template match="ht:SECTION">
+     <h3>BEGIN SECTION<xsl:text>&#x00a0;</xsl:text><xsl:value-of select="@name"/></h3>
+     <xsl:apply-templates select="*"/>
+     <h3>END SECTION</h3>
 </xsl:template>
 
-<xsl:template match="SECTION">
-     <h3>BEGIN SECTION</h3>
+<xsl:template match="ht:MUTUAL">
+     <h4>BEGIN MUTUAL DEFINITIONS</h4>
      <xsl:apply-templates select="*"/>
-     <h3>END SECTION</h3>
+     <h4>END MUTUAL DEFINITIONS</h4>
 </xsl:template>
 
-<xsl:template match="THEOREM|LEMMA|COROLLARY|FACT">
-    <h4><xsl:value-of select="name(.)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h4>
+<xsl:template match="ht:THEOREM">
+    <h5><xsl:value-of select="@as"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h5>
     <ENTITY uri="{@uri}" type="1"/>
 </xsl:template>
 
-<xsl:template match="AXIOM|DEFINITION|VARIABLE">
-    <h4><xsl:value-of select="name(.)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h4>
+<xsl:template match="ht:AXIOM|ht:VARIABLE">
+    <h5><xsl:value-of select="substring-after(string(name(.)), &quot;ht:&quot;)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h5>
+    <ENTITY uri="{@uri}" type="0"/>
+</xsl:template>
+
+<xsl:template match="ht:DEFINITION">
+<xsl:variable name="name"><xsl:choose><xsl:when test="@as='Inductive'">Inductive Definition</xsl:when><xsl:when test="@as='CoInductive'">CoInductive Definition</xsl:when><xsl:when test="@as='Record'">Record Definition</xsl:when><xsl:otherwise>Definition</xsl:otherwise></xsl:choose></xsl:variable>
+    <h5><xsl:value-of select="string($name)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h5>
     <ENTITY uri="{@uri}" type="0"/>
 </xsl:template>
 
+<!-- Root and XHTML -->
+
+<xsl:template match = "/|*">
+  <xsl:copy>
+   <xsl:copy-of select="@*"/>
+   <xsl:apply-templates/>
+  </xsl:copy>
+</xsl:template>
+
 </xsl:stylesheet>
+
+
+
+
+
+
+