Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-14 Thread lingrlongr
Are we still on this!?!? There are SPAM filters (like Spam Assassin) that automatically add this in the subject if it this an email is SPAM. Relax! On Sep 14, 9:19 pm, n00m <[EMAIL PROTECTED]> wrote: > Next time you open your own thread > let me know: > I'll mark it as ***SPAM*** > and we'll

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-14 Thread n00m
Next time you open your own thread let me know: I'll mark it as ***SPAM*** and we'll see how tolerant *you* are. On Sep 15, 1:47 am, Martin Diers <[EMAIL PROTECTED]> wrote: > Chill out. It's a personal website - no product being sold or   > advertised. > > If this group were moderated, you

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-14 Thread Martin Diers
On Sep 14, 2008, at 12:59 PM, n00m wrote: > > What is the http://www.thomas-guettler.de/? > > Remove from your sig this link to your f**king spam-like site. > > On Sep 12, 4:36 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: >> Thomas Guettler,http://www.thomas-guettler.de/ > Chill out. It's a

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-14 Thread Steve Holden
Steve Holden wrote: > n00m wrote: >> What is the http:[...]? >> >> Remove from your sig this link to your f**king spam-like site. >> >> On Sep 12, 4:36 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: >> >>> Thomas Guettler[...] > If you think it's spam, why add another link to Google by quoting

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-14 Thread Steve Holden
n00m wrote: > What is the http://www.thomas-guettler.de/? > > Remove from your sig this link to your f**king spam-like site. > > On Sep 12, 4:36 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: > >> Thomas Guettler,http://www.thomas-guettler.de/ If you think it's spam, why add another link to

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-14 Thread n00m
What is the http://www.thomas-guettler.de/? Remove from your sig this link to your f**king spam-like site. On Sep 12, 4:36 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: > Thomas Guettler,http://www.thomas-guettler.de/ --~--~-~--~~~---~--~~ You received this

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread n00m
On Sep 12, 8:04 pm, David Thole <[EMAIL PROTECTED]> wrote: > Just curious,  are you using the django built in web server for > development?  The reason why I'm asking is because I don't recall > having any problems at all when changing a view and it not picking up > the change.  Every time I

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread Graham Dumpleton
On Sep 12, 11:36 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: > Hi, > > I use apachemod_wsgi(WSGIDaemonProcess) and for development > maximum-requests=1. > > This way I don't need to change any code for reloading: Just hit ctrl-r > (reload in firefox). I would recommend against

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread James Matthews
He might be using --no-reload On Fri, Sep 12, 2008 at 10:04 AM, David Thole <[EMAIL PROTECTED]> wrote: > > Just curious, are you using the django built in web server for > development? The reason why I'm asking is because I don't recall > having any problems at all when changing a view and it

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread David Thole
Just curious, are you using the django built in web server for development? The reason why I'm asking is because I don't recall having any problems at all when changing a view and it not picking up the change. Every time I save a file, the build in web server automatically updates it. If

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread n00m
On Sep 12, 6:11 pm, "Keith Eberle" <[EMAIL PROTECTED]> wrote: > i don't think he marked it as spam, but rather "spam assassin" did... > > keith If so then my sincere apologies to Thomas Guettler --~--~-~--~~~---~--~~ You received this message because you are

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread n00m
Much better just to keep in views.py a "secret", not for public, "reloader" page: === views.py === import views_base def reloader(request): reload(views_base) return

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread Keith Eberle
i don't think he marked it as spam, but rather "spam assassin" did... keith On Fri, Sep 12, 2008 at 10:47 AM, n00m <[EMAIL PROTECTED]> wrote: > > > This way I don't need to change any code > > Seems you absolutely misunderstand what I was talking about but > you dared, in bold manner, to label

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread n00m
> This way I don't need to change any code Seems you absolutely misunderstand what I was talking about but you dared, in bold manner, to label my subject as a spam. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread n00m
Hi, Tom! Now imagine production environment on an hoster machine on which Apache is running in 24/7 mode. === Of course, I didn't mean my trick for home/localhost Cheers! --~--~-~--~~~---~--~~ You received this message

Re: ***SPAM*** A trick to force autoreloading, in case of changes in views.py

2008-09-12 Thread Thomas Guettler
Hi, I use apache mod_wsgi (WSGIDaemonProcess) and for development maximum-requests=1. This way I don't need to change any code for reloading: Just hit ctrl-r (reload in firefox). Thomas n00m schrieb: > 1. > Rename views.py to (say) views_base.py > > 2. > Create a new views.py file, with