]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/style/theory_pres.xsl
- the mathql interpreter is not helm-dependent any more
[helm.git] / helm / style / theory_pres.xsl
index d298418ae374b7a939fef1b693e0aa709f103b00..47b2622c86b93c9751f72623f7f1f1186d3005bf 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">
+     <xsl:apply-templates select="*"/>
 </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>
-    <ENTITY uri="{@uri}" type="1"/>
-
-<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>
-    <ENTITY uri="{@uri}" type="0"/>
+<xsl:template match="ht:OBJECT">
+ <xsl:variable name="delimiter">
+  <xsl:if test="@mode != 'linkonly'">
+   <xsl:text>:</xsl:text>
+  </xsl:if>
+ </xsl:variable>
+    <table>
+     <tr>
+      <td colspan="2">
+       <b>Object<xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a><xsl:value-of select="$delimiter"/></b>
+      </td>
+     </tr>
+     <xsl:if test="@mode != 'linkonly'">
+      <tr>
+       <td>&#x00a0;&#x00a0;&#x00a0;</td>
+       <td><ENTITY uri="{@uri}" type="{@mode}"/></td>
+      </tr>
+     </xsl:if>
+    </table>
 </xsl:template>
 
-</xsl:stylesheet>
-
-
-
-
+<xsl:template match="ht:THEOREM">
+    <table>
+     <tr>
+      <td colspan="2">
+       <b><xsl:value-of select="@as"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a>:</b>
+      </td>
+     </tr>
+     <tr>
+      <td>&#x00a0;&#x00a0;&#x00a0;</td>
+      <td><ENTITY uri="{@uri}" type="typeonly"/></td>
+     </tr>
+    </table>
+</xsl:template>
 
+<xsl:template match="ht:AXIOM|ht:VARIABLE">
+    <table>
+     <tr>
+      <td colspan="2">
+       <b><xsl:value-of select="substring-after(string(name(.)), &quot;ht:&quot;)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a>:</b>
+      </td>
+     </tr>
+     <tr>
+      <td>&#x00a0;&#x00a0;&#x00a0;</td>
+      <td><ENTITY uri="{@uri}" type="embed"/></td>
+     </tr>
+    </table>
+</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>
+    <table>
+     <tr>
+      <td colspan="2">
+       <b><xsl:value-of select="string($name)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a>:</b>
+      </td>
+     </tr>
+     <tr>
+      <td>&#x00a0;&#x00a0;&#x00a0;</td>
+      <td><ENTITY uri="{@uri}" type="embed"/></td>
+     </tr>
+    </table>
+</xsl:template>
 
+<!-- Root and XHTML -->
 
+<xsl:template match = "/|*">
+  <xsl:copy>
+   <xsl:copy-of select="@*"/>
+   <xsl:apply-templates/>
+  </xsl:copy>
+</xsl:template>
 
+</xsl:stylesheet>