app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 29 Mar 2009 21:35:02 +0000
changeset 2028 df97cade97ac
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
This patch adds a javascript confirmation box when clicking "Mark as Ineligible" on Student Proposal. This is temporary until we make this action reversible. Patch by: Tim Ansell Reviewed by: Pawel Solyga

from django.dispatch import Signal

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