From: Stefano Zacchiroli Date: Mon, 3 Feb 2003 20:46:34 +0000 (+0000) Subject: moved an ocamldoc comment to .mli X-Git-Tag: V_0_0_4_1~72 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=2ec6dcdf0471b2f2a6b523e030eb55c963798432;p=helm.git moved an ocamldoc comment to .mli --- diff --git a/helm/DEVEL/ocaml-http/http_parser.ml b/helm/DEVEL/ocaml-http/http_parser.ml index c8870ab18..7ab21be7f 100644 --- a/helm/DEVEL/ocaml-http/http_parser.ml +++ b/helm/DEVEL/ocaml-http/http_parser.ml @@ -31,11 +31,6 @@ let header_RE = Pcre.regexp "([^:]*):(.*)" let url_decode url = Netencoding.Url.decode ~plus:true url - (** given an HTTP like query string (e.g. "name1=value1&name2=value2&...") - @return a list of pairs [("name1", "value1"); ("name2", "value2")] - @raise Malformed_query if the string isn't a valid query string - @raise Malformed_query_part if some piece of the query isn't valid - *) let split_query_params query = let bindings = Pcre.split ~rex:bindings_sep query in match bindings with