module Eliom_registration:sig..end
Eliom services registration for various kinds of page content:
Eliom application, valid Eliom_registration.Html, actions, redirections, static
files, ...
Please read the Eliom manual before this page to learn how to use and .
type 'a kind
The type kind is an abstract type for the HTTP frame returned by
a service. The type parameter indicates the content type, and is
one of the following types:
Eliom_service.service typebrowser_content =[ `Browser ]
The type browser_content is to be used as a phantom type
parameter for Eliom_registration.kind. It means the returned
content must be interpreted in the browser as stated by the
content-type header. This is most common return type for an eliom
service, see for example Eliom_registration.Html, Eliom_registration.CssText, Eliom_registration.File,
Eliom_registration.Redirection.
type block_content
The type block_content is to be used as a phantom type parameter
for Eliom_registration.kind. It means the returned content is a
subtree of an XML value. See for example Block5 or
Make_typed_xml_registration.
type unknown_content
The type unknown_content is to be used as a phantom type
parameter for Eliom_registration.kind when the content-type
can't be determined statically. See Text or Eliom_registration.Any.
type'aapplication_content =[ `Appl of 'a ]
The type application_content is a refinement of appl_service
to be used as a phantom type parameters for
Eliom_registration.kind. The parameter 'a is phantom type
that is unique for a given application.
type 'a application_name
Typed application name
type 'a ocaml_content
The type ocaml_content is an synomyn for
Eliom_service.ocaml_service to be used as a phantom type
parameters for Eliom_registration.kind. See Eliom_registration.Ocaml.
module Html:Eliom_registration_sigs.S_with_createwith type page = Html_types.html Eliom_content.Html.elt and type options = unit and type return = Eliom_service.non_ocaml and type result = browser_content kind
Eliom service registration for services that return HTML pages.
type appl_service_options = {
|
do_not_launch : |
}
Type for the options of an Eliom application service.
If you set do_not_launch to true when creating an application
service, it will send the page without launching the client side
program. However, if the program is already lanched, the client
side process won't be stopped. Use this if some of your pages are
not using the client side program and you want to make them load
faster.
val default_appl_service_options : appl_service_optionsThe default options record for an eliom service. See
Eliom_registration.appl_service_options.
module type APP =sig..end
val transform_global_app_uri : (Eliom_content.Html.uri -> Eliom_content.Html.uri) Stdlib.refFunction to modify the global_app URI for some obscure reason
module App:
Functor for application creation.
module type TMPL_PARAMS =sig..end
module Eliom_tmpl:functor (App:APP) ->functor (Tmpl_param:TMPL_PARAMS) ->Eliom_registration_sigs.S_with_createwith type page = Tmpl_param.t and type options = appl_service_options and type return = Eliom_service.non_ocaml and type result = App.app_id application_content kind
module Flow5:Eliom_registration_sigs.S_with_createwith type page = Html_types.flow5 Eliom_content.Html.elt list and type options = unit and type return = Eliom_service.non_ocaml and type result = block_content kind
Eliom service registration and forms creation for fragment of HTML page.
module Html_text:Eliom_registration_sigs.S_with_createwith type page = string and type options = unit and type return = Eliom_service.non_ocaml and type result = browser_content kind
Eliom service registration and forms creation for untyped HTML page.
module CssText:Eliom_registration_sigs.S_with_createwith type page = string and type options = int and type return = Eliom_service.non_ocaml and type result = browser_content kind
Eliom service registration for services that returns CSS.
module Action:Eliom_registration_sigs.S_with_createwith type return = Eliom_service.non_ocaml and type page = unit and type options = [ `Reload | `NoReload ] and type result = browser_content kind
Eliom service registration for services that only execute actions.
module Unit:Eliom_registration_sigs.S_with_createwith type page = unit and type options = unit and type return = Eliom_service.non_ocaml and type result = browser_content kind
Similar to Actions with `NoReload option.
type '_ redirection =
| |
Redirection : |
Auxiliarry type to hide non-interesting type parameters
module Redirection:sig..end
Eliom service registration for services that returns a redirections towards another service.
module String_redirection:Eliom_registration_sigs.S_with_createwith type page = Eliom_lib.Url.uri and type options = [ `MovedPermanently | `Found | `SeeOther | `NotNodifed | `UseProxy | `TemporaryRedirect ] and type return = Eliom_service.non_ocaml and type result = browser_content kind
Eliom service registration for services that returns a redirections towards a string-URL.
module File:sig..end
Eliom service registration for services that returns file contents.
module File_ct:sig..end
Same as file but makes possible to specify the content type for each file.
module Ocaml:Eliom_registration_sigs.S_poly_with_create_with_sendwith type 'a page = 'a and type options = unit and type 'a return = 'a Eliom_service.ocaml and type 'a result = 'a ocaml_content kind
Eliom service registration for services that send marshalled OCaml values.
module Any:Eliom_registration_sigs.S_poly_with_create_with_sendwith type 'a page = 'a kind and type options = unit and type 'a return = Eliom_service.non_ocaml and type 'a result = 'a kind
Eliom service registration for services that choose dynamically what they want to send.
val appl_self_redirect : ('page -> [< `Appl of 'a | `Browser ] kind Lwt.t) ->
'page ->
'appl application_content kind Lwt.tThe function appl_self_redirect send page is an helper function
required for defining Eliom_registration.Any service usable inside an Eliom
application (Eliom_registration.App). It allows casting an Eliom senders that do
not returns Eliom_registration.application_content (like File.send,
String.send, ...) into a senders returns
Eliom_registration.application_content.
When the service is called from an Eliom application, this is implemented with half-redirection (a redirection that leaves the application). Hence, the service may be called two times in a row and you should not use this function for services that use POST parameters.
module String:Eliom_registration_sigs.S_with_createwith type page = string * string and type options = int and type return = Eliom_service.non_ocaml and type result = unknown_content kind
Eliom service registration for services that returns "byte"-string contents.
module Customize:functor (R:Eliom_registration_sigs.S_with_create) ->functor (T:sigtypepageval translate :page -> R.page Lwt.tend) ->Eliom_registration_sigs.S_with_createwith type options = R.options and type return = R.return and type page = T.page and type result = R.result
The Customize functor allows specialization of service
registration functions by customizing the page type.
val set_exn_handler : (exn -> browser_content kind Lwt.t) ->
unitThe set_exn_handler handler allows redefinition of error pages:
404 or any exception during page generation.
Note that you should not catch every exception here since some
Eliom mechanisms are done using exceptions, like redirections. Do
not catch exception defined in Eliom except
Eliom_common.Eliom_404, Eliom_common.Eliom_Wrong_parameter
Eliom_common.Eliom_Typing_Error.
Warning: This functions must be called when the site
information is available, that is, either during a request or
during the initialisation phase of the site. Otherwise, it will
raise the exception
Eliom_common.Eliom_site_information_not_available. If you are
using static linking, you must delay the call to this function
until the configuration file is read, using
Eliom_service.register_eliom_module. Otherwise you will also
get this exception.
val cast_unknown_content_kind : unknown_content kind ->
'a kindIf you know that the content you generated using Text.send or
Streamlist.send is the same as some other kind, you can cast it
with cast_unknown_content_kind for use with Any module.
val cast_http_result : Ocsigen_response.t -> 'a kindcast_http_result should only be used to register new output
modules
val extension : Ocsigen_server.Site.extension
val end_init : unit -> unit