app/django/core/signals.py
author Todd Larsen <tlarsen@google.com>
Thu, 16 Oct 2008 04:30:26 +0000
changeset 350 e8f14fde7f0e
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
"new" is a little bit redundant in the short_name of sidebar menu items that already begin with "Create...", since that implies the result will be something new. Patch by: Todd Larsen Review by: to-be-reviewed

from django.dispatch import Signal

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