~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to docs/howto/deployment/wsgi/index.txt

  • Committer: Package Import Robot
  • Author(s): Luke Faraone
  • Date: 2013-08-13 16:49:39 UTC
  • mfrom: (1.1.22) (4.4.28 sid)
  • Revision ID: package-import@ubuntu.com-20130813164939-ct6oweybhkuyq4tt
Tags: 1.5.2-1
* New upstream security release.
  https://www.djangoproject.com/weblog/2013/aug/13/security-releases-issued/
  - Cross-site scripting (XSS) in admin interface
  - Possible XSS via is_safe_url

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
combine a Django application with a WSGI application of another framework.
72
72
 
73
73
.. _`WSGI middleware`: http://www.python.org/dev/peps/pep-3333/#middleware-components-that-play-both-sides
 
74
 
 
75
.. note::
 
76
 
 
77
    Some third-party WSGI middleware do not call ``close`` on the response
 
78
    object after handling a request — most notably Sentry's error reporting
 
79
    middleware up to version 2.0.7. In those cases the
 
80
    :data:`~django.core.signals.request_finished` signal isn't sent. This can
 
81
    result in idle connections to database and memcache servers.