Re: Project settings and application settings.

2013-06-21 Thread Tom Evans
On Fri, Jun 21, 2013 at 12:38 PM, wrote: > > I don't really want the settings to be adjusted at runtime, I would like my > application to reset some django "core" settings like the MIDDLEWARE_CLASSES > during the project configuration, once for all. > It is just to ease the deployment of the proj

Re: Project settings and application settings.

2013-06-21 Thread Drew Ferguson
On Fri, 21 Jun 2013 04:38:33 -0700 (PDT) piir...@gmail.com wrote: > > I don't really want the settings to be adjusted at runtime, I would like > my application to reset some django "core" settings like the > MIDDLEWARE_CLASSES during the project configuration, once for all. > It is just to ease

Re: Project settings and application settings.

2013-06-21 Thread piir . dk
I don't really want the settings to be adjusted at runtime, I would like my application to reset some django "core" settings like the MIDDLEWARE_CLASSES during the project configuration, once for all. It is just to ease the deployment of the project and because the applications knows which sett

Re: Project settings and application settings.

2013-06-20 Thread Jacky Tian
Django settings are meant to be immutable, so your issues might be stemming from the way you're changing settings at runtime. Most Django projects that need to adjust settings at runtime do so by keeping the mutable settings in the database (e.g. a separate app in the project), so that's an appr

Project settings and application settings.

2013-06-20 Thread piir . dk
Hello all, I want to have an application settings modifying the project settings but it doesn't seems to work. For development purpose I need to authenticate users against my application database. In Production the authentication is done by Apache, it then sends the REMOTE_USER, correctly. To