3 * Stefano Zacchiroli <zack@cs.unibo.it>
4 * for the HELM Team http://helm.cs.unibo.it/
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.
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.
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.
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,
25 * For details, see the HELM World-Wide-Web page,
26 * http://helm.cs.unibo.it/
29 open Http_getter_types;;
31 (* {2 general information} *)
33 val version : string (* getter version *)
35 (* {2 environment gathered data} *)
37 val cic_dbm : string (* XML map DBM file for CIC *)
38 val nuprl_dbm : string (* XML map DBM file for NuPRL *)
39 val rdf_dbm : string (* RDF map DBM file *)
40 val xsl_dbm : string (* XSL map DBM file *)
41 val xml_index : string (* XMLs' index *)
42 val rdf_index : string (* RDFs' index *)
43 val xsl_index : string (* XSLTs' index *)
44 val cic_dir : string (* XMLs' directory for CIC*)
45 val nuprl_dir : string (* XMLs' directory for NuPRL*)
46 val rdf_dir : string (* RDFs' directory *)
47 val dtd_dir : string (* DTDs' root directory *)
48 val servers_file : string (* servers.txt file *)
49 val port : int (* port on which getter listens *)
50 val dtd_base_url : string (* base URL for DTD downloading *)
52 (* {2 derived data} *)
54 val host : string (* host on which getter listens *)
55 val my_own_url : string (* URL at which contact getter *)
56 val servers : string list ref (* servers list. DO NOT CHANGE this list,
57 modifications wont be preserved *)
58 val cache_mode : http_getter_encoding (* cached files encoding *)
59 val conf_file : string (* configuration file's full path *)
60 val conf_dir : string (* directory where conf_file resides *)
62 (* {2 dynamic configuration changes} *)
64 (* add a server to servers list in a given position (defaults to "after the
65 last server", change servers file accordingly and reload servers list *)
66 val add_server: ?position:int -> string -> unit
67 (* remove a server from servers list, change servers file accordingly and
68 reload servers list *)
69 val remove_server: int -> unit
73 val reload: unit -> unit (* reload configuration information *)
74 val env_to_string : unit -> string (* dump a textual representation of the
75 current http_getter settings on an output