]> matita.cs.unibo.it Git - helm.git/blob - helm/http_getter/http_getter_const.ml
Initial revision
[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.0"
32 let conffile = "http_getter.conf.xml"
33
34   (* TODO provide a better usage string *)
35 let usage_string =
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     <p>
45     Usage: <kbd>http://hostname:getterport/</kbd><em>command</em>
46     </p>
47     <p>
48     Available commands:
49     </p>
50     <p>
51       <b><kbd>help</kbd></b><br />
52       display this help message
53     </p>
54     <p>
55       <b><kbd>getxml?uri=URI[&format=(normal|gz)][&patch_dtd=(yes|no)]</kbd></b><br />
56     </p>
57     <p>
58       <b><kbd>register?uri=URI&url=URL</kbd></b><br />
59     </p>
60     <p>
61       <b><kbd>resolve?uri=URI</kbd></b><br />
62     </p>
63     <p>
64       <b><kbd>getdtd?uri=URI[&patch_dtd=(yes|no)]</kbd></b><br />
65     </p>
66     <p>
67       <b><kbd>getxslt?uri=URI[&patch_dtd=(yes|no)]</kbd></b><br />
68     </p>
69     <p>
70       <b><kbd>update</kbd></b><br />
71     </p>
72     <p>
73       <b><kbd>getalluris</kbd></b><br />
74     </p>
75     <p>
76       <b><kbd>getallrdfuris</kbd></b><br />
77     </p>
78     <p>
79       <b><kbd>ls?baseuri=URI&format=(txt|xml)</kbd></b><br />
80     </p>
81     <p>
82       <b><kbd>getempty</kbd></b><br />
83     </p>
84   </body>
85 </html>
86 "
87     version
88
89 let empty_xml =
90 "<?xml version=\"1.0\"?>
91 <!DOCTYPE empty [
92   <!ELEMENT empty EMPTY>
93 ]>
94 <empty />
95 "
96