app/django/bin/daily_cleanup.py
author Todd Larsen <tlarsen@google.com>
Tue, 20 Jan 2009 22:30:21 +0000
changeset 854 bb43b74c58f6
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
A better way to add site-wide ToS link to *all* pages on the site. getUniversalContext() already fetches a copy of the Site settings, so use that to see if the site-wide ToS exist and produce a link. Patch by: Todd Larsen Review by: to-be-reviewed

#!/usr/bin/env python

"""
Daily cleanup job.

Can be run as a cronjob to clean out old data from the database (only expired
sessions at the moment).
"""

from django.core import management

if __name__ == "__main__":
    management.call_command('cleanup')