X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Focaml%2Fgetter%2Fhttp_getter_common.mli;h=e94e3931447e5c14800c8e9af54ec57bec1f743a;hb=bbe7741f3bbaacb93f2876c018dace82f5e929b8;hp=f626f4ab00ea822c4d3ed1a15c9eda7ebc2d6a76;hpb=bd59745a232bff0e941e97170b88709d0ff6fdf2;p=helm.git diff --git a/helm/ocaml/getter/http_getter_common.mli b/helm/ocaml/getter/http_getter_common.mli index f626f4ab0..e94e39314 100644 --- a/helm/ocaml/getter/http_getter_common.mli +++ b/helm/ocaml/getter/http_getter_common.mli @@ -32,6 +32,7 @@ val string_of_ls_flag: ls_flag -> string val string_of_encoding: encoding -> string val is_cic_uri: string -> bool +val is_theory_uri: string -> bool val is_nuprl_uri: string -> bool val is_rdf_uri: string -> bool val is_xsl_uri: string -> bool @@ -51,8 +52,9 @@ val patch_xsl : ?via_http:bool -> unit -> string -> string @param contenc Content-Enconding header value @param patch_fun function used to patch file contents @param gunzip is meaningful only if a patch function is provided. If gunzip - is true patch_fun is applied to the uncompressed version of the file. The file - is then compressed again and send to client + is true and patch_fun is given (i.e. is not None), then patch_fun is applied + to the uncompressed version of the file. The file is then compressed again and + send to client @param via_http (default: true) if true http specific communications are used (e.g. headers, crlf before body) and sent via outchan, otherwise they're not. Set it to false when saving to a local file @@ -61,6 +63,7 @@ val return_file: fname:string -> ?contype:string -> ?contenc:string -> ?patch_fun:(string -> string) -> ?gunzip:bool -> ?via_http:bool -> + enc:encoding -> out_channel -> unit