annotate bio/signals.py @ 989:2908859c2fe4

Smilies now use relative links. This is for upcoming switch to SSL. Currently we do not need absolute URLs for smilies. If this changes we can add it later.
author Brian Neal <bgneal@gmail.com>
date Thu, 29 Oct 2015 20:54:34 -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)