app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 05 Nov 2008 23:33:22 +0000
changeset 444 6e50bfc6e5a7
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fix sponsor key field extraction When extracting key field there is no sponsor or user object, instead only their link names are known.

from django.dispatch import Signal

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