]> matita.cs.unibo.it Git - helm.git/blob - helm/http_getter/http_getter_const.ml
- the mathql interpreter is not helm-dependent any more
[helm.git] / helm / http_getter / http_getter_const.ml
1 (*
2  * Copyright (C) 2003:
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.2.1"
32 let conffile = "http_getter.conf.xml"
33
34   (* TODO provide a better usage string *)
35 let usage_string configuration =
36   sprintf
37 "
38 <html>
39   <head>
40     <title>HTTP Getter's help message</title>
41   </head>
42   <body>
43     <h1>HTTP Getter, version %s</h1>
44     <h2>Usage information</h2>
45     <p>
46     Usage: <kbd>http://hostname:getterport/</kbd><em>command</em>
47     </p>
48     <p>
49     Available commands:
50     </p>
51     <p>
52       <b><kbd>help</kbd></b><br />
53       display this help message
54     </p>
55     <p>
56       <b><kbd>getxml?uri=URI[&format=(normal|gz)][&patch_dtd=(yes|no)]</kbd></b><br />
57     </p>
58     <p>
59       <b><kbd>register?uri=URI&url=URL</kbd></b><br />
60     </p>
61     <p>
62       <b><kbd>resolve?uri=URI</kbd></b><br />
63     </p>
64     <p>
65       <b><kbd>getdtd?uri=URI[&patch_dtd=(yes|no)]</kbd></b><br />
66     </p>
67     <p>
68       <b><kbd>getxslt?uri=URI[&patch_dtd=(yes|no)]</kbd></b><br />
69     </p>
70     <p>
71       <b><kbd>list_servers</kbd></b><br />
72     </p>
73     <p>
74       <b><kbd>add_server?url=URL&position=POSITION</kbd></b><br />
75     </p>
76     <p>
77       <b><kbd>remove_server?position=POSITION</kbd></b><br />
78     </p>
79     <p>
80       <b><kbd>update</kbd></b><br />
81     </p>
82     <p>
83       <b><kbd>getalluris</kbd></b><br />
84     </p>
85     <p>
86       <b><kbd>getallrdfuris</kbd></b><br />
87     </p>
88     <p>
89       <b><kbd>ls?baseuri=URI&format=(txt|xml)</kbd></b><br />
90     </p>
91     <p>
92       <b><kbd>getempty</kbd></b><br />
93     </p>
94     <h2>Current configuration</h2>
95     <pre>%s</pre>
96   </body>
97 </html>
98 "
99     version configuration
100
101 let empty_xml =
102 "<?xml version=\"1.0\"?>
103 <!DOCTYPE empty [
104   <!ELEMENT empty EMPTY>
105 ]>
106 <empty />
107 "
108