]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/getter/http_getter_const.ml
added the unregister method to the help page
[helm.git] / helm / ocaml / getter / http_getter_const.ml
1 (*
2  * Copyright (C) 2003-2004:
3  *    Stefano Zacchiroli <zack@cs.unibo.it>
4  *    for the HELM Team http://helm.cs.unibo.it/
5  *
6  *  This file is part of HELM, an Hypertextual, Electronic
7  *  Library of Mathematics, developed at the Computer Science
8  *  Department, University of Bologna, Italy.
9  *
10  *  HELM is free software; you can redistribute it and/or
11  *  modify it under the terms of the GNU General Public License
12  *  as published by the Free Software Foundation; either version 2
13  *  of the License, or (at your option) any later version.
14  *
15  *  HELM is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with HELM; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23  *  MA  02111-1307, USA.
24  *
25  *  For details, see the HELM World-Wide-Web page,
26  *  http://helm.cs.unibo.it/
27  *)
28
29 open Printf;;
30
31 let version = "0.3.0"
32 let conffile = "http_getter.conf.xml"
33
34 let xhtml_ns = "http://www.w3.org/1999/xhtml"
35 let helm_ns = "http://www.cs.unibo.it/helm"
36
37   (* TODO provide a better usage string *)
38 let usage_string configuration =
39   sprintf
40 "<?xml version=\"1.0\"?>
41 <html xmlns=\"%s\" xmlns:helm=\"%s\">
42   <head>
43     <title>HTTP Getter's help message</title>
44   </head>
45   <body>
46     <h1>HTTP Getter, version %s</h1>
47     <h2>Usage information</h2>
48     <p>
49     Usage: <kbd>http://hostname:getterport/</kbd><em>command</em>
50     </p>
51     <p>
52     Available commands:
53     </p>
54     <p>
55       <b><kbd><a href=\"/help\">help</a></kbd></b><br />
56       display this help message
57     </p>
58     <p>
59       <b><kbd>getxml?uri=URI[&amp;format=(normal|gz)][&amp;patch_dtd=(yes|no)]</kbd></b><br />
60     </p>
61     <p>
62       <b><kbd>register?uri=URI&amp;url=URL</kbd></b><br />
63     </p>
64     <p>
65       <b><kbd>unregister?uri=URI&amp;url=URL</kbd></b><br />
66     </p>
67     <p>
68       <b><kbd>resolve?uri=URI</kbd></b><br />
69     </p>
70     <p>
71       <b><kbd>getdtd?uri=URI[&amp;patch_dtd=(yes|no)]</kbd></b><br />
72     </p>
73     <p>
74       <b><kbd>getxslt?uri=URI[&amp;patch_dtd=(yes|no)]</kbd></b><br />
75     </p>
76     <p>
77       <b><kbd><a href=\"/list_servers\">list_servers</a></kbd></b><br />
78     </p>
79     <p>
80       <b><kbd>add_server?url=URL&amp;position=POSITION</kbd></b><br />
81     </p>
82     <p>
83       <b><kbd>remove_server?position=POSITION</kbd></b><br />
84     </p>
85     <p>
86       <b><kbd><a href=\"/update\">update</a></kbd></b><br />
87     </p>
88     <p>
89       <b><kbd><a href=\"clean_cache\">clean_cache</a></kbd></b><br />
90     </p>
91     <p>
92       <b><kbd>getalluris?format=(<a href=\"getalluris?format=txt\">txt</a>|<a href=\"getalluris?format=xml\">xml</a>)</kbd></b><br />
93     </p>
94     <p>
95       <b><kbd><a href=\"/getallrdfuris\">getallrdfuris</a></kbd></b><br />
96     </p>
97     <p>
98       <b><kbd>ls?baseuri=regexp&amp;format=(txt|xml)</kbd></b><br />
99     </p>
100     <p>
101       <b><kbd><a href=\"/getempty\">getempty</a></kbd></b><br />
102     </p>
103     <h2>Current configuration</h2>
104     <pre>%s</pre>
105   </body>
106 </html>
107 "
108   xhtml_ns helm_ns
109   version configuration
110
111 let empty_xml =
112 "<?xml version=\"1.0\"?>
113 <!DOCTYPE empty [
114   <!ELEMENT empty EMPTY>
115 ]>
116 <empty />
117 "
118