app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 12 Dec 2008 00:35:51 +0000
changeset 725 6180b32d990f
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Filter the "list Hosts" view This way only those Hosts are shown that belong to a Sponsor the user is a host for. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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