app/django/contrib/sites/management.py
author Todd Larsen <tlarsen@google.com>
Fri, 19 Sep 2008 05:15:20 +0000
changeset 170 1fadf6e0348d
parent 54 03e267d67478
child 323 ff1a9aa48cfd
permissions -rw-r--r--
Add /site/user/profile Developer view for editing arbitrary User entities. Update /user/profile edit() view to fix TODO about updating the URL when a POST of the form changes the link_name of the User. Add a Create New User link to the base.html sidebar mock-up.

"""
Creates the default Site object.
"""

from django.dispatch import dispatcher
from django.db.models import signals
from django.contrib.sites.models import Site
from django.contrib.sites import models as site_app

def create_default_site(app, created_models, verbosity):
    if Site in created_models:
        if verbosity >= 2:
            print "Creating example.com Site object"
        s = Site(domain="example.com", name="example.com")
        s.save()

dispatcher.connect(create_default_site, sender=site_app, signal=signals.post_syncdb)