X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmathql%2FmQueryUtil.mli;h=83337ddfbf31d295349ecd22141101f3e39814d5;hb=f41a5585a648d57e4d8a24d664b0a5ce5d591148;hp=94126555b006dfdf3ab88675f43ad27c7a584d43;hpb=3c57d335904d0480f3145ccdcf663206cffd5567;p=helm.git diff --git a/helm/ocaml/mathql/mQueryUtil.mli b/helm/ocaml/mathql/mQueryUtil.mli index 94126555b..83337ddfb 100644 --- a/helm/ocaml/mathql/mQueryUtil.mli +++ b/helm/ocaml/mathql/mQueryUtil.mli @@ -33,14 +33,17 @@ (* *) (******************************************************************************) -val str_uref : MathQL.mquref -> string (* string linearization of a UriManager reference *) -val str_tref : MathQL.mqtref -> string (* string linearization of a tokenized reference *) +val text_of_query : (string -> unit) -> MathQL.query -> string -> unit -val out_query : MathQL.mquery -> string (* HTML representation of a query *) +val text_of_result : (string -> unit) -> MathQL.result -> string -> unit -val out_result : MathQL.mqresult -> string (* HTML representation of a query result *) +val query_of_text : Lexing.lexbuf -> MathQL.query -val tref_uref : MathQL.mquref -> MathQL.mqtref (* "tref of uref" conversion *) +val result_of_text : Lexing.lexbuf -> MathQL.result + + +type uriref = UriManager.uri * (int list) + +val string_of_uriref : uriref -> string -val parse_text : in_channel -> MathQL.mquery (* textual parsing of a query *)