]> matita.cs.unibo.it Git - helm.git/blob - helm/style/ricerca.xsl
added LICENSE
[helm.git] / helm / style / ricerca.xsl
1 <?xml version="1.0"?>
2
3 <!-- Copyright (C) 2000, HELM Team                                     -->
4 <!--                                                                   -->
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.                         -->
8 <!--                                                                   -->
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.            -->
13 <!--                                                                   -->
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.                      -->
18 <!--                                                                   -->
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.                                              -->
23 <!--                                                                   -->
24 <!-- For details, see the HELM World-Wide-Web page,                    -->
25 <!-- http://cs.unibo.it/helm/.                                         -->
26
27 <xsl:stylesheet version="0.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
28
29 <xsl:output method="html"/>
30
31
32 <!--******************************************************************-->
33 <!-- Variable containing the absolute path of the CIC file            -->
34 <!--******************************************************************-->
35
36 <xsl:variable name="absPath">http://localhost:8081/getciconly?uri=</xsl:variable>
37
38 <xsl:template match="/">
39                <html> 
40                 <head></head>
41                 <body>
42                 <xsl:apply-templates select="Theory"/>
43                 </body>
44                </html>
45 </xsl:template>
46
47
48 <!-- CIC TERMS -->
49
50
51
52 <xsl:template match="MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind']" mode="search" >
53 <!-- <xsl:param name="current_uri" select=""/> -->
54 <!-- <h1><xsl:value-of select="string(@uri)"/></h1> -->
55 <!-- <xsl:if test="string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'"> -->
56   <xsl:value-of select="$current_uri"/><BR/>
57 <!-- </xsl:if> -->
58 </xsl:template>
59
60 <!-- AGGIUNGERE cic: alle uri nei file Theory -->
61
62 <xsl:template match="Theory">
63 <!-- <xsl:param name="current_uri" select=""/> -->
64  <xsl:apply-templates>
65   <xsl:with-param name="current_uri" select="string(@uri)"/>
66  </xsl:apply-templates>
67 </xsl:template>
68
69 <xsl:template match="VARIABLE">
70 <!-- <xsl:param name="current_uri" select=""/> -->
71 <xsl:variable name="found" 
72   select="boolean(document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))//MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'])"/>
73 <xsl:if test="$found">
74   <xsl:value-of select="concat(string($current_uri),&quot;/&quot;,string(@uri),&quot;.xml&quot;)"/><BR/>
75 </xsl:if>
76
77 <!--   <xsl:with-param name="current_uri" select="concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri))"/>
78  </xsl:apply-templates> -->
79 </xsl:template>
80
81 <xsl:template match="DEFINITION">
82 <!-- <xsl:param name="current_uri" select=""/> -->
83 <!-- <xsl:apply-templates select="document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))" mode="search">
84   <xsl:with-param name="current_uri" select="concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri))"/>
85  </xsl:apply-templates> -->
86 <xsl:variable name="found" 
87   select="boolean(document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))//MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'])"/>
88 <xsl:if test="$found">
89   <xsl:value-of select="concat(string($current_uri),&quot;/&quot;,string(@uri),&quot;.xml&quot;)"/><BR/>
90 </xsl:if>
91 </xsl:template>
92
93 <xsl:template match="THEOREM">
94 <!-- <xsl:param name="current_uri" select=""/> -->
95 <!-- <xsl:apply-templates select="document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))" mode="search">
96   <xsl:with-param name="current_uri" select="concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri))"/>
97  </xsl:apply-templates> -->
98 <xsl:variable name="found" 
99   select="boolean(document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))//MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'])"/>
100 <xsl:if test="$found">
101   <xsl:value-of select="concat(string($current_uri),&quot;/&quot;,string(@uri),&quot;.xml&quot;)"/><BR/>
102 </xsl:if>
103 </xsl:template>
104
105
106 <xsl:template match="SECTION">
107 <!-- <xsl:param name="current_uri" select=""/> -->
108  <xsl:apply-templates>
109   <xsl:with-param name="current_uri" select="concat($current_uri,&quot;/&quot;,string(@uri))"/>
110  </xsl:apply-templates>
111
112 </xsl:template>
113
114 </xsl:stylesheet>