Re: "things are ready" signal?

2008-10-02 Thread Malcolm Tredinnick
On Wed, 2008-10-01 at 23:04 +0200, Marc Fargas wrote: > Hi there, > > Staring at #8638 I'm trying to find a way to hook code to be run "just > after Django is completelly loaded" and found no way ;( > > The thing is, it's a really nice place to emit a signal if you want to > do things "just

Re: "things are ready" signal?

2008-10-02 Thread James Bennett
On Wed, Oct 1, 2008 at 4:04 PM, Marc Fargas <[EMAIL PROTECTED]> wrote: > The thing is, it's a really nice place to emit a signal if you want to > do things "just after things are ready", but there's no signal for it. Just after *what* is ready, precisely? After "import django" has succeeded?

Re: "things are ready" signal?

2008-10-02 Thread Thomas Guettler
Marc Fargas schrieb: > Hi there, > > Staring at #8638 I'm trying to find a way to hook code to be run "just > after Django is completelly loaded" and found no way ;( > ... > So, would a signal there be useful? I am missing this signal, too. Thomas -- Thomas Guettler,

Re: "things are ready" signal?

2008-10-01 Thread Waylan Limberg
On Wed, Oct 1, 2008 at 5:04 PM, Marc Fargas <[EMAIL PROTECTED]> wrote: > > > So, would a signal there be useful? (no ticket filled yet) And, where > can one hook code for that? :) > I seem to recall this request being made from time to time. IIRC, it always turned out that whoever asked didn't

"things are ready" signal?

2008-10-01 Thread Marc Fargas
Hi there, Staring at #8638 I'm trying to find a way to hook code to be run "just after Django is completelly loaded" and found no way ;( The thing is, it's a really nice place to emit a signal if you want to do things "just after things are ready", but there's no signal for it. And, as I found