Liking cljdoc? Tell your friends :D

ring.util.request

Functions for augmenting and pulling information from request maps.

Functions for augmenting and pulling information from request maps.
raw docstring

body-stringcljmultimethod

(body-string request)

Return the request body as a string.

Return the request body as a string.
sourceraw docstring

character-encodingclj

(character-encoding request)

Return the character encoding for the request, or nil if it is not set.

Return the character encoding for the request, or nil if it is not set.
sourceraw docstring

content-lengthclj

(content-length request)

Return the content-length of the request, or nil no content-length is set.

Return the content-length of the request, or nil no content-length is set.
sourceraw docstring

content-typeclj

(content-type request)

Return the content-type of the request, or nil if no content-type is set.

Return the content-type of the request, or nil if no content-type is set.
sourceraw docstring

in-context?clj

(in-context? request context)

Returns true if the URI of the request is a subpath of the supplied context.

Returns true if the URI of the request is a subpath of the supplied context.
sourceraw docstring

path-infoclj

(path-info request)

Returns the relative path of the request.

Returns the relative path of the request.
sourceraw docstring

request-urlclj

(request-url request)

Return the full URL of the request.

Return the full URL of the request.
sourceraw docstring

set-contextclj

(set-context request context)

Associate a context and path-info with the request. The request URI must be a subpath of the supplied context.

Associate a context and path-info with the  request. The request URI must be
a subpath of the supplied context.
sourceraw docstring

urlencoded-form?clj

(urlencoded-form? request)

True if a request contains a urlencoded form in the body.

True if a request contains a urlencoded form in the body.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close