package eliom

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module W : sig ... end
type !'a wrap = 'a
type !'a list_wrap = 'a list
type uri
val string_of_uri : (uri, string) W.ft
val uri_of_string : (string, uri) W.ft
type aname = string
type attrib
val float_attrib : aname -> float wrap -> attrib
val int_attrib : aname -> int wrap -> attrib
val string_attrib : aname -> string wrap -> attrib
val space_sep_attrib : aname -> string list wrap -> attrib
val comma_sep_attrib : aname -> string list wrap -> attrib
val event_handler_attrib : aname -> event_handler -> attrib
val mouse_event_handler_attrib : aname -> mouse_event_handler -> attrib
val keyboard_event_handler_attrib : aname -> keyboard_event_handler -> attrib
val touch_event_handler_attrib : aname -> touch_event_handler -> attrib
val uri_attrib : aname -> uri wrap -> attrib
val uris_attrib : aname -> uri list wrap -> attrib
type elt
type ename = string
val empty : unit -> elt
val comment : string -> elt
val pcdata : string wrap -> elt
val encodedpcdata : string wrap -> elt
val entity : string -> elt
val leaf : ?a:attrib list -> ename -> elt
val node : ?a:attrib list -> ename -> elt list_wrap -> elt
val cdata : string -> elt
val cdata_script : string -> elt
val cdata_style : string -> elt
type separator =
  1. | Space
  2. | Comma
val aname : attrib -> aname
type acontent = private
  1. | AFloat of float
  2. | AInt of int
  3. | AStr of string
  4. | AStrL of separator * string list
val acontent : attrib -> acontent
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
val content : elt -> econtent
type caml_event_handler
val make_process_node : ?id:string -> elt -> elt
val make_request_node : ?reset:bool -> elt -> elt
val uri_of_fun : (unit -> string) -> uri
type node_id
val get_node_id : elt -> node_id
val make_event_handler_table : elt -> Eliom_runtime.RawXML.event_handler_table
val make_client_attrib_table : elt -> Eliom_runtime.RawXML.client_attrib_table
type racontent =
  1. | RA of acontent
  2. | RAReact of acontent option React.signal
  3. | RACamlEventHandler of caml_event_handler
  4. | RALazyStr of string Eliom_lazy.request
  5. | RALazyStrL of separator * string Eliom_lazy.request list
  6. | RAClient of string * attrib option * Eliom_lib.poly
val racontent : attrib -> racontent
val lazy_node : ?a:attrib list -> ename -> elt list Eliom_lazy.request -> elt
val wrap : elt -> 'a -> 'a Eliom_wrap.wrapped_value