Author: russellm
Date: 2009-09-13 01:32:00 -0500 (Sun, 13 Sep 2009)
New Revision: 11562
Modified:
django/branches/releases/1.1.X/docs/ref/signals.txt
Log:
[1.1.X] Fixed #11359 -- Added a link to the signals topic guide in the signals
reference. Thanks to tyson for the suggestion.
Merge of r11540 and r11554 from trunk.
Modified: django/branches/releases/1.1.X/docs/ref/signals.txt
===================================================================
--- django/branches/releases/1.1.X/docs/ref/signals.txt 2009-09-13 06:31:50 UTC
(rev 11561)
+++ django/branches/releases/1.1.X/docs/ref/signals.txt 2009-09-13 06:32:00 UTC
(rev 11562)
@@ -8,6 +8,9 @@
.. seealso::
+ See the documentation on the :ref:`signal dispatcher <topics-signals>` for
+ information regarding how to register for and receive signals.
+
The :ref:`comment framework <ref-contrib-comments-index>` sends a :ref:`set
of comment-related signals <ref-contrib-comments-signals>`.
@@ -98,7 +101,7 @@
.. data:: django.db.models.signals.pre_save
:module:
-
+
This is sent at the beginning of a model's :meth:`~django.db.models.Model.save`
method.
@@ -114,8 +117,8 @@
---------
.. data:: django.db.models.signals.post_save
- :module:
-
+ :module:
+
Like :data:`pre_save`, but sent at the end of the
:meth:`~django.db.models.Model.save` method.
@@ -135,7 +138,7 @@
.. data:: django.db.models.signals.pre_delete
:module:
-
+
Sent at the beginning of a model's :meth:`~django.db.models.Model.delete`
method.
@@ -151,8 +154,8 @@
-----------
.. data:: django.db.models.signals.post_delete
- :module:
-
+ :module:
+
Like :data:`pre_delete`, but sent at the end of the
:meth:`~django.db.models.Model.delete` method.
@@ -172,7 +175,7 @@
.. data:: django.db.models.signals.class_prepared
:module:
-
+
Sent whenever a model class has been "prepared" -- that is, once model has
been defined and registered with Django's model system. Django uses this
signal internally; it's not generally used in third-party applications.
@@ -241,8 +244,8 @@
---------------
.. data:: django.core.signals.request_started
- :module:
-
+ :module:
+
Sent when Django begins processing an HTTP request.
Arguments sent with this signal:
@@ -258,7 +261,7 @@
.. data:: django.core.signals.request_finished
:module:
-
+
Sent when Django finishes processing an HTTP request.
Arguments sent with this signal:
@@ -271,7 +274,7 @@
.. data:: django.core.signals.got_request_exception
:module:
-
+
This signal is sent whenever Django encounters an exception while processing
an incoming HTTP request.
Arguments sent with this signal:
@@ -295,7 +298,7 @@
.. data:: django.test.signals.template_rendered
:module:
-
+
Sent when the test system renders a template. This signal is not emitted during
normal operation of a Django server -- it is only available during testing.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---