package eliom

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Low-level XML manipulation.

module W : Xml_wrap.T with type 'a t = 'a and type 'a tlist = 'a list and type (-'a, 'b) ft = 'a -> 'b
type uri = string
val uri_of_string : uri -> string
val string_of_uri : string -> uri
val uri_of_fun : (unit -> string) -> uri
type aname = string
type attrib
type caml_event_handler =
  1. | CE_registered_closure of string * Eliom_lib.poly
  2. | CE_client_closure of Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit
  3. | CE_client_closure_mouse of Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit
  4. | CE_client_closure_keyboard of Js_of_ocaml.Dom_html.keyboardEvent Js_of_ocaml.Js.t -> unit
  5. | CE_client_closure_touch of Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit
  6. | CE_call_service of ([ `A | `Form_get | `Form_post ] * (bool * string list) option * string option * Ocsigen_lib_base.poly) option Eliom_lazy.request
type internal_event_handler =
  1. | Raw of string
  2. | Caml of caml_event_handler
type event_handler = Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit
type mouse_event_handler = Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit
type keyboard_event_handler = Js_of_ocaml.Dom_html.keyboardEvent Js_of_ocaml.Js.t -> unit
type touch_event_handler = Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit
type ename = string
type elt
type 'a wrap = 'a
type 'a list_wrap = 'a list
type econtent = private
  1. | Empty
  2. | Comment of string
  3. | EncodedPCDATA of string
  4. | PCDATA of string
  5. | Entity of string
  6. | Leaf of ename * attrib list
  7. | Node of ename * attrib list * elt list