2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
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
|
|
|
|
|
2006-08-27 20:46:39 +08:00
|
|
|
def create_default_site(app, created_models, verbosity):
|
2006-05-02 09:31:56 +08:00
|
|
|
if Site in created_models:
|
2006-08-27 20:46:39 +08:00
|
|
|
if verbosity >= 2:
|
|
|
|
print "Creating example.com Site object"
|
2006-05-02 09:31:56 +08:00
|
|
|
s = Site(domain="example.com", name="example.com")
|
|
|
|
s.save()
|
|
|
|
|
|
|
|
dispatcher.connect(create_default_site, sender=site_app, signal=signals.post_syncdb)
|