[UP]
Module types
|
|
|
WDialog API for Objective Caml: Wd_template
sig
exception Template_not_found of string
type template
type tree
val get : Wd_types.application_type -> string -> Wd_template.template
val apply :
Wd_types.dialog_type ->
Wd_template.template ->
(string * Wd_template.tree) list -> Wd_template.tree
val apply_byname :
?localized:bool ->
Wd_types.dialog_type ->
string -> (string * Wd_template.tree) list -> Wd_template.tree
val apply_lazily :
Wd_types.dialog_type ->
string -> (string * Wd_template.tree) list -> Wd_template.tree
val concat :
Wd_types.application_type ->
Wd_template.tree -> Wd_template.tree list -> Wd_template.tree
val empty : Wd_types.application_type -> Wd_template.tree
val text : Wd_types.application_type -> string -> Wd_template.tree
val html : Wd_types.application_type -> string -> Wd_template.tree
val to_string : Wd_types.dialog_type -> Wd_template.tree -> string
end
|