X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fgetter%2Fhttp_getter_common.ml;h=ed9410007617f618470f948f0de54f4ce233741a;hb=3af56c5a48f7cad33fd701e0061fe143e0e2a7c5;hp=1ee74c103b1e1948e309becc04d027f45d3a9347;hpb=17812d2224e765d4ff43bc5f35a7bb09b5ccb0d3;p=helm.git diff --git a/helm/ocaml/getter/http_getter_common.ml b/helm/ocaml/getter/http_getter_common.ml index 1ee74c103..ed9410007 100644 --- a/helm/ocaml/getter/http_getter_common.ml +++ b/helm/ocaml/getter/http_getter_common.ml @@ -84,22 +84,6 @@ let patch_dtd line = (Lazy.force Http_getter_env.my_own_url)) line -let pp_error s = - sprintf "Http Getter error: %s" s -let pp_internal_error s = - sprintf "Http Getter Internal error: %s" s -let pp_msg s = sprintf "%s" s -let null_pp s = s - -let mk_return_fun pp_fun contype msg outchan = - Http_daemon.respond - ~body:(pp_fun msg) ~headers:["Content-Type", contype] outchan - -let return_html_error = mk_return_fun pp_error "text/html" -let return_html_internal_error = mk_return_fun pp_internal_error "text/html" -let return_html_msg = mk_return_fun pp_msg "text/html" -let return_html_raw = mk_return_fun null_pp "text/html" -let return_xml_raw = mk_return_fun null_pp "text/xml" let return_file ~fname ?contype ?contenc ?(patch_fun = fun x -> x) ?(gunzip = false) outchan = @@ -138,5 +122,4 @@ let return_file (fun line -> output_string outchan (patch_fun line ^ "\n")) fname ;; -let return_400 body outchan = Http_daemon.respond_error ~code:400 ~body outchan