summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoshua "jag" Ginsberg <jag@flowtheory.net>2013-11-20 20:03:02 -0500
committerTim Graham <timograham@gmail.com>2014-08-29 10:12:03 -0400
commiteb2af16c59c3014541e2ad8ca63e510bc076dd8b (patch)
tree057b38477df5aceef7f0ab3e2b5bd677aa918f17 /docs
parent149605dfb4309331d0337af9ac962e67332a45a7 (diff)
Fixed #21483 -- Added WSGI environ to kwargs sent to request_started signal.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/signals.txt6
-rw-r--r--docs/releases/1.8.txt4
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index f2f1709cea..823545dd07 100644
--- a/docs/ref/signals.txt
+++ b/docs/ref/signals.txt
@@ -589,6 +589,12 @@ Arguments sent with this signal:
``sender``
The handler class -- e.g. ``django.core.handlers.wsgi.WsgiHandler`` -- that
handled the request.
+``environ``
+ The ``environ`` dictionary provided to the request.
+
+.. versionchanged:: 1.8
+
+ The ``environ`` argument was added.
request_finished
----------------
diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt
index 7d9a71c6e5..2fac733648 100644
--- a/docs/releases/1.8.txt
+++ b/docs/releases/1.8.txt
@@ -256,6 +256,10 @@ Signals
:meth:`Signal.send_robust() <django.dispatch.Signal.send_robust>` now have
their traceback attached as a ``__traceback__`` attribute.
+* The ``environ`` argument, which contains the WSGI environment structure from
+ the request, was added to the :data:`~django.core.signals.request_started`
+ signal.
+
Templates
^^^^^^^^^