]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/getter/http_getter_cache.mli
fixed parse error for ocaml 3.08
[helm.git] / helm / ocaml / getter / http_getter_cache.mli
index 11211288aa8faaf5375ee2499a032541f0465bda..7789a023bd36762ae35219a19be4705b8e0eb7d0 100644 (file)
 
 open Http_getter_types;;
 
+(** 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