split engine/ into manifold/ (backend oriented) and unfold/ (the UI)
[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="/usr/share/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,'django-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,'all-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,"all-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     # handling the {% insert %} and {% container %} tags
146     # see details in devel/django-insert-above-1.0-4
147     'insert_above',
148     # our django project
149     'myslice',
150     # the core of the UI
151     'auth', 'manifold', 'unfold',
152     # plugins
153     'plugins',
154     # views - more or less stable 
155     'views',
156     'trash',
157     # Uncomment the next line to enable the admin:
158     # 'django.contrib.admin',
159     # Uncomment the next line to enable admin documentation:
160     # 'django.contrib.admindocs',
161 )
162
163 # A sample logging configuration. The only tangible logging
164 # performed by this configuration is to send an email to
165 # the site admins on every HTTP 500 error when DEBUG=False.
166 # See http://docs.djangoproject.com/en/dev/topics/logging for
167 # more details on how to customize your logging configuration.
168 LOGGING = {
169     'version': 1,
170     'disable_existing_loggers': False,
171     'filters': {
172         'require_debug_false': {
173             '()': 'django.utils.log.RequireDebugFalse'
174         }
175     },
176     'handlers': {
177         'mail_admins': {
178             'level': 'ERROR',
179             'filters': ['require_debug_false'],
180             'class': 'django.utils.log.AdminEmailHandler',
181         }
182     },
183     'loggers': {
184         'django.request': {
185             'handlers': ['mail_admins'],
186             'level': 'ERROR',
187             'propagate': True,
188         },
189     }
190 }
191
192 AUTHENTICATION_BACKENDS = ( 'auth.backend.MyCustomBackend', 'auth.manifoldbackend.ManifoldBackend', )
193
194 ### the view to redirect malformed (i.e. with a wrong CSRF) incoming requests
195 # without this setting django will return a 403 forbidden error, which is fine
196 # if you need to see the error message then use this setting
197 CSRF_FAILURE_VIEW = 'manifold.manifoldproxy.csrf_failure'
198
199 #################### for insert_above
200 #IA_JS_FORMAT = "<script type='text/javascript' src='{URL}' />"
201 # put stuff under static/
202 # IA_MEDIA_PREFIX = '/code/'
203