Eliom_request_infoThis module contains the functions you need to get (or set) information about current request.
returns the full path of the URL as first sent by the browser (not changed by previous extensions like rewritemod)
val get_nl_get_params : unit -> (string * string) list Eliom_lib.String.Table.treturns non localized parameters in the URL.
val get_site_dir : unit -> Eliom_lib.Url.pathreturns the root of the site.
val get_site_dir_option : unit -> Eliom_lib.Url.path optionreturns the root of the site.
returns the GET parameters that have been ignored using <ignoredgetparams/> in config file.
returns the POST parameters that have been ignored using <ignoredpostparams/> in config file.
You probably don't need these functions.
Warning: it is different from the URL to which the request has been made.
val get_csp_original_full_path : unit -> Eliom_lib.Url.pathreturns the full path of the URL where the client-side process is running. If there is no client side process, same as get_original_full_path.