Re: NEW Feature: Collect static order of directories searched. Possible upgrade inside FileSystemFinder.

2017-03-11 Thread Luke Plant
Like Tim, I'm surprised if there is non-determinism in the order here - a quick look at the code shows the search is in the order specified in STATICFILES_DIRS. Is it possible you are encountering browser caching effects, perhaps triggered by accessing both sites on 'localhost' locally?

Re: NEW Feature: Collect static order of directories searched. Possible upgrade inside FileSystemFinder.

2017-03-10 Thread René Fleschenberg
Hi Radosław, On 03/10/2017 11:49 AM, Radosław Orłowski wrote: > Right now I'm working with Django 1.8.17 and What I'm trying to > acomplish is simple override of static files. > > STATICFILES_DIRS = ( > str(os.path.abspath(os.path.join(SITE_ROOT, 'static_new'))), >

Re: NEW Feature: Collect static order of directories searched. Possible upgrade inside FileSystemFinder.

2017-03-10 Thread Tim Graham
Hi, I'm surprised if the search behavior is nondeterministic rather than searching STATICFILES_DIRS in order. If that's really the case, it seems like a bug. Can you point to the code that causes the nondeterminism? On Friday, March 10, 2017 at 7:35:25 AM UTC-5, Radosław Orłowski wrote: > >

NEW Feature: Collect static order of directories searched. Possible upgrade inside FileSystemFinder.

2017-03-10 Thread Radosław Orłowski
Right now I'm working with Django 1.8.17 and What I'm trying to acomplish is simple override of static files. STATICFILES_DIRS = ( str(os.path.abspath(os.path.join(SITE_ROOT, 'static_new'))), str(os.path.abspath(os.path.join(SITE_ROOT, 'static'))), ) STATICFILES_FINDERS = (