app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Tue, 24 Feb 2009 23:11:15 +0000
changeset 1497 1387f0d2cf45
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Pass the seed to _constructResponse This way _editContext has access to it; this will be used by the commenting system. Patch by: Sverre Rabbelier

from django.dispatch import Signal

request_started = Signal()
request_finished = Signal()
got_request_exception = Signal(providing_args=["request"])