On Fri, 2007-06-08 at 10:22 +0000, Tarek wrote:
> Hi,
> 
> I've seen through Google that Django used to have an event framework
> (http://code.djangoproject.com/ticket/421).
> But it seems deprecated.

Our signal framework isn't deprecated. Not sure how you got that
impression from #421, but it's still alive and well.

Have a look at http://www.mercurytide.com/whitepapers/django-signals/
for some good documentation. We haven't gotten around to incorporating
anything like this in the core docs yet, but it definitely exists.

> 
> What should I use now ? Is there any event framework avalaible
> anymore ?
> 
> If yes, is there somewhere a list of triggered events through the
> whome Django framework ?
> 
> My use case is to add listeners to database changes

The signals are hooked into Python object action, rather than
database-level actions, so to do this you would need to listen and act
on the post_save, post_delete and post_syncdb signals. There is no way
to catch actions that directly write to the database, however.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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