app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Mon, 06 Apr 2009 11:04:57 +0000
changeset 2092 6de3693ba9d4
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
When Student withdrew a proposal a public comment "Student withdrew proposal." is posted. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.dispatch import Signal

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