annotate bio/signals.py @ 924:78b459d4ab17

App refactor for custom_search for Django 1.7.7. upgrade. This commit prevents a lot of Django warnings by creating our Haystack signal processor as part of the custom_search apps' ready() method.
author Brian Neal <bgneal@gmail.com>
date Thu, 09 Apr 2015 19:43:07 -0500
parents 0b6bf9c5a982
children
rev   line source
bgneal@44 1 """
bgneal@919 2 Signals for the bio application
bgneal@44 3 """
bgneal@471 4 import django.dispatch
bgneal@204 5
bgneal@471 6 #
bgneal@471 7 # This signal is sent whenever a profile has had its textual content updated.
bgneal@471 8 # The provided arguments to the receiver function are:
bgneal@471 9 # - sender - the profile model instance
bgneal@471 10
bgneal@471 11 profile_content_update = django.dispatch.Signal(providing_args=[])
bgneal@471 12
bgneal@471 13
bgneal@471 14 def notify_profile_content_update(profile):
bgneal@471 15 """
bgneal@471 16 Convenience function to send the profile content update signal.
bgneal@471 17
bgneal@471 18 """
bgneal@471 19 profile_content_update.send_robust(profile)