]> matita.cs.unibo.it Git - helm.git/blob - helm/style/ricerca.xsl
minidom.c : fixed memory leak
[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 <xsl:template match="/">
33                <html> 
34                 <head></head>
35                 <body>
36                 <xsl:apply-templates select="Theory"/>
37                 </body>
38                </html>
39 </xsl:template>
40
41
42 <!-- CIC TERMS -->
43
44
45
46 <xsl:template match="MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind']" mode="search" >
47 <!-- <xsl:param name="current_uri" select=""/> -->
48 <!-- <h1><xsl:value-of select="string(@uri)"/></h1> -->
49 <!-- <xsl:if test="string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'"> -->
50   <xsl:value-of select="$current_uri"/><BR/>
51 <!-- </xsl:if> -->
52 </xsl:template>
53
54 <!-- AGGIUNGERE cic: alle uri nei file Theory -->
55
56 <xsl:template match="Theory">
57 <!-- <xsl:param name="current_uri" select=""/> -->
58  <xsl:apply-templates>
59   <xsl:with-param name="current_uri" select="string(@uri)"/>
60  </xsl:apply-templates>
61 </xsl:template>
62
63 <xsl:template match="VARIABLE">
64 <!-- <xsl:param name="current_uri" select=""/> -->
65 <xsl:variable name="found" 
66   select="boolean(document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))//MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'])"/>
67 <xsl:if test="$found">
68   <xsl:value-of select="concat(string($current_uri),&quot;/&quot;,string(@uri),&quot;.xml&quot;)"/><BR/>
69 </xsl:if>
70
71 <!--   <xsl:with-param name="current_uri" select="concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri))"/>
72  </xsl:apply-templates> -->
73 </xsl:template>
74
75 <xsl:template match="DEFINITION">
76 <!-- <xsl:param name="current_uri" select=""/> -->
77 <!-- <xsl:apply-templates select="document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))" mode="search">
78   <xsl:with-param name="current_uri" select="concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri))"/>
79  </xsl:apply-templates> -->
80 <xsl:variable name="found" 
81   select="boolean(document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))//MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'])"/>
82 <xsl:if test="$found">
83   <xsl:value-of select="concat(string($current_uri),&quot;/&quot;,string(@uri),&quot;.xml&quot;)"/><BR/>
84 </xsl:if>
85 </xsl:template>
86
87 <xsl:template match="THEOREM">
88 <!-- <xsl:param name="current_uri" select=""/> -->
89 <!-- <xsl:apply-templates select="document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))" mode="search">
90   <xsl:with-param name="current_uri" select="concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri))"/>
91  </xsl:apply-templates> -->
92 <xsl:variable name="found" 
93   select="boolean(document(concat(string($absPath),string($current_uri),&quot;/&quot;,string(@uri)))//MUTIND[string(@uri)='cic:/Coq/Init/Logic/Equality/eq.ind'])"/>
94 <xsl:if test="$found">
95   <xsl:value-of select="concat(string($current_uri),&quot;/&quot;,string(@uri),&quot;.xml&quot;)"/><BR/>
96 </xsl:if>
97 </xsl:template>
98
99
100 <xsl:template match="SECTION">
101 <!-- <xsl:param name="current_uri" select=""/> -->
102  <xsl:apply-templates>
103   <xsl:with-param name="current_uri" select="concat($current_uri,&quot;/&quot;,string(@uri))"/>
104  </xsl:apply-templates>
105
106 </xsl:template>
107
108 </xsl:stylesheet>