3 <!--******************************************************************-->
4 <!-- XSLT version 0.1 of CIC objects to MathML content: -->
5 <!-- First draft: February 14 2000, Andrea Asperti, Irene Schena -->
6 <!-- Revised: March 3 2000, Irene Schena -->
7 <!-- Revised: March 10 2000, Irene Schena -->
8 <!-- Revised: March 15 2000, Claudio Sacerdoti Coen, Irene Schena -->
9 <!--******************************************************************-->
11 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12 xmlns:m="http://www.w3.org/1998/Math/MathML"
13 xmlns:helm="http://www.cs.unibo.it/helm">
15 <xsl:include href="params.xsl"/>
21 omit-xml-declaration="no"
23 doctype-public="http://www.w3.org/TR/REC-MathML"
25 media-type="text/mathml" /> -->
28 1)risolvere nella fase di pre-processing le uri relative delle var, settando
30 definitionURL dell'oggetto corrispondente (alcuni punteranno a nulla! -quelli
31 che non hanno il file di definizione corrispondente-); [le uri assolute hanno
32 la forma cic:/.../ in definitionURL e questo schema di uri verra' risolto da
33 Amaya o da chi di dovere in /really_very_local/helm/PARSER/example/.../]
36 <!--******************************************************************-->
37 <!-- Variable containing the absolute path of the CIC file -->
38 <!--******************************************************************-->
40 <xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
44 <xsl:template match="LAMBDA" mode="pure">
45 <m:lambda helm:xref="{@id}">
48 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="target/@binder"/></xsl:with-param></xsl:call-template>
51 <xsl:apply-templates select="source/*[1]" mode="noannot"/>
54 <xsl:apply-templates select="target/*[1]" mode="noannot"/>
58 <xsl:template match="PROD" mode="pure">
59 <m:apply helm:xref="{@id}">
61 <xsl:when test="string(target/@binder)= """>
62 <m:csymbol>arrow</m:csymbol>
63 <xsl:apply-templates select="source/*[1]" mode="noannot"/>
67 <xsl:when test="@type = 'Prop'">
68 <m:csymbol>forall</m:csymbol>
71 <m:csymbol>prod</m:csymbol>
76 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="target/@binder"/></xsl:with-param></xsl:call-template>
79 <xsl:apply-templates select="source/*[1]" mode="noannot"/>
84 <xsl:apply-templates select="target/*[1]" mode="noannot"/>
88 <xsl:template match="CAST" mode="pure">
89 <m:apply helm:xref="{@id}">
90 <m:csymbol>cast</m:csymbol>
91 <xsl:apply-templates mode="noannot" select="*/*"/>
95 <xsl:template match="REL" mode="pure">
96 <m:ci helm:xref="{@id}">
97 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="@binder"/></xsl:with-param></xsl:call-template>
101 <xsl:template match="SORT" mode="pure">
102 <m:apply helm:xref="{@id}">
104 <xsl:value-of select="@value"/>
109 <xsl:template match="APPLY" mode="pure">
111 <!-- <xsl:when test="//InnerTypes and boolean(key('typeid',*/@id))"> -->
112 <!-- start looking for subproofs -->
113 <!-- <xsl:when test="((*/@id) = (//InnerTypes/TYPE/@of))"> -->
114 <xsl:when test="//InnerTypes and count(*[@sort='Prop' and (name(.)='LAMBDA' or name(.)='LETIN' or name(.)='APPLY' or name(.)='MUTCASE' or name(.)='FIX' or name(.)='COFIX')]) > 0">
115 <m:apply helm:xref="{@id}">
116 <m:csymbol>letin</m:csymbol>
117 <!-- <xsl:for-each select="*[boolean(key('typeid',@id))]"> -->
118 <!-- first process all subproofs (let-in) -->
119 <xsl:for-each select="*[@sort='Prop' and (name(.)='LAMBDA' or name(.)='LETIN' or name(.)='APPLY' or name(.)='MUTCASE' or name(.)='FIX' or name(.)='COFIX')]">
121 <m:csymbol>let</m:csymbol>
122 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="concat('h',position())"/></xsl:with-param></xsl:call-template></m:ci>
123 <xsl:apply-templates mode="noannot" select="."/>
126 <!-- now re-process the application in mode appflat -->
127 <xsl:apply-templates mode="appflat" select="."/>
131 <xsl:apply-templates mode="appflat" select="."/>
136 <xsl:template match="APPLY" mode="appflat">
137 <m:apply helm:xref="{@id}">
138 <m:csymbol>app</m:csymbol>
139 <!-- mode flat looks for siblings: call with the first child -->
140 <xsl:apply-templates mode="flat" select="*[1]"/>
144 <xsl:template match="*" mode="flat">
145 <xsl:param name="n" select="1"/>
146 <xsl:variable name="id" select="@id"/>
148 <!-- <xsl:when test="key('typeid',@id)"> -->
149 <!-- <xsl:when test="//InnerTypes/TYPE[@of=$id]"> -->
150 <xsl:when test="//InnerTypes and @sort='Prop' and (name(.)='LAMBDA' or name(.)='LETIN' or name(.)='APPLY' or name(.)='MUTCASE' or name(.)='FIX' or name(.)='COFIX')">
152 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="concat('h',$n)"/></xsl:with-param></xsl:call-template>
154 <xsl:apply-templates mode="flat" select="following-sibling::*[1]">
155 <xsl:with-param name="n" select="$n+1"/>
156 </xsl:apply-templates>
159 <xsl:apply-templates mode="pure" select="."/>
160 <xsl:apply-templates mode="flat" select="following-sibling::*[1]">
161 <xsl:with-param name="n" select="$n"/>
162 </xsl:apply-templates>
167 <xsl:template match="VAR" mode="pure">
168 <m:ci helm:xref="{@id}">
169 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="substring-after(@relUri,",")"/></xsl:with-param></xsl:call-template>
173 <xsl:template match="META" mode="pure">
174 <m:ci helm:xref="{@id}">
175 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="@no"/></xsl:with-param></xsl:call-template>
179 <xsl:template match="CONST" mode="pure">
180 <m:ci definitionURL="{@uri}" helm:xref="{@id}">
181 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:call-template name="name_of_uri">
182 <xsl:with-param name="uri" select="@uri"/>
183 </xsl:call-template></xsl:with-param></xsl:call-template>
184 <!-- <xsl:value-of select="document(concat(string($absPath),@uri))/*/@name"/> -->
188 <xsl:template match="MUTIND" mode="pure">
189 <m:ci definitionURL="{@uri}" helm:xref="{@id}">
190 <xsl:variable name="index"><xsl:value-of select="@noType"/></xsl:variable>
191 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="document(concat(string($absPath),@uri))/InductiveDefinition/InductiveType[position()=number($index)+1]/@name"/></xsl:with-param></xsl:call-template>
195 <xsl:template match="MUTCONSTRUCT" mode="pure">
196 <m:ci definitionURL="{@uri}" helm:xref="{@id}">
197 <xsl:variable name="Tindex"><xsl:value-of select="@noType"/></xsl:variable>
198 <xsl:variable name="Cindex"><xsl:value-of select="@noConstr"/></xsl:variable>
199 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="document(concat(string($absPath),@uri))/InductiveDefinition/InductiveType[position()=number($Tindex)+1]/Constructor[position()=number($Cindex)]/@name"/></xsl:with-param></xsl:call-template>
203 <xsl:template match="MUTCASE" mode="pure">
204 <xsl:variable name="Tindex"><xsl:value-of select="@noType"/></xsl:variable>
205 <xsl:variable name="Turi"><xsl:value-of select="@uriType"/></xsl:variable>
206 <m:apply helm:xref="{@id}">
207 <m:csymbol>mutcase</m:csymbol>
208 <xsl:apply-templates select="patternsType/*[1]" mode="noannot"/>
209 <xsl:apply-templates select="inductiveTerm/*[1]" mode="noannot"/>
210 <xsl:variable name="nop"><xsl:value-of select="document(concat(string($absPath),$Turi))/InductiveDefinition/@noParams"/></xsl:variable>
211 <xsl:for-each select="pattern">
212 <xsl:variable name="pos" select="position()"/>
213 <xsl:variable name="nopar"><xsl:apply-templates select="document(concat(string($absPath),$Turi))/InductiveDefinition/InductiveType[position()=number($Tindex)+1]/Constructor[position()=number($pos)]/*[1]" mode="counting"><xsl:with-param name="noparams" select="$nop"/></xsl:apply-templates></xsl:variable>
215 <xsl:when test="$nopar = 0">
217 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="document(concat(string($absPath),$Turi))/InductiveDefinition/InductiveType[position()=number($Tindex)+1]/Constructor[position()=number($pos)]/@name"/></xsl:with-param></xsl:call-template>
222 <m:csymbol>app</m:csymbol>
224 <xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="document(concat(string($absPath),$Turi))/InductiveDefinition/InductiveType[position()=number($Tindex)+1]/Constructor[position()=number($pos)]/@name"/></xsl:with-param></xsl:call-template>
226 <xsl:apply-templates select="./*[1]" mode="abstparams"><xsl:with-param name="noparams" select="$nopar"/><xsl:with-param name="binder">LAMBDA</xsl:with-param></xsl:apply-templates>
230 <xsl:apply-templates select="./*[1]" mode="abstparams"><xsl:with-param name="noparams" select="$nopar"/><xsl:with-param name="target" select="1"/><xsl:with-param name="binder">LAMBDA</xsl:with-param></xsl:apply-templates>
235 <xsl:template match="FIX" mode="pure">
236 <m:apply helm:xref="{@id}">
237 <xsl:variable name="findex"><xsl:value-of select="@noFun"/></xsl:variable>
238 <m:csymbol>fix</m:csymbol>
239 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="FixFunction[position()=number($findex)+1]/@name"/></xsl:with-param></xsl:call-template></m:ci>
240 <xsl:apply-templates mode="pure" select="*"/>
244 <xsl:template match="COFIX" mode="pure">
245 <m:apply helm:xref="{@id}">
246 <xsl:variable name="findex"><xsl:value-of select="@noFun"/></xsl:variable>
247 <m:csymbol>cofix</m:csymbol>
248 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="CofixFunction[position()=number($findex)+1]/@name"/></xsl:with-param></xsl:call-template></m:ci>
249 <xsl:apply-templates mode="pure" select="*"/>
253 <!-- ELEMENTS OF CIC TERMS -->
255 <xsl:template match="FixFunction" mode="pure">
257 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="@name"/></xsl:with-param></xsl:call-template></m:ci>
258 <m:type><xsl:apply-templates select="type/*[1]" mode="noannot"/></m:type>
260 <xsl:apply-templates select="body/*[1]" mode="noannot"/>
263 <xsl:template match="CofixFunction" mode="pure">
265 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="@name"/></xsl:with-param></xsl:call-template></m:ci>
266 <m:type><xsl:apply-templates select="type/*[1]" mode="noannot"/></m:type>
268 <xsl:apply-templates select="body/*[1]" mode="noannot"/>