Changes between Version 15 and Version 16 of Signals


Ignore:
Timestamp:
Nov 7, 2006, 9:36:50 AM (18 years ago)
Author:
James Bennett
Comment:

Add a couple more warnings about overriding methods

Legend:

Unmodified
Added
Removed
Modified
  • Signals

    v15 v16  
    138138'''pre_delete'''
    139139
    140 This is sent at the beginning of a model's `delete` method.
     140This is sent at the beginning of a model's `delete` method. '''Note:''' if you override `delete` on your model, you must call the parent class' `delete` method for this signal to be sent, and it will be sent at the beginning of the parent class' `delete` method.
     141
    141142
    142143Arguments sent with this signal:
     
    147148'''post_delete'''
    148149
    149 This is sent at the end of a model's `delete` method.
     150This is sent at the end of a model's `delete` method. '''Note:''' if you override `delete` on your model, you must call the parent class' `delete` method for this signal to be sent, and it will be sent at the beginning of the parent class' `delete` method.
     151
    150152
    151153Arguments sent with this signal:
Back to Top