app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 25 Jan 2009 22:15:13 +0000
changeset 994 f05c02ba40fc
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
listRequests now only shows the requests that concerns the given group. 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"])