On Jun 19, 10:08 am, timc3 <[EMAIL PROTECTED]> wrote:
> > Renaming models to notification here is not a good idea (see below for
> > the reason)
>
> > >     def create_notice_types(app, created_models, verbosity, **kwargs):
>
> > <snip>
>
> > >     dispatcher.connect(create_notice_types,
> > > signal=signals.post_syncdb, sender=notification)
>
> > The sender here must be the app name 'notification'. However, your
> > above import clobbers notification to take on the value of
> > notification.models. The net effect is that your callback function
> > create_notice_types is never called.
>
> > So, after you fix your import above and make sure sender=notification
> > refers to the notification app (i.e. import notification), do the
> > following:
>
> > manage.py reset notification
>
> > Hopefully, that will do the right thing. If it doesn't, try dropping
> > the notification app's tables from your DB, and run syncdb again.
>
> > -Rajesh D
>
> Well that's what the documentation is saying to 
> do,http://code.google.com/p/django-notification/wiki/IntegratingNotifica...
> .

I don't know that application but the signal mechanism is a Django
feature not a django-notification one. The sender=notication.models
that you have there is not going to get called.

Put a debug print statement inside create_notice_types() to verify for
yourself whether it's getting called when you run syncdb.

Then, for a second test, remove that sender parameter:

dispatcher.connect(create_notice_types, signal=signals.post_syncdb)

and try syncdb again.

In all cases, be sure to drop the notification_* tables from your DB
before running a syncdb.



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to