X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Fsettings.py;h=4878c0de3d7278431468cf840a25cab1924ddaaa;hb=e662708d2f2f1ba05daefe1db50ee08c5439aadc;hp=c9b300585ec98ad807d00313182bdbec8bc29df9;hpb=18710ca42c0eb6c72ab5ce2449a9676dd6d491bd;p=myslice.git diff --git a/myslice/settings.py b/myslice/settings.py index c9b30058..4878c0de 100644 --- a/myslice/settings.py +++ b/myslice/settings.py @@ -37,10 +37,6 @@ EMAIL_HOST = "localhost" EMAIL_PORT = 25 EMAIL_USE_TLS = False - - - - DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. @@ -88,28 +84,47 @@ MEDIA_URL = '' # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/home/media/media.lawrence.com/static/" -STATIC_ROOT = os.path.join(ROOT,'django-static') +STATIC_ROOT = os.path.join(ROOT,'static') # URL prefix for static files. # Example: "http://media.lawrence.com/static/" -STATIC_URL = '/all-static/' +STATIC_URL = '/static/' # Additional locations of static files STATICFILES_DIRS = ( # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - os.path.join(ROOT,'all-static'), + # Thierry : we do not need to detail the contents + # of our 'apps' since they're mentioned in INSTALLED_APPS ) +# Needed by PluginFinder +PLUGIN_DIR = os.path.join(ROOT,'plugins') +# ThirdPartyFinder +THIRDPARTY_DIR = os.path.join(ROOT, 'third-party') + # List of finder classes that know how to find static files in # various locations. STATICFILES_FINDERS = ( - 'django.contrib.staticfiles.finders.FileSystemFinder', +# Thierry : no need for this one +# 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', -# 'django.contrib.staticfiles.finders.DefaultStorageFinder', + 'unfold.collectstatic.PluginFinder', + 'unfold.collectstatic.ThirdPartyFinder', +### 'django.contrib.staticfiles.finders.DefaultStorageFinder', ) +#TEMPLATE_CONTEXT_PROCESSORS = ( +# 'django.contrib.auth.context_processors.auth', +# 'django.core.context_processors.debug', +# 'django.core.context_processors.i18n', +# 'django.core.context_processors.media', +# 'django.core.context_processors.static', +# 'django.core.context_processors.request', +# 'django.contrib.messages.context_processors.messages', +#) + # Make this unique, and don't share it with anybody. SECRET_KEY = 't%n(3h)&r^n8(+8)(sp29t^$c2#t(m3)e2!02l8w1#36tl#t27' @@ -139,7 +154,7 @@ TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - os.path.join(ROOT,"all-templates"), + os.path.join(ROOT,"templates"), ) INSTALLED_APPS = ( @@ -159,13 +174,17 @@ INSTALLED_APPS = ( # plugins 'plugins', # views - more or less stable - 'views', - 'trash', + 'ui', + # managing database migrations + 'south', # Uncomment the next line to enable the admin: # 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', 'portal', + # temporary - not packaged + 'trash', + 'sample', # DEPRECATED # 'django.contrib.formtools', # DEPRECATED ## 'crispy_forms', # DEPRECATED # @@ -206,7 +225,7 @@ LOGGING = { } } -AUTHENTICATION_BACKENDS = ( 'auth.backend.MyCustomBackend', 'auth.manifoldbackend.ManifoldBackend', ) +AUTHENTICATION_BACKENDS = ( 'auth.manifoldbackend.ManifoldBackend', ) ### the view to redirect malformed (i.e. with a wrong CSRF) incoming requests # without this setting django will return a 403 forbidden error, which is fine @@ -217,4 +236,3 @@ CSRF_FAILURE_VIEW = 'manifold.manifoldproxy.csrf_failure' #IA_JS_FORMAT = "