]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/getter/http_getter_const.ml
ocaml 3.09 transition
[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.4.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>resolve?uri=URI</kbd></b><br />
63     </p>
64     <p>
65       <b><kbd>getdtd?uri=URI[&amp;patch_dtd=(yes|no)]</kbd></b><br />
66     </p>
67     <p>
68       <b><kbd>getxslt?uri=URI[&amp;patch_dtd=(yes|no)]</kbd></b><br />
69     </p>
70     <p>
71       <b><kbd><a href=\"/update\">update</a></kbd></b><br />
72     </p>
73     <p>
74       <b><kbd><a href=\"clean_cache\">clean_cache</a></kbd></b><br />
75     </p>
76     <p>
77       <b><kbd>ls?baseuri=regexp&amp;format=(txt|xml)</kbd></b><br />
78     </p>
79     <p>
80       <b><kbd>getalluris?format=(<a href=\"/getalluris?format=txt\">txt</a>|<a href=\"/getalluris?format=xml\">xml</a>)</kbd></b><br />
81     </p>
82     <p>
83       <b><kbd><a href=\"/getempty\">getempty</a></kbd></b><br />
84     </p>
85     <h2>Current configuration</h2>
86     <pre>%s</pre>
87   </body>
88 </html>
89 "
90   xhtml_ns helm_ns
91   version configuration
92
93 let empty_xml =
94 "<?xml version=\"1.0\"?>
95 <!DOCTYPE empty [
96   <!ELEMENT empty EMPTY>
97 ]>
98 <empty />
99 "
100