app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 28 Jan 2009 02:27:25 +0000
changeset 1024 2a0ae6483825
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Group dynamically generated menu items Also allow for grouping other views by setting the 'sidebar_grouping' param to a value another than 'main'. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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