From 9618eb000646b2bcebde0e6c689473dc99d5fb10 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 19 Sep 2013 21:49:58 +0200 Subject: [PATCH] rename into unfold/*collect*static.py check .gitignore for new layout conventions --- .gitignore | 3 +-- myslice/settings.py | 6 +++--- unfold/{static.py => collectstatic.py} | 0 3 files changed, 4 insertions(+), 5 deletions(-) rename unfold/{static.py => collectstatic.py} (100%) diff --git a/.gitignore b/.gitignore index d2fb6c46..62df77b7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,9 +7,8 @@ TAGS *.pyc *~ # these essentially are copies/links from other places -all-static/ +static/ all-templates/ -django-static/ # various working files play/ *.leftovers diff --git a/myslice/settings.py b/myslice/settings.py index 01d8f532..f02b10f7 100644 --- a/myslice/settings.py +++ b/myslice/settings.py @@ -116,9 +116,9 @@ THIRDPARTY_DIR = os.path.join(ROOT, 'third-party') STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', - 'unfold.static.PluginFinder', - 'unfold.static.ThirdPartyFinder', -# 'django.contrib.staticfiles.finders.DefaultStorageFinder', + 'unfold.collectstatic.PluginFinder', + 'unfold.collectstatic.ThirdPartyFinder', +### 'django.contrib.staticfiles.finders.DefaultStorageFinder', ) #TEMPLATE_CONTEXT_PROCESSORS = ( diff --git a/unfold/static.py b/unfold/collectstatic.py similarity index 100% rename from unfold/static.py rename to unfold/collectstatic.py -- 2.43.0