Re: Thoughts on defining and autoimporting signals.py

2014-01-15 Thread Aymeric Augustin
On 15 janv. 2014, at 15:01, Ihor Kaharlichenko wrote: > It's already 1.6 now, are there any news regarding this issue? It’s fixed in 1.7. Search for “app-loading” in the archives of this list. > From what I see the aren't any updates in signals docs. Look again: https://github.com/django/djang

Re: Thoughts on defining and autoimporting signals.py

2014-01-15 Thread Ihor Kaharlichenko
Hi. > The bad news is that the patch has been languishing in need of review > for a while. At this point, it almost certainly won't make 1.4; if it > can get some attention, it would be a welcome addition to 1.5. > It's already 1.6 now, are there any news regarding this issue? From what I see the

Re: Thoughts on defining and autoimporting signals.py

2012-01-20 Thread kayess
On Jan 19, 8:44 pm, Emil Stenström wrote: > On Thursday, 22 December 2011 03:49:44 UTC+1, Russell Keith-Magee wrote: > > ... there isn't a single solution that will work > > everywhere, which one of the reasons that the docs are silent on the > > issue. > > Just for the record: The docs are actu

Re: Thoughts on defining and autoimporting signals.py

2012-01-19 Thread Daniel Sokolowski
+1, I think they ought to be auto imported just like models.py, views.py, etc. are. From: Emil Stenström Sent: Thursday, January 19, 2012 8:44 AM To: django-developers@googlegroups.com Subject: Re: Thoughts on defining and autoimporting signals.py On Thursday, 22 December 2011 03:49:44 UTC

Re: Thoughts on defining and autoimporting signals.py

2012-01-19 Thread Emil Stenström
On Thursday, 22 December 2011 03:49:44 UTC+1, Russell Keith-Magee wrote: > ... there isn't a single solution that will work > everywhere, which one of the reasons that the docs are silent on the > issue. > Just for the record: The docs are actually telling you to put your signals in models.py, a

Re: Thoughts on defining and autoimporting signals.py

2011-12-21 Thread Russell Keith-Magee
On Thu, Dec 22, 2011 at 3:58 AM, Daniel Sokolowski wrote: > Dear Django Developers, > > Is there any consensus on where to define your signals for models and > how to import them? I ask because to me it seems very odd that there > doesn't appear to be a standard way to add your own signals and hav

Re: Thoughts on defining and autoimporting signals.py

2011-12-21 Thread Brendan Smith
wrong list, you want django-users but yes, you are on the right track with importing from __init__, at least that's how i've always done it -- Brendan Smith IT Specialist National Priorities Project 243 King Street Suite 109 Northampton, MA 01060 http://nationalpriorities.org/ On Wednesday,

Thoughts on defining and autoimporting signals.py

2011-12-21 Thread Daniel Sokolowski
Dear Django Developers, Is there any consensus on where to define your signals for models and how to import them? I ask because to me it seems very odd that there doesn't appear to be a standard way to add your own signals and have them auto imported by the framework. I for example create a / proj