app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 08 Apr 2009 22:47:46 +0000
changeset 2135 cafa4caec14f
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Make "Private Comment" first in the selection box on Student Proposal review page. 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"])