Mercurial > public > sg101
view forums/management/commands/sync_forums.py @ 821:71db8076dc3d
Bandmap WIP: geocoding integrated with add form.
Add form works. Before submitting the form, client side JS makes
a geocode request to Google and populates hidden lat/lon fields
with the result. Successfully created a model instance on the
server side.
Still need to update admin dashboard, admin approval, and give
out badges for adding bands to the map. Once that is done, then
work on displaying the map with filtering.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 23 Sep 2014 20:40:31 -0500 |
parents | ee87ea74d46b |
children |
line wrap: on
line source
""" sync_forums.py - A management command to synchronize the forums by recomputing the de-normalized fields in the forum and topic objects. """ import optparse from django.core.management.base import NoArgsCommand, CommandError from forums.models import Forum from forums.models import Topic class Command(NoArgsCommand): help = """\ This command synchronizes the forum application's forums and topic objects by updating their de-normalized fields. """ option_list = NoArgsCommand.option_list + ( optparse.make_option("-p", "--progress", action="store_true", help="Output a . after every 50 topics to show progress"), ) def handle_noargs(self, **opts): show_progress = opts.get('progress', False) or False n = 0 for topic in Topic.objects.iterator(): topic.post_count_update() topic.save() n += 1 if n % 50 == 0: self.stdout.write('.') self.stdout.flush() for forum in Forum.objects.all(): forum.sync() forum.save() self.stdout.write('\n')