X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fgetter%2Fhttp_getter_common.mli;h=d1bc66f7669843c10985220f883028f83efb3fe3;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=0aec9bc1849d3b7b412abfe48ac0d4d842d89d6a;hpb=3fd8583f198e7e09995c3a65b5f05a853c8d1646;p=helm.git diff --git a/helm/ocaml/getter/http_getter_common.mli b/helm/ocaml/getter/http_getter_common.mli index 0aec9bc18..d1bc66f76 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_cic_obj_uri: string -> bool val is_theory_uri: string -> bool val is_nuprl_uri: string -> bool val is_rdf_uri: string -> bool @@ -41,10 +42,10 @@ val uri_of_string: string -> uri (** @param xmlbases (xml base URI * xml base URL) *) val patch_xml : - ?via_http:bool -> ?xmlbases:(string * string) -> unit -> string -> string -val patch_dtd : ?via_http:bool -> unit -> string -> string + ?via_http:bool -> ?xmlbases:(string * string) -> unit -> (string -> string) +val patch_dtd : ?via_http:bool -> unit -> (string -> string) (* TODO via_http not yet supported for patch_xsl *) -val patch_xsl : ?via_http:bool -> unit -> string -> string +val patch_xsl : ?via_http:bool -> unit -> (string -> string) (** @param fname name of the file to be sent @@ -52,8 +53,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 @@ -62,6 +64,7 @@ val return_file: fname:string -> ?contype:string -> ?contenc:string -> ?patch_fun:(string -> string) -> ?gunzip:bool -> ?via_http:bool -> + enc:encoding -> out_channel -> unit