app/django/test/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 10 Nov 2008 00:39:50 +0000
changeset 455 4d98832b43ba
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added support for providing a custom params dict This has been a long outstanding feature request for tlarsen, luckily it turned out to be very easy to implement with the dict.merge utility method. To have custom _rights one should instead to the required access checks before calling the view method.

from django.dispatch import Signal

template_rendered = Signal(providing_args=["template", "context"])