annotate gpp/membermap/signals.py @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents 0140ff687d49
children 3a4bbf9c2cce
rev   line source
gremmie@1 1 """
gremmie@1 2 Signal handlers for the membermap application.
gremmie@1 3 We want to detect changes to the UserProfile model. If that person is on
gremmie@1 4 the map, re-save her MapEntry so that any avatar changes get picked up.
gremmie@1 5 """
gremmie@1 6 from django.db.models.signals import post_save
gremmie@1 7 from bio.models import UserProfile
gremmie@1 8 from membermap.models import MapEntry
gremmie@1 9
gremmie@1 10
gremmie@1 11 def on_profile_save(sender, **kwargs):
gremmie@1 12 if 'instance' in kwargs:
gremmie@1 13 profile = kwargs['instance']
bgneal@46 14 try:
bgneal@46 15 map_entry = MapEntry.objects.get(user=profile.user)
bgneal@46 16 except MapEntry.DoesNotExist:
bgneal@46 17 # Not on the map, no harm, no foul
bgneal@46 18 return
gremmie@1 19 if map_entry is not None:
gremmie@1 20 map_entry.save()
gremmie@1 21
gremmie@1 22
gremmie@1 23 post_save.connect(on_profile_save, sender=UserProfile)