app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Thu, 30 Jul 2009 13:54:47 +0200
changeset 2694 b8f083157e33
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Redone the gathering of data for the student<->mentor map. Note that the data is not actually being put in the template yet.

from django.dispatch import Signal

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