Ticket #15853: patch.diff

File patch.diff, 1.2 KB (added by elbarto, 13 years ago)
  • docs/ref/signals.txt

     
    224224    This can be one of the following:
    225225
    226226    ``"pre_add"``
    227         Sent *before* one or more objects are added to the relation
     227        Sent *before* one or more objects are added to the relation.
    228228    ``"post_add"``
    229         Sent *after* one or more objects are added to the relation
     229        Sent *after* one or more objects are added to the relation.
    230230    ``"pre_remove"``
    231         Sent *after* one or more objects are removed from the relation
     231        Sent *before* one or more objects are removed from the relation.
    232232    ``"post_remove"``
    233         Sent *after* one or more objects are removed from the relation
     233        Sent *after* one or more objects are removed from the relation.
    234234    ``"pre_clear"``
    235         Sent *before* the relation is cleared
     235        Sent *before* the relation is cleared.
    236236    ``"post_clear"``
    237         Sent *after* the relation is cleared
     237        Sent *after* the relation is cleared.
    238238
    239239``reverse``
    240240    Indicates which side of the relation is updated (i.e., if it is the
Back to Top