Ticket #8568: signals_missing_docs_fix_r8596.txt

File signals_missing_docs_fix_r8596.txt, 958 bytes (added by Manuel Saelices, 16 years ago)
Line 
1Index: docs/ref/models/instances.txt
2===================================================================
3--- docs/ref/models/instances.txt (revisión: 8596)
4+++ docs/ref/models/instances.txt (copia de trabajo)
5@@ -104,8 +104,7 @@
6
7 1. **Emit a ``pre_save`` signal.** This provides a notification that
8 an object is about to be saved. You can register a listener that
9- will be invoked whenever this signal is emitted. (These signals are
10- not yet documented.)
11+ will be invoked whenever this signal is emitted.
12
13 2. **Pre-process the data.** Each field on the object is asked to
14 perform any automated data modification that the field may need
15@@ -137,7 +136,7 @@
16
17 5. **Emit a ``post_save`` signal.** As with the ``pre_save`` signal, this
18 is used to provide notification that an object has been successfully
19- saved. (These signals are not yet documented.)
20+ saved.
21
22 Raw saves
23 ~~~~~~~~~
Back to Top