OpenQuizz
Une application de gestion des contenus pédagogiques
|
Public Member Functions | |
def | cache_control (self) |
def | if_match (self) |
def | if_none_match (self) |
def | if_modified_since (self) |
def | if_unmodified_since (self) |
def | if_range (self) |
def | range (self) |
Add entity tag and cache descriptors to a request object or object with a WSGI environment available as :attr:`~BaseRequest.environ`. This not only provides access to etags but also to the cache control header.
def cache_control | ( | self | ) |
A :class:`~werkzeug.datastructures.RequestCacheControl` object for the incoming cache control headers.
def if_match | ( | self | ) |
An object containing all the etags in the `If-Match` header. :rtype: :class:`~werkzeug.datastructures.ETags`
def if_modified_since | ( | self | ) |
The parsed `If-Modified-Since` header as datetime object.
def if_none_match | ( | self | ) |
An object containing all the etags in the `If-None-Match` header. :rtype: :class:`~werkzeug.datastructures.ETags`
def if_range | ( | self | ) |
The parsed `If-Range` header. .. versionadded:: 0.7 :rtype: :class:`~werkzeug.datastructures.IfRange`
def if_unmodified_since | ( | self | ) |
The parsed `If-Unmodified-Since` header as datetime object.
def range | ( | self | ) |
The parsed `Range` header. .. versionadded:: 0.7 :rtype: :class:`~werkzeug.datastructures.Range`