app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 28 Jan 2009 18:24:20 +0000
changeset 1050 77aab03aa693
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add 'Flush Cache' button next to Admin link. It's visible only when working on dev_appserver locally. This is a quick way of flushing memcache. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.dispatch import Signal

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