1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
(* Js_of_ocaml library
* http://www.ocsigen.org/js_of_ocaml/
* Copyright (C) 2010 Jérôme Vouillon
* Laboratoire PPS - CNRS Université Paris Diderot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
(** XmlHttpRequest object. *)
open Js
type readyState =
| UNSENT
| OPENED
| HEADERS_RECEIVED
| LOADING
| DONE
type _ response =
| ArrayBuffer : Typed_array.arrayBuffer t Opt.t response
| Blob : #File.blob t Opt.t response
| Document : Dom.element Dom.document t Opt.t response
| JSON : 'a Opt.t response
| Text : js_string t response
| Default : string response
class type xmlHttpRequest =
object ('self)
method onreadystatechange : (unit -> unit) Js.callback Js.writeonly_prop
method readyState : readyState readonly_prop
method _open : js_string t -> js_string t -> bool t -> unit meth
method _open_full :
js_string t
-> js_string t
-> bool t
-> js_string t opt
-> js_string t opt
-> unit meth
method setRequestHeader : js_string t -> js_string t -> unit meth
method overrideMimeType : js_string t -> unit meth
method send : js_string t opt -> unit meth
method send_blob : #File.blob t -> unit meth
method send_document : Dom.element Dom.document t -> unit meth
method send_formData : Form.formData t -> unit meth
method abort : unit meth
method status : int readonly_prop
method statusText : js_string t readonly_prop
method getResponseHeader : js_string t -> js_string t opt meth
method getAllResponseHeaders : js_string t meth
method response : File.file_any readonly_prop
method responseText : js_string t opt readonly_prop
method responseXML : Dom.element Dom.document t opt readonly_prop
method responseType : js_string t prop
method withCredentials : bool t writeonly_prop
inherit File.progressEventTarget
method ontimeout :
('self t, 'self File.progressEvent t) Dom.event_listener writeonly_prop
method upload : xmlHttpRequestUpload t optdef readonly_prop
end
and xmlHttpRequestUpload =
object ('self)
inherit File.progressEventTarget
end
val create : unit -> xmlHttpRequest t
(** The next part of this module allow one to use Ocaml with no need for
Javascript documentation. *)
module Event : sig
type typ = xmlHttpRequest File.progressEvent t Dom.Event.typ
val readystatechange : xmlHttpRequest Dom.event t Dom.Event.typ
val loadstart : typ
val progress : typ
val abort : typ
val error : typ
val load : typ
val timeout : typ
val loadend : typ
end
|