]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/getter/http_getter_cache.mli
ported debian stuff to ocaml 3.08
[helm.git] / helm / ocaml / getter / http_getter_cache.mli
index a026e72c09d278478129b0d7ff52d8d09fbf526e..7789a023bd36762ae35219a19be4705b8e0eb7d0 100644 (file)
 
 open Http_getter_types;;
 
-(** all these methods could raise Http_getter_types.Cache_failure *)
+(** all these methods could raise Http_getter_types.Cache_failure.
+ * @param via_http (default: true) @see Http_getter_common.return_file *)
 
 val respond_xml:
-  ?enc:encoding -> ?patch:bool -> url:string -> uri:string -> out_channel ->
-    unit
+  ?via_http:bool -> ?enc:encoding -> ?patch:bool -> url:string -> uri:string ->
+    out_channel ->
+      unit
 
 val respond_xsl:
-  ?enc:encoding -> ?patch:bool -> url:string -> out_channel ->
-    unit
+  ?via_http:bool -> ?enc:encoding -> ?patch:bool -> url:string ->
+    out_channel ->
+      unit
 
 val respond_dtd:
-  ?enc:encoding -> ?patch:bool -> url:string -> out_channel ->
-    unit
+  ?via_http:bool -> ?enc:encoding -> ?patch:bool -> url:string ->
+    out_channel ->
+      unit
 
 val clean: unit -> unit