~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to docs/topics/signals.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (4.4.9 sid)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20101012113435-5rk3p18nyanuhj6g
* SECURITY UPDATE: XSS in CSRF protections. New upstream release
  - CVE-2010-3082
* debian/patches/01_disable_url_verify_regression_tests.diff:
  - updated to disable another test that fails without internet connection
  - patch based on work by Kai Kasurinen and Krzysztof Klimonda
* debian/control: don't Build-Depends on locales-all, which doesn't exist
  in maverick

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _topics-signals:
2
 
 
3
1
=======
4
2
Signals
5
3
=======
13
11
has taken place. They're especially useful when many pieces of code may be
14
12
interested in the same events.
15
13
 
16
 
Django provides a :ref:`set of built-in signals <ref-signals>` that let user
 
14
Django provides a :doc:`set of built-in signals </ref/signals>` that let user
17
15
code get notified by Django itself of certain actions. These include some useful
18
16
notifications:
19
17
 
38
36
 
39
37
      Sent when Django starts or finishes an HTTP request.
40
38
 
41
 
See the :ref:`built-in signal documentation <ref-signals>` for a complete list,
 
39
See the :doc:`built-in signal documentation </ref/signals>` for a complete list,
42
40
and a complete explanation of each signal.
43
41
 
44
42
You can also `define and send your own custom signals`_; see below.
128
126
is saved.
129
127
 
130
128
Different signals use different objects as their senders; you'll need to consult
131
 
the :ref:`built-in signal documentation <ref-signals>` for details of each
 
129
the :doc:`built-in signal documentation </ref/signals>` for details of each
132
130
particular signal.
133
131
 
134
132
Defining and sending signals