fpath_info_split...
- Splits off the first segment of the path. Returns (first_part,
rest_of_path). first_part can be None (if PATH_INFO is empty), ''
(if PATH_INFO is '/'), or a name without any /'s. rest_of_path
can be '' or a string starting with /.
fget_cookies...
- Gets a cookie object (which is a dictionary-like object) from the
request environment; caches this value in case get_cookies is
called again for the same request.
fpath_info_pop...
- 'Pops' off the next segment of PATH_INFO, pushing it onto
SCRIPT_NAME, and returning that segment.
fget_cookie_dict...
- Return a plain dictionary of cookies as found in the request.
fresolve_relative_url...
- Resolve the given relative URL as being relative to the
location represented by the environment. This can be used
for redirecting to a relative path. Note: if url is already
absolute, this function will (intentionally) have no effect
on it.
fparse_querystring...
- Parses a query string into a list like [(name,value)].
Caches this value in case parse_querystring is called again
for the same request.
fconstruct_url...
- Reconstructs the URL from the WSGI environment.
fparse_formvars...
- Parses the request, returning a MultiDict of form variables.