app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 03 Mar 2009 22:45:32 +0000
changeset 1608 ddef5428d3c9
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added a possible_mentors property to the StudentProposal. Also set the name and [min,max] score for the RankList. 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"])