app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 31 Jan 2009 22:32:01 +0000
changeset 1133 4bb31d9a58e0
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added a rights module The purpose of this module is to translate from document prefix and status to a set of access checks. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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