app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 22 Nov 2008 21:33:54 +0000
changeset 566 858e02fbbb97
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Disabled 'Home Settings' menu until we have a use for it Also fixed a typo in the request row template that caused it to display the wrong value. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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