~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to docs/topics/http/middleware.txt

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2012-08-02 10:44:02 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20120802104402-446mwidqmqizf5b2
Tags: 1.4.1-1
* New upstream security and maintenance release. Closes: #683364
  Fixes: CVE-2012-3442 CVE-2012-3443 CVE-2012-3444
* Drop 01_disable_broken_test.diff and 04_hyphen-manpage.diff which
  have been merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
  define ``__init__`` as requiring any arguments.
200
200
 
201
201
* Unlike the ``process_*`` methods which get called once per request,
202
 
  ``__init__`` gets called only *once*, when the Web server starts up.
 
202
  ``__init__`` gets called only *once*, when the Web server responds to the
 
203
  first request.
203
204
 
204
205
Marking middleware as unused
205
206
~~~~~~~~~~~~~~~~~~~~~~~~~~~~