X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fgetter%2Fhttp_getter_common.ml;h=15810b93c2b4b8fb535c187eda61ae6eed1785fb;hb=7e9904185ceff75884783dbf0bad506b8521b857;hp=b1f96d8bddc13b682b37ae88813a6b8e0131cce5;hpb=f0e7ce0a6e8c15f198fab4d567b884a8ef7f6b0b;p=helm.git diff --git a/helm/ocaml/getter/http_getter_common.ml b/helm/ocaml/getter/http_getter_common.ml index b1f96d8bd..15810b93c 100644 --- a/helm/ocaml/getter/http_getter_common.ml +++ b/helm/ocaml/getter/http_getter_common.ml @@ -52,7 +52,7 @@ let rec uri_of_string = function in Rdf_uri (prefix, rest) | _ -> raise (Invalid_URI uri)) - | uri when is_cic_uri uri -> Cic_uri (Cic (Pcre.replace ~pat:"^cic:" uri)) + | uri when is_cic_obj_uri uri -> Cic_uri (Cic (Pcre.replace ~pat:"^cic:" uri)) | uri when is_nuprl_uri uri -> Nuprl_uri (Pcre.replace ~pat:"^nuprl:" uri) | uri when is_theory_uri uri -> Cic_uri (Theory (Pcre.replace ~pat:"^theory:" uri)) @@ -72,58 +72,44 @@ let patch_xsl ?(via_http = true) () = in patch_include (patch_import line) -let patch_entity ?(via_http = true) () = - if via_http then - fun line -> - List.fold_left - (fun url s -> - Pcre.replace - ~pat:(sprintf "ENTITY (.*) SYSTEM\\s+\"(%s/)?" url) - ~templ:(sprintf "ENTITY $1 SYSTEM \"%s/getdtd?uri=" - (Lazy.force Http_getter_env.my_own_url)) - s) - line - (Lazy.force Http_getter_env.dtd_base_urls) - else - fun line -> - List.fold_left - (fun url s -> - Pcre.replace - ~pat:(sprintf "ENTITY (.*) SYSTEM\\s+\"(%s/)?" url) - ~templ:(sprintf "ENTITY $1 SYSTEM \"file://%s/" - (Lazy.force Http_getter_env.dtd_dir)) - s) - line - (Lazy.force Http_getter_env.dtd_base_urls) +let patch_system kind ?(via_http = true) () = + let rex = + Pcre.regexp (sprintf "%s (.*) SYSTEM\\s+\"((%s)/)?" kind + (String.concat "|" (Lazy.force Http_getter_env.dtd_base_urls))) + in + let templ = + if via_http then + sprintf "%s $1 SYSTEM \"%s/getdtd?uri=" kind + (Lazy.force Http_getter_env.my_own_url) + else + sprintf "%s $1 SYSTEM \"file://%s/" kind + (Lazy.force Http_getter_env.dtd_dir) + in + fun line -> Pcre.replace ~rex ~templ line -let patch_doctype ?(via_http = true) () = - if via_http then - fun line -> - List.fold_left - (fun url s -> - Pcre.replace - ~pat:(sprintf "DOCTYPE (.*) SYSTEM\\s+\"%s/" url) - ~templ:(sprintf "DOCTYPE $1 SYSTEM \"%s/getdtd?uri=" - (Lazy.force Http_getter_env.my_own_url)) - s) - line - (Lazy.force Http_getter_env.dtd_base_urls) - else - fun line -> - List.fold_left - (fun url s -> - Pcre.replace - ~pat:(sprintf "DOCTYPE (.*) SYSTEM\\s+\"%s/" url) - ~templ:(sprintf "DOCTYPE $1 SYSTEM \"file://%s/" - (Lazy.force Http_getter_env.my_own_url)) - s) - line - (Lazy.force Http_getter_env.dtd_base_urls) +let patch_entity = patch_system "ENTITY" +let patch_doctype = patch_system "DOCTYPE" -let patch_dtd = patch_entity +let patch_xmlbase = + let rex = Pcre.regexp "^(\\s*<\\w[^ ]*)(\\s|>)" in + fun xmlbases baseurl baseuri s -> + let s' = + Pcre.replace ~rex + ~templ:(sprintf "$1 xml:base=\"%s\" helm:base=\"%s\"$2" baseurl baseuri) + s + in + if s <> s' then xmlbases := None; + s' -let patch_xml ?via_http () line = - patch_doctype ?via_http () (patch_entity ?via_http () line) +let patch_dtd = patch_entity +let patch_xml ?via_http ?xmlbases () = + let xmlbases = ref xmlbases in + fun line -> + match !xmlbases with + | None -> patch_doctype ?via_http () (patch_entity ?via_http () line) + | Some (xmlbaseuri, xmlbaseurl) -> + patch_xmlbase xmlbases xmlbaseurl xmlbaseuri + (patch_doctype ?via_http () (patch_entity ?via_http () line)) let return_file ~fname ?contype ?contenc @@ -137,7 +123,7 @@ let return_file | (None, None) -> [] in if via_http then begin - Http_daemon.send_basic_headers ~code:200 outchan; + Http_daemon.send_basic_headers ~code:(`Code 200) outchan; Http_daemon.send_headers headers outchan; Http_daemon.send_CRLF outchan end;