File: middlewares.rst

package info (click to toggle)
python-werkzeug 0.8.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,940 kB
  • sloc: python: 16,194; makefile: 143; pascal: 66; xml: 16
file content (19 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
===========
Middlewares
===========

.. module:: werkzeug.wsgi

Middlewares wrap applications to dispatch between then or provide
additional request handling.  Additionally to the middlewares documented
here, there is also the :class:`DebuggedApplication` class that is
implemented as a WSGI middleware.

.. autoclass:: SharedDataMiddleware
   :members: is_allowed

.. autoclass:: DispatcherMiddleware

Also there's the …

.. autofunction:: werkzeug._internal._easteregg