app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Mon, 01 Jun 2009 20:31:38 +0200
changeset 2373 05ab9393303d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add google-visualization-python project to Melange repository. This python module will be used with our Statistics module to leverage Google Visualization API and python as a data source.

from django.dispatch import Signal

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