ManyToManyField, symmetrical & related_name

2006-09-30 Thread mdornseif
I now spent to long debugging my model - I had missed the ManyToManyField documentation regarding the symmetrical parameter and relying on the related_name parameter. To me it seems that when symmetrical=True, related_name is ignored. Shouldn't we therefore add something like if kwargs.

SomeField(member_name)

2006-09-29 Thread mdornseif
I had some issues with raw_id_admin=True pointing to Models with non-IntegerField primary keys. Some investigation turned out that some field typesaccept a member_name keyword parameter and some don't. I could fix my problem in a simple way by adding that parameter - see http://code.djangoproject.

Re: Cross-process event dispatcher

2006-09-23 Thread mdornseif
I think this is a a whole a very nice idea. Max Derkachev wrote: > 1. Events should be routed using IP protocol. [...] > 2. There should be a master server (started as a standalone daemon). > 3. Every Django instance that needs to be aware of application-wide > events [...] If you are not afte