]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/hbugs/common/hbugs_misc.mli
- the mathql interpreter is not helm-dependent any more
[helm.git] / helm / hbugs / common / hbugs_misc.mli
index 991c9fa261e532950dec3b45fd36c09f02dde6e0..b0ef59719aba92610b1c9862ac31a54aec19235d 100644 (file)
@@ -1,5 +1,7 @@
 (*
- *  Copyright (C) 2003, HELM Team.
+ * Copyright (C) 2003:
+ *    Stefano Zacchiroli <zack@cs.unibo.it>
+ *    for the HELM Team http://helm.cs.unibo.it/
  *
  *  This file is part of HELM, an Hypertextual, Electronic
  *  Library of Mathematics, developed at the Computer Science
  *  MA  02111-1307, USA.
  *
  *  For details, see the HELM World-Wide-Web page,
- *  http://cs.unibo.it/helm/.
+ *  http://helm.cs.unibo.it/
  *)
 
- (* HTTP GET request for a given url, return http response's body *)
+  (** helpers *)
+
+  (** remove all bindings of a given key from an hash table *)
+val hashtbl_remove_all: ('a, 'b) Hashtbl.t -> 'a -> unit
+
+  (** follows cut and paste from zack's Http_client_smart module *)
+
+  (** can't parse an HTTP url *)
+exception Malformed_URL of string
+  (** can't parse an HTTP response *)
+exception Malformed_HTTP_response of string
+  (** HTTP GET request for a given url, return http response's body *)
 val http_get: string -> string
- (* HTTP POST request for a given url, return http response's body, body
- argument, if specified, is sent as body along with request *)
+  (** HTTP POST request for a given url, return http response's body,
body argument, if specified, is sent as body along with request *)
 val http_post: ?body:string -> string -> string
 
-val hashtbl_remove_all: ('a, 'b) Hashtbl.t -> 'a -> unit
+  (** perform an HTTP GET request and apply a given function on each
+  'slice' of HTTP response read from server *)
+val http_get_iter_buf: callback:(string -> unit) -> string -> unit