]> matita.cs.unibo.it Git - helm.git/blob - components/getter/http_getter_const.ml
tagged 0.5.0-rc1
[helm.git] / components / 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 (* $Id$ *)
30
31 open Printf;;
32
33 let version = "0.4.0"
34 let conffile = "http_getter.conf.xml"
35
36 let xhtml_ns = "http://www.w3.org/1999/xhtml"
37 let helm_ns = "http://www.cs.unibo.it/helm"
38
39   (* TODO provide a better usage string *)
40 let usage_string configuration =
41   sprintf
42 "<?xml version=\"1.0\"?>
43 <html xmlns=\"%s\" xmlns:helm=\"%s\">
44   <head>
45     <title>HTTP Getter's help message</title>
46   </head>
47   <body>
48     <h1>HTTP Getter, version %s</h1>
49     <h2>Usage information</h2>
50     <p>
51     Usage: <kbd>http://hostname:getterport/</kbd><em>command</em>
52     </p>
53     <p>
54     Available commands:
55     </p>
56     <p>
57       <b><kbd><a href=\"/help\">help</a></kbd></b><br />
58       display this help message
59     </p>
60     <p>
61       <b><kbd>getxml?uri=URI[&amp;format=(normal|gz)][&amp;patch_dtd=(yes|no)]</kbd></b><br />
62     </p>
63     <p>
64       <b><kbd>resolve?uri=URI</kbd></b><br />
65     </p>
66     <p>
67       <b><kbd>getdtd?uri=URI[&amp;patch_dtd=(yes|no)]</kbd></b><br />
68     </p>
69     <p>
70       <b><kbd>getxslt?uri=URI[&amp;patch_dtd=(yes|no)]</kbd></b><br />
71     </p>
72     <p>
73       <b><kbd><a href=\"/update\">update</a></kbd></b><br />
74     </p>
75     <p>
76       <b><kbd><a href=\"clean_cache\">clean_cache</a></kbd></b><br />
77     </p>
78     <p>
79       <b><kbd>ls?baseuri=regexp&amp;format=(txt|xml)</kbd></b><br />
80     </p>
81     <p>
82       <b><kbd>getalluris?format=(<a href=\"/getalluris?format=txt\">txt</a>|<a href=\"/getalluris?format=xml\">xml</a>)</kbd></b><br />
83     </p>
84     <p>
85       <b><kbd><a href=\"/getempty\">getempty</a></kbd></b><br />
86     </p>
87     <h2>Current configuration</h2>
88     <pre>%s</pre>
89   </body>
90 </html>
91 "
92   xhtml_ns helm_ns
93   version configuration
94
95 let empty_xml =
96 "<?xml version=\"1.0\"?>
97 <!DOCTYPE empty [
98   <!ELEMENT empty EMPTY>
99 ]>
100 <empty />
101 "
102