]> matita.cs.unibo.it Git - helm.git/commitdiff
Modified Files:
authorIrene Schena <irene.schena@unibo.it>
Tue, 6 Feb 2001 12:20:16 +0000 (12:20 +0000)
committerIrene Schena <irene.schena@unibo.it>
Tue, 6 Feb 2001 12:20:16 +0000 (12:20 +0000)
1) basic.xsl, content.xsl, content_to_html.xsl, html_init.xsl,
html_reals.xsl, html_set.xsl, proofs.xsl, reals.xsl, ricerca.xsl,
set.xsl: removed variable declaration of absPath
2) theory_content.xsl: added comments
2) rootcontent.xsl: inserted variable declaration of absPath
3) mmlextension.xsl: added parenthesis to the first arrow

13 files changed:
helm/style/basic.xsl
helm/style/content.xsl
helm/style/content_to_html.xsl
helm/style/html_init.xsl
helm/style/html_reals.xsl
helm/style/html_set.xsl
helm/style/mmlextension.xsl
helm/style/proofs.xsl
helm/style/reals.xsl
helm/style/ricerca.xsl
helm/style/rootcontent.xsl
helm/style/set.xsl
helm/style/theory_content.xsl

index 76258e733b854e1cf4aed845bcd89c8fa9126dee..3e385b68032e8dd144a917573d1bd417d5fe387d 100644 (file)
                               xmlns:m="http://www.w3.org/1998/Math/MathML"
                               xmlns:helm="http://www.cs.unibo.it/helm">
 
-<!--******************************************************************-->
-<!-- Variable containing the absolute path of the CIC file            -->
-<!--******************************************************************-->
-
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
 
 <!-- ************************* LOGIC *********************************-->
 
index 65f9825128b4eb13d0208c8b2def3e359ea71786..6f2226bbf7c6f04cd93fa94e03d0c636cda33c41 100644 (file)
@@ -57,11 +57,6 @@ la forma cic:/.../ in definitionURL e questo schema di uri verra' risolto da
 Amaya o da chi di dovere in /really_very_local/helm/PARSER/example/.../]
 -->
 
-<!--******************************************************************-->
-<!-- Variable containing the absolute path of the CIC file            -->
-<!--******************************************************************-->
-
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
 
 <!-- CIC TERMS -->
 
index d352da2a9a6d713dbc99819d8b68a1e15519a968..5b57eb0ff19859363a9c0d74bf25ee064bed9877 100644 (file)
 <xsl:include href="html_set.xsl"/>
 <xsl:include href="html_reals.xsl"/>
 
-
-<!-- <xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>-->
-<xsl:variable name="header" select="document('http://localhost:8081/conf')/html_link"/>
-
 <xsl:variable name="showcast" select="0"/>
 
 
index 0fad1aeab7d6cb33c1127ab176d42c90624ecb1e..bb6bea3ba064347478c777b5c9c2f91d6c1b65fa 100644 (file)
@@ -32,9 +32,6 @@
 <!-- HELM Group: Asperti, Padovani, Sacerdoti, Schena                      -->
 <!--***********************************************************************--> 
 
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
-
-
 <!-- BASIC OPERATORS -->
 
  <xsl:template match="m:apply[m:and|m:or|m:eq|m:neq|m:leq|m:lt
index eb04dbb6f8dd58cff8f4f68d57e13e31b07d268b..de3196b128118af37f2538009623f992a92449a5 100644 (file)
@@ -32,8 +32,6 @@
 <!-- HELM Group: Asperti, Padovani, Sacerdoti, Schena                      -->
 <!--***********************************************************************--> 
 
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
-
 <!-- LIMIT -->
 
 <xsl:template match="m:apply[m:limit]">
index cafdbefc40cf92cc9fcdafe06ebe6b2dce38e49f..78f4a5b9ea98e0c01ed0b1c9d7bd8c40b3fc2dbb 100644 (file)
@@ -32,8 +32,6 @@
 <!-- HELM Group: Asperti, Padovani, Sacerdoti, Schena                      -->
 <!--***********************************************************************--> 
 
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
-
 <!-- IN -->
 
  <xsl:template match="m:apply[m:in]">
index f9dcfae51b6dd0ee8cb0809ad77fd7398982ea7a..90f8cca103d34b091ebb4af014c0c21b1f953857 100644 (file)
 <!-- CSYMBOL -->
 
 <xsl:template match="m:apply[m:csymbol]">
-<xsl:param name="nopar" select="1"/>
+<xsl:param name="nopar" select="0"/>
     <xsl:variable name="name"><xsl:value-of select="m:csymbol"/></xsl:variable>
     <xsl:variable name="charlength"><xsl:apply-templates select="m:csymbol" mode="charcount"/></xsl:variable>
     <m:mrow>
             <xsl:if test="$nopar=0">
              <m:mo stretchy="false">(</m:mo>
             </xsl:if>
-            <xsl:apply-templates select="*[position()=2]"><xsl:with-param name="nopar" select="0"/></xsl:apply-templates>
+            <xsl:apply-templates select="*[position()=2]"/>
            </m:mrow>
           </m:mtd>
          </m:mtr>
               <xsl:apply-templates select="*[position()=3]"><xsl:with-param name="nopar" select="1"/></xsl:apply-templates>
              </xsl:when>
              <xsl:otherwise>
-              <xsl:apply-templates select="*[position()=3]"><xsl:with-param name="nopar" select="0"/></xsl:apply-templates>
+              <xsl:apply-templates select="*[position()=3]"/>
              </xsl:otherwise>
              </xsl:choose>
             </xsl:when>
             <xsl:otherwise>
-             <xsl:apply-templates select="*[position()=3]"><xsl:with-param name="nopar" select="0"/></xsl:apply-templates>
+             <xsl:apply-templates select="*[position()=3]"/>
             </xsl:otherwise>
             </xsl:choose>
            </m:mrow>
         <xsl:if test="$nopar=0">
          <m:mo stretchy="false">(</m:mo>
         </xsl:if>
-        <xsl:apply-templates select="*[position()=2]"><xsl:with-param name="nopar" select="0"/></xsl:apply-templates>
+        <xsl:apply-templates select="*[position()=2]"/>
         <m:mo mathcolor="Blue">&#x2192;</m:mo>
         <xsl:choose>
         <xsl:when test="*[position()=3]/m:csymbol">
           <xsl:apply-templates select="*[position()=3]"><xsl:with-param name="nopar" select="1"/></xsl:apply-templates>
          </xsl:when>
          <xsl:otherwise>
-          <xsl:apply-templates select="*[position()=3]"><xsl:with-param name="nopar" select="0"/></xsl:apply-templates>
+          <xsl:apply-templates select="*[position()=3]"/>
          </xsl:otherwise>
          </xsl:choose>
         </xsl:when>
         <xsl:otherwise>
-         <xsl:apply-templates select="*[position()=3]"><xsl:with-param name="nopar" select="0"/></xsl:apply-templates>
+         <xsl:apply-templates select="*[position()=3]"/>
         </xsl:otherwise>
         </xsl:choose>
         <xsl:if test="$nopar=0">
index 09045cef239c866d0b4ebba8c3b02ed2f1484e11..760511fd2b193d513c98b05b56f9754d628ce261 100644 (file)
                               xmlns:m="http://www.w3.org/1998/Math/MathML"
                               xmlns:helm="http://www.cs.unibo.it/helm">
 
-<!--******************************************************************-->
-<!-- Variable containing the absolute path of the CIC file            -->
-<!--******************************************************************-->
-
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
 
 <!-- ************************* LOGIC *********************************-->
 
index 7a1a0d1839de749ac5c4e0a23491d0f565f00393..6c6f1a7555e49a6705058094f4206195244a4480 100644 (file)
                               xmlns:helm="http://www.cs.unibo.it/helm"
                               xmlns:xlink="http://www.w3.org/1999/xlink">
 
-<!--******************************************************************-->
-<!-- Variable containing the absolute path of the CIC file            -->
-<!--******************************************************************-->
-
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
 
 <!-- ************************* LOGIC *********************************-->
 
index 1ccfd1db87033f1b68af90b3e340207635122a75..b9502139d1f25c4258ea071598b0f7e9d000ab64 100644 (file)
 <xsl:output method="html"/>
 
 
-<!--******************************************************************-->
-<!-- Variable containing the absolute path of the CIC file            -->
-<!--******************************************************************-->
-
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
-
 <xsl:template match="/">
                <html> 
                 <head></head>
index c12db2732eae80521108f6d8c1b07c38a21d5c13..0220168335e9fbcc29a9757234558bb1feb4a2b5 100644 (file)
 
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
+<!--******************************************************************-->
+<!-- Variable containing the absolute path of the CIC file            -->
+<!--******************************************************************-->
+
+<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
 
 <xsl:import href="annotatedcont.xsl"/>
 <xsl:key name="id" use="@id" match="LAMBDA|LETIN|PROD|CAST|REL|SORT|APPLY|VAR|META|CONST|MUTIND|MUTCONSTRUCT|MUTCASE|FIX|COFIX|Definition|Axiom|CurrentProof|InductiveDefinition|Variable"/>
index 6fc55645a2c984443e05cfb522cae765ea997037..849365f3f6f155b1bda2ae33150525752dd6e99b 100644 (file)
                               xmlns:m="http://www.w3.org/1998/Math/MathML"
                               xmlns:helm="http://www.cs.unibo.it/helm">
 
-<!--******************************************************************-->
-<!-- Variable containing the absolute path of the CIC file            -->
-<!--******************************************************************-->
-
-<xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
 
 <!-- ************************* LOGIC *********************************-->
 
index da4232a23f9960dad53b728610fcc93ea099476d..3129ca5dd19ecc5332e4fd5adab6a427dd713e55 100644 (file)
@@ -79,3 +79,8 @@
 </xsl:template>
 
 </xsl:stylesheet>
+
+
+
+
+