app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 22 Feb 2009 21:47:41 +0000
changeset 1471 9b4717f6c416
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Temp IE7 style fix for forms. A percentage-based layout does not seem to work in IE7, the fields show up as large as the initial text that is in them. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

from django.dispatch import Signal

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