Re: Order of INSTALLED_APPS

2013-09-10 Thread Tim Graham
Yes, here's the ticket to add validation for INSTALLED_APPS: https://code.djangoproject.com/ticket/12288 On Monday, September 9, 2013 6:32:48 PM UTC-4, German Larrain wrote: > > Hi guys > > A related question: What about repeated entries of apps in INSTALLED_APPS? > I remember seeing this once a

Re: Order of INSTALLED_APPS

2013-09-09 Thread German Larrain
Hi guys A related question: What about repeated entries of apps in INSTALLED_APPS? I remember seeing this once and, if I recall correctly, no errors were raised. I guess ImproperlyConfigured would be a suitable exception. Germán On Tuesday, August 13, 2013 5:09:45 AM UTC-5, Stefano Crosta wrot

Re: Order of INSTALLED_APPS

2013-09-03 Thread Kevin Christopher Henry
; Marc > On 1 Sep 2013 21:31, "Kevin Christopher Henry" > > > wrote: > >> Sorry to be late to this thread, I just came across it. >> >> There's another place where the order of INSTALLED_APPS matters: >> management commands. Management commands a

Re: Order of INSTALLED_APPS

2013-09-02 Thread Shai Berger
On Monday 02 September 2013 12:34:03 VernonCole wrote: > It also affects _how_ South works, not just _whether_ it works. Only this > week I had to install a patch for the formhub package which consisted of > re-ordering INSTALLED_APPS so that tables were built in the correct order > on PostgreSQL

Re: Order of INSTALLED_APPS

2013-09-02 Thread VernonCole
e size of the impact. > > Marc > On 1 Sep 2013 21:31, "Kevin Christopher Henry" > > > wrote: > >> Sorry to be late to this thread, I just came across it. >> >> There's another place where the order of INSTALLED_APPS matters: >> mana

Re: Order of INSTALLED_APPS

2013-09-01 Thread Marc Tamlyn
quot;Kevin Christopher Henry" wrote: > Sorry to be late to this thread, I just came across it. > > There's another place where the order of INSTALLED_APPS matters: > management commands. Management commands associated with apps that come > later in INSTALLED_APPS will replac

Re: Order of INSTALLED_APPS

2013-09-01 Thread Kevin Christopher Henry
Sorry to be late to this thread, I just came across it. There's another place where the order of INSTALLED_APPS matters: management commands. Management commands associated with apps that come later in INSTALLED_APPS will replace those with the same name that are listed earlier. I can&#

Re: Order of INSTALLED_APPS

2013-08-14 Thread Stefano Crosta
Done! https://code.djangoproject.com/ticket/20914#ticket thanks! On Tuesday, August 13, 2013 12:20:48 PM UTC+2, Aymeric Augustin wrote: > > 2013/8/13 Stefano Crosta > > >> My proposal would then be to simply add another box to the >> https://docs.djangoproject.com/en/dev/ref/settings/#installed-

Re: Order of INSTALLED_APPS

2013-08-13 Thread Aymeric Augustin
2013/8/13 Stefano Crosta > My proposal would then be to simply add another box to the > https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps to say > "order matters" once more and link the other two pages for translations and > templates. > *if you think this would* help I could do

Re: Order of INSTALLED_APPS

2013-08-13 Thread Stefano Crosta
Aymeric, Ramiro, Florian, thanks a lot for your answers! Indeed there is some (slightly hidden :D ) documentation! And it has improved since 1.5, I now see! - I remembered reading something before, but I couldn't find them anymore when I wrote yesterday's message. My proposal would then be to

Re: Order of INSTALLED_APPS

2013-08-12 Thread Florian Apolloner
On Monday, August 12, 2013 3:41:15 PM UTC+2, Ramiro Morales wrote: > > For translations, we have such documentation already: > > > https://docs.djangoproject.com/en/1.5/topics/i18n/translation/#how-django-discovers-translations > > For templates too: https://docs.djangoproject.com/en/dev/ref/t

Re: Order of INSTALLED_APPS

2013-08-12 Thread Ramiro Morales
On Mon, Aug 12, 2013 at 9:59 AM, Aymeric Augustin wrote: > 2013/8/12 Stefano Crosta > >> There is one situation where the order of INSTALLED_APPS really matters - >> which is template override. > > > There are at least two other similar cases: translations and stati

Re: Order of INSTALLED_APPS

2013-08-12 Thread Aymeric Augustin
2013/8/12 Stefano Crosta There is one situation where the order of INSTALLED_APPS really matters - > which is template override. > There are at least two other similar cases: translations and static files. > Though not officially documented (?) I've found references in the mai

Order of INSTALLED_APPS

2013-08-12 Thread Stefano Crosta
Hello! There is one situation where the order of INSTALLED_APPS really matters - which is template override. One typical case is grappelli - see https://django-grappelli.readthedocs.org/en/2.4.5/quickstart.html#setup Though not officially documented (?) I've found references in the ma