Plasma GitLab Archive
Projects Blog Knowledge

sig
  type var =
      VarString of string
    | VarTable of Netcgi_modtpl.table_row list
    | VarConditional of bool
    | VarCallback of (string list -> string)
  and table_row = (string * Netcgi_modtpl.var) list
  class template :
    ?filename:string ->
    string ->
    object
      method callback : string -> (string list -> string) -> unit
      method conditional : string -> bool -> unit
      method output : Netcgi.cgi -> unit
      method set : string -> string -> unit
      method source : string
      method table : string -> Netcgi_modtpl.table_row list -> unit
      method to_channel : Pervasives.out_channel -> unit
      method to_string : string
    end
  val template : string -> Netcgi_modtpl.template
  val template_from_string :
    ?filename:string -> string -> Netcgi_modtpl.template
  val template_from_channel :
    ?filename:string -> Pervasives.in_channel -> Netcgi_modtpl.template
end
This web site is published by Informatikbüro Gerd Stolpmann
Powered by Caml