X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Fsettings.py;fp=myslice%2Fsettings.py;h=91584419c7b9dc7cb51864025c5408be818195ea;hb=92db172eb967bdfec2f949a1a15592c0409a31ed;hp=4878c0de3d7278431468cf840a25cab1924ddaaa;hpb=be299cf00512e0bc83bf48518a0290bdedf7ff10;p=myslice.git diff --git a/myslice/settings.py b/myslice/settings.py index 4878c0de..91584419 100644 --- a/myslice/settings.py +++ b/myslice/settings.py @@ -19,8 +19,15 @@ except: import traceback traceback.print_exc() -if not ROOT: - raise Exception,"Cannot find ROOT for myslice" +if os.path.isdir(os.path.join(ROOT,"static")): + DATAROOT=ROOT +else: + DATAROOT="/usr/share/unfold" + if not os.path.isdir(os.path.join(DATAROOT,"static")): + DATAROOT=None + +if not ROOT: raise Exception,"Cannot find ROOT for myslice" +if not DATAROOT: raise Exception,"Cannot find DATAROOT for myslice" #################### ADMINS = ( @@ -40,7 +47,7 @@ EMAIL_USE_TLS = False DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': os.path.join(ROOT,'myslice.sqlite3'), # Or path to database file if using sqlite3. + 'NAME': os.path.join(DATAROOT,'myslice.sqlite3'), # Or path to database file if using sqlite3. 'USER': '', # Not used with sqlite3. 'PASSWORD': '', # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. @@ -84,7 +91,7 @@ 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,'static') +STATIC_ROOT = os.path.join(DATAROOT,'static') # URL prefix for static files. # Example: "http://media.lawrence.com/static/" @@ -154,7 +161,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,"templates"), + os.path.join(DATAROOT,"templates"), ) INSTALLED_APPS = ( @@ -183,7 +190,7 @@ INSTALLED_APPS = ( # 'django.contrib.admindocs', 'portal', # temporary - not packaged - 'trash', + # 'trash', 'sample', # DEPRECATED # 'django.contrib.formtools', # DEPRECATED ## 'crispy_forms',