20cdbed8808cf656f8a2baaad97f11cfd987f666
[myslice.git] / myslice / settings.py
1 # Django settings for myslice project.
2
3 import os.path
4
5 DEBUG = True
6 TEMPLATE_DEBUG = DEBUG
7
8 # change these if you use a different convention
9
10 DEVELOPER_ROOT=os.path.expanduser("~/git/myslice-django")
11
12 PRODUCTION_ROOT="/root/myslice"
13
14 ####################
15 ADMINS = (
16     # ('Your Name', 'your_email@example.com'),
17 )
18
19 MANAGERS = ADMINS
20
21 ####################
22 # guess if we run on the 'prod' site (:) that for now uses /root/myslice and run manage.py
23 # or on a working laptop, in which case we use ~/git/myslice-django
24 import os, os.path
25 ROOT=''
26 def init_root ():
27     global ROOT
28     if os.path.exists(PRODUCTION_ROOT):
29         ROOT=PRODUCTION_ROOT
30     elif os.path.exists (DEVELOPER_ROOT):
31         ROOT=DEVELOPER_ROOT
32     else:
33         raise Exception,"Cannot find ROOT for myslice (neither %s nor %s)"%(PRODUCTION_ROOT,DEVELOPER_ROOT)
34
35 init_root()
36
37 DATABASES = {
38     'default': {
39         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
40         'NAME': os.path.join(ROOT,'myslice.sqlite3'), # Or path to database file if using sqlite3.
41         'USER': '',                      # Not used with sqlite3.
42         'PASSWORD': '',                  # Not used with sqlite3.
43         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
44         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
45     }
46 }
47
48 # Local time zone for this installation. Choices can be found here:
49 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
50 # although not all choices may be available on all operating systems.
51 # In a Windows environment this must be set to your system time zone.
52 TIME_ZONE = 'America/Chicago'
53
54 # Language code for this installation. All choices can be found here:
55 # http://www.i18nguy.com/unicode/language-identifiers.html
56 LANGUAGE_CODE = 'en-us'
57
58 SITE_ID = 1
59
60 # If you set this to False, Django will make some optimizations so as not
61 # to load the internationalization machinery.
62 USE_I18N = True
63
64 # If you set this to False, Django will not format dates, numbers and
65 # calendars according to the current locale.
66 USE_L10N = True
67
68 # If you set this to False, Django will not use timezone-aware datetimes.
69 USE_TZ = True
70
71 # Absolute filesystem path to the directory that will hold user-uploaded files.
72 # Example: "/home/media/media.lawrence.com/media/"
73 MEDIA_ROOT = ''
74
75 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
76 # trailing slash.
77 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
78 MEDIA_URL = ''
79
80 # Absolute path to the directory static files should be collected to.
81 # Don't put anything in this directory yourself; store your static files
82 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
83 # Example: "/home/media/media.lawrence.com/static/"
84 STATIC_ROOT = os.path.join(ROOT,'all-static')
85
86 # URL prefix for static files.
87 # Example: "http://media.lawrence.com/static/"
88 STATIC_URL = '/all-static/'
89
90 # Additional locations of static files
91 STATICFILES_DIRS = (
92     # Put strings here, like "/home/html/static" or "C:/www/django/static".
93     # Always use forward slashes, even on Windows.
94     # Don't forget to use absolute paths, not relative paths.
95     os.path.join(ROOT,'static'),
96 )
97
98 # List of finder classes that know how to find static files in
99 # various locations.
100 STATICFILES_FINDERS = (
101     'django.contrib.staticfiles.finders.FileSystemFinder',
102     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
103 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
104 )
105
106 # Make this unique, and don't share it with anybody.
107 SECRET_KEY = 't%n(3h)&r^n8(+8)(sp29t^$c2#t(m3)e2!02l8w1#36tl#t27'
108
109 # List of callables that know how to import templates from various sources.
110 TEMPLATE_LOADERS = (
111     'django.template.loaders.filesystem.Loader',
112     'django.template.loaders.app_directories.Loader',
113 #     'django.template.loaders.eggs.Loader',
114 )
115
116 MIDDLEWARE_CLASSES = (
117     'django.middleware.common.CommonMiddleware',
118     'django.contrib.sessions.middleware.SessionMiddleware',
119     'django.middleware.csrf.CsrfViewMiddleware',
120     'django.contrib.auth.middleware.AuthenticationMiddleware',
121     'django.contrib.messages.middleware.MessageMiddleware',
122     # Uncomment the next line for simple clickjacking protection:
123     # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
124 )
125
126 ROOT_URLCONF = 'myslice.urls'
127
128 # Python dotted path to the WSGI application used by Django's runserver.
129 WSGI_APPLICATION = 'myslice.wsgi.application'
130
131 TEMPLATE_DIRS = (
132     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
133     # Always use forward slashes, even on Windows.
134     # Don't forget to use absolute paths, not relative paths.
135     os.path.join(ROOT,"templates"),
136 )
137
138 INSTALLED_APPS = (
139     'django.contrib.auth',
140     'django.contrib.contenttypes',
141     'django.contrib.sessions',
142     'django.contrib.sites',
143     'django.contrib.messages',
144     'django.contrib.staticfiles',
145     # see details in devel/django-insert-above-1.0-4
146     'insert_above',
147     'myslice',
148     'auth',
149     'engine',
150     'plugins',
151     'trash',
152     # Uncomment the next line to enable the admin:
153     # 'django.contrib.admin',
154     # Uncomment the next line to enable admin documentation:
155     # 'django.contrib.admindocs',
156 )
157
158 # A sample logging configuration. The only tangible logging
159 # performed by this configuration is to send an email to
160 # the site admins on every HTTP 500 error when DEBUG=False.
161 # See http://docs.djangoproject.com/en/dev/topics/logging for
162 # more details on how to customize your logging configuration.
163 LOGGING = {
164     'version': 1,
165     'disable_existing_loggers': False,
166     'filters': {
167         'require_debug_false': {
168             '()': 'django.utils.log.RequireDebugFalse'
169         }
170     },
171     'handlers': {
172         'mail_admins': {
173             'level': 'ERROR',
174             'filters': ['require_debug_false'],
175             'class': 'django.utils.log.AdminEmailHandler',
176         }
177     },
178     'loggers': {
179         'django.request': {
180             'handlers': ['mail_admins'],
181             'level': 'ERROR',
182             'propagate': True,
183         },
184     }
185 }
186
187 AUTHENTICATION_BACKENDS = ( 'auth.backend.MyCustomBackend', 'auth.manifoldbackend.ManifoldBackend', )
188
189 ### the view to redirect malformed (i.e. with a wrong CSRF) incoming requests
190 # without this setting django will return a 403 forbidden error, which is fine
191 # if you need to see the error message then use this setting
192 CSRF_FAILURE_VIEW = 'engine.manifoldproxy.csrf_failure'
193
194 #################### for insert_above
195 #IA_JS_FORMAT = "<script type='text/javascript' src='{URL}' />"
196 # put stuff under static/
197 # IA_MEDIA_PREFIX = '/code/'
198