3 <!-- Copyright (C) 2000, HELM Team -->
5 <!-- This file is part of HELM, an Hypertextual, Electronic -->
6 <!-- Library of Mathematics, developed at the Computer Science -->
7 <!-- Department, University of Bologna, Italy. -->
9 <!-- HELM is free software; you can redistribute it and/or -->
10 <!-- modify it under the terms of the GNU General Public License -->
11 <!-- as published by the Free Software Foundation; either version 2 -->
12 <!-- of the License, or (at your option) any later version. -->
14 <!-- HELM is distributed in the hope that it will be useful, -->
15 <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
16 <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
17 <!-- GNU General Public License for more details. -->
19 <!-- You should have received a copy of the GNU General Public License -->
20 <!-- along with HELM; if not, write to the Free Software -->
21 <!-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, -->
22 <!-- MA 02111-1307, USA. -->
24 <!-- For details, see the HELM World-Wide-Web page, -->
25 <!-- http://cs.unibo.it/helm/. -->
27 <!--******************************************************************-->
28 <!-- XSLT version 0.1 of CIC objects to objects and MathML content: -->
29 <!-- First draft: March 21 2000, Irene Schena -->
30 <!--******************************************************************-->
32 <!--******************************************************************-->
33 <!-- MANCA: gestione annotation e linking -->
34 <!--******************************************************************-->
36 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
37 xmlns:m="http://www.w3.org/1998/Math/MathML"
38 xmlns:helm="http://www.cs.unibo.it/helm">
40 <xsl:import href="content.xsl"/>
44 <xsl:template match="cicxml">
45 <xsl:variable name="url"><xsl:value-of select="@baseurl"/></xsl:variable>
46 <xsl:variable name="stylesheet"><xsl:value-of select="@stylesheet"/></xsl:variable>
48 <xsl:processing-instruction name="cocoon-format">type="text/xml"</xsl:processing-instruction>
49 <xsl:processing-instruction name="xml-stylesheet">href="<xsl:value-of select='concat($url,$stylesheet)'/>" type="text/xsl"</xsl:processing-instruction>
50 <xsl:processing-instruction name="cocoon-process">type="xslt"</xsl:processing-instruction>
52 <xsl:apply-templates select="*[1]"/>
57 <xsl:template match="Sequent"> <!-- For Sequents there are no annotations -->
58 <Sequent helm:xref="{@id}" no="{@no}">
59 <xsl:for-each select="Decl|Def|Hidden">
61 <xsl:attribute name="name">
62 <xsl:value-of select="@name"/>
64 <xsl:attribute name="helm:xref">
65 <xsl:value-of select="@id"/>
67 <xsl:apply-templates select="*[1]"/>
71 <xsl:apply-templates select="Goal/*[1]"/>
76 <xsl:template match="Definition" mode="noannot">
77 <Definition name="{@name}" helm:xref="{@id}">
78 <xsl:if test="string(@params) != """>
80 <xsl:value-of select="@params"/>
84 <xsl:when test="$showproof=0">
91 <xsl:apply-templates select="body"/>
96 <xsl:apply-templates select="body/*[1]"/>
99 <xsl:apply-templates select="type/*[1]"/>
104 <xsl:template match="Axiom" mode="noannot">
105 <Axiom name="{@name}" helm:xref="{@id}">
106 <xsl:if test="string(@params) != """>
108 <xsl:value-of select="@params"/>
112 <xsl:apply-templates select="type/*[1]"/>
117 <xsl:template match="CurrentProof" mode="noannot">
118 <CurrentProof name="{@name}" helm:xref="{@id}">
119 <xsl:for-each select="Conjecture">
120 <Conjecture no="{@no}" helm:xref="{@id}">
121 <xsl:for-each select="*">
123 <xsl:copy-of select="@name"/>
124 <xsl:attribute name="helm:xref">
125 <xsl:value-of select="@id"/>
127 <xsl:apply-templates select="*"/>
133 <xsl:apply-templates select="body/*[1]"/>
136 <xsl:apply-templates select="type/*[1]"/>
141 <xsl:template match="InductiveDefinition" mode="noannot">
142 <InductiveDefinition helm:xref="{@id}">
143 <xsl:if test="string(@params) != """>
145 <xsl:value-of select="@params"/>
148 <xsl:if test="string(@noParams) != 0">
149 <xsl:apply-templates select="InductiveType/arity/*[1]" mode="abstparams">
150 <xsl:with-param name="noparams" select="@noParams"/>
151 </xsl:apply-templates>
153 <xsl:for-each select="InductiveType">
154 <InductiveType name="{./@name}" inductive="{./@inductive}">
156 <xsl:apply-templates select="./arity/*[1]" mode="abstparams">
157 <xsl:with-param name="noparams" select="../@noParams"/>
158 <xsl:with-param name="target" select="1"/>
159 </xsl:apply-templates>
161 <xsl:for-each select="./Constructor">
162 <Constructor name="{./@name}">
163 <xsl:apply-templates select="./*[1]" mode="abstparams">
164 <xsl:with-param name="noparams" select="../../@noParams"/>
165 <xsl:with-param name="target" select="1"/>
166 </xsl:apply-templates>
171 </InductiveDefinition>
174 <xsl:template match="Variable" mode="noannot">
175 <Variable name="{@name}" helm:xref="{@id}">
176 <xsl:if test="name(*[1])='body'">
178 <xsl:apply-templates select="body/*[1]"/>
182 <xsl:apply-templates select="type/*[1]"/>