]> matita.cs.unibo.it Git - helm.git/blob - helm/style/mk_dep_graph.xsl
Many more hard-coded links removed.
[helm.git] / helm / style / mk_dep_graph.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 <!-- CSC: Sostituire l'andata a capo con la entity numerica opportuna -->
28 <!DOCTYPE html [
29  <!ENTITY CSCbr "
30 ">
31 ]>
32
33 <xsl:stylesheet version="0.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
34                               xmlns:ht="http://www.cs.unibo.it/helm/namespaces/helm-theory">
35
36 <xsl:output method="text"/>
37
38 <xsl:param name="CICURI" select="''"/>
39 <xsl:param name="PID" select="''"/>
40 <xsl:param name="getterURL" select="''"/>
41 <xsl:variable name="base_URL_of_CIC_URI" select="concat($getterURL,'getxml?uri=')"/>
42
43 <!-- CSC: next function because I don't remember the name of the    -->
44 <!-- CSC: subst function of xslt and I don't have the specs with me -->
45 <xsl:template name="quote">
46  <xsl:param name="s" select="''"/>
47  <xsl:param name="news" select="''"/>
48  <xsl:choose>
49   <xsl:when test="$s = ''"><xsl:value-of select="$news"/></xsl:when>
50   <xsl:otherwise>
51    <xsl:variable name="char" select="substring($s,1,1)"/>
52    <xsl:choose>
53     <xsl:when test="$char = '/'">
54      <xsl:call-template name="quote">
55       <xsl:with-param name="s" select="substring($s,2)"/>
56       <xsl:with-param name="news" select="concat($news,'X')"/>
57      </xsl:call-template>
58     </xsl:when>
59     <xsl:when test="$char = ':'">
60      <xsl:call-template name="quote">
61       <xsl:with-param name="s" select="substring($s,2)"/>
62       <xsl:with-param name="news" select="concat($news,'Y')"/>
63      </xsl:call-template>
64     </xsl:when>
65     <xsl:when test="$char = '.'">
66      <xsl:call-template name="quote">
67       <xsl:with-param name="s" select="substring($s,2)"/>
68       <xsl:with-param name="news" select="concat($news,'Z')"/>
69      </xsl:call-template>
70     </xsl:when>
71     <xsl:when test='$char = "&apos;"'>
72      <xsl:call-template name="quote">
73       <xsl:with-param name="s" select="substring($s,2)"/>
74       <xsl:with-param name="news" select="concat($news,'W')"/>
75      </xsl:call-template>
76     </xsl:when>
77     <xsl:when test="$char = '-'">
78      <xsl:call-template name="quote">
79       <xsl:with-param name="s" select="substring($s,2)"/>
80       <xsl:with-param name="news" select="concat($news,'J')"/>
81      </xsl:call-template>
82     </xsl:when>
83     <xsl:when test="$char = '#'">
84      <xsl:call-template name="quote">
85       <xsl:with-param name="s" select="substring($s,2)"/>
86       <xsl:with-param name="news" select="concat($news,'G')"/>
87      </xsl:call-template>
88     </xsl:when>
89     <xsl:when test="$char = '('">
90      <xsl:call-template name="quote">
91       <xsl:with-param name="s" select="substring($s,2)"/>
92       <xsl:with-param name="news" select="concat($news,'O')"/>
93      </xsl:call-template>
94     </xsl:when>
95     <xsl:when test="$char = ')'">
96      <xsl:call-template name="quote">
97       <xsl:with-param name="s" select="substring($s,2)"/>
98       <xsl:with-param name="news" select="concat($news,'C')"/>
99      </xsl:call-template>
100     </xsl:when>
101     <xsl:otherwise>
102      <xsl:call-template name="quote">
103       <xsl:with-param name="s" select="substring($s,2)"/>
104       <xsl:with-param name="news" select="concat($news,$char)"/>
105      </xsl:call-template>
106     </xsl:otherwise>
107    </xsl:choose>
108   </xsl:otherwise>
109  </xsl:choose>
110 </xsl:template>
111
112 <xsl:template match="/">
113  <!--
114  <xsl:text>strict digraph L0 { size = "83,83"; concentrate=true; node [style=filled, shape = box];&CSCbr;</xsl:text>
115  -->
116  <xsl:text>strict digraph L0 { size = "83,83"; node [style=filled, shape = box];&CSCbr;</xsl:text>
117  <!-- The nonce is used to force the document reload -->
118  <xsl:variable name="dummy1" select="document(concat('http://phd.cs.unibo.it:8084/add_if_not_in?uri=',$CICURI,'&amp;nonce=',generate-id(),'&amp;PID=',$PID))"/>
119  <xsl:apply-templates mode="loop" select="document(concat('http://phd.cs.unibo.it:8084/get_next?uri=',$CICURI,'&amp;nonce=',generate-id(),'&amp;PID=',$PID))"/>
120  <xsl:variable name="dummy2" select="document(concat('http://phd.cs.unibo.it:8084/reset_to_empty?PID=',$PID))"/>
121  <xsl:text>}</xsl:text>
122 </xsl:template>
123
124 <xsl:template mode="loop" match="empty"/>
125
126 <xsl:template mode="loop" match="uri|marked_uri">
127  <xsl:apply-templates mode="first_time" select="document(concat($base_URL_of_CIC_URI,@value))/*">
128   <xsl:with-param name="currentCICURI" select="@value"/>
129   <xsl:with-param name="quotedCurrentCICURI">
130    <xsl:call-template name="quote">
131     <xsl:with-param name="s" select="@value"/>
132    </xsl:call-template>
133   </xsl:with-param>
134   <xsl:with-param name="do_not_visit" select="name(.)"/>
135  </xsl:apply-templates>
136  <!-- The couple (uri,nonce) is used to force the document reload -->
137  <xsl:apply-templates mode="loop" select="document(concat('http://phd.cs.unibo.it:8084/get_next?uri=',@value,'&amp;nonce=',generate-id(),'&amp;PID=',$PID))"/>
138 </xsl:template>
139
140 <xsl:template mode="first_time" match="*">
141  <xsl:param name="currentCICURI" select="''"/>
142  <xsl:param name="quotedCurrentCICURI" select="''"/>
143  <xsl:param name="do_not_visit" select="'uri'"/>
144  <xsl:text> </xsl:text>
145  <xsl:value-of select="$quotedCurrentCICURI"/>
146 <!-- <xsl:text> [fontname="LucidaSansRegular",color=red,label="</xsl:text> -->
147  <xsl:text> [label="</xsl:text>
148  <xsl:value-of select="$currentCICURI"/>
149  <xsl:text>",URL="</xsl:text>
150  <xsl:value-of select="$currentCICURI"/>
151  <xsl:text>"</xsl:text>
152  <xsl:if test="$do_not_visit='marked_uri'">
153   <xsl:text>,color=red</xsl:text>
154  </xsl:if>
155  <xsl:text>];&CSCbr;</xsl:text>
156  <xsl:if test="$do_not_visit='uri'">
157   <xsl:apply-templates select=".">
158    <xsl:with-param name="currentCICURI" select="$currentCICURI"/>
159    <xsl:with-param name="quotedCurrentCICURI" select="$quotedCurrentCICURI"/>
160   </xsl:apply-templates>
161  </xsl:if>
162 </xsl:template>
163
164 <!-- CSC: uriType missing!!! -->
165 <xsl:template match="*">
166  <xsl:param name="currentCICURI" select="''"/>
167  <xsl:param name="quotedCurrentCICURI" select="''"/>
168  <xsl:if test="@uri">
169   <xsl:variable name="quotedURI">
170    <xsl:call-template name="quote">
171     <xsl:with-param name="s" select="@uri"/>
172    </xsl:call-template>
173   </xsl:variable>
174   <xsl:text> </xsl:text>
175   <xsl:value-of select="$quotedCurrentCICURI"/>
176   <xsl:text> -&gt; </xsl:text>
177   <xsl:value-of select="$quotedURI"/>
178   <xsl:text>;&CSCbr;</xsl:text>
179   <!-- The nonce is used to force the document reload -->
180   <xsl:variable name="dummy" select="document(concat('http://phd.cs.unibo.it:8084/add_if_not_in?uri=',@uri,'&amp;nonce=',generate-id(),'&amp;PID=',$PID))"/>
181  </xsl:if>
182  <xsl:apply-templates>
183   <xsl:with-param name="currentCICURI" select="$currentCICURI"/>
184   <xsl:with-param name="quotedCurrentCICURI" select="$quotedCurrentCICURI"/>
185  </xsl:apply-templates>
186 </xsl:template>
187
188 <xsl:template match="text()"/>
189 </xsl:stylesheet>