app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 13 Mar 2009 18:41:35 +0000
changeset 1836 1ca77835020a
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
The rejected applications subsection now links to the public page for the list_self view. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

from django.dispatch import Signal

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