1 # Django settings for myslice project.
8 # change these if you use a different convention
10 DEVELOPER_ROOT=os.path.expanduser("~/git/myslice-django")
12 PRODUCTION_ROOT="/usr/share/myslice"
16 # ('Your Name', 'your_email@example.com'),
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
28 if os.path.exists(PRODUCTION_ROOT):
30 elif os.path.exists (DEVELOPER_ROOT):
33 raise Exception,"Cannot find ROOT for myslice (neither %s nor %s)"%(PRODUCTION_ROOT,DEVELOPER_ROOT)
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.
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'
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'
60 # If you set this to False, Django will make some optimizations so as not
61 # to load the internationalization machinery.
64 # If you set this to False, Django will not format dates, numbers and
65 # calendars according to the current locale.
68 # If you set this to False, Django will not use timezone-aware datetimes.
71 # Absolute filesystem path to the directory that will hold user-uploaded files.
72 # Example: "/home/media/media.lawrence.com/media/"
75 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
77 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
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')
86 # URL prefix for static files.
87 # Example: "http://media.lawrence.com/static/"
88 STATIC_URL = '/all-static/'
90 # Additional locations of static files
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'),
98 # List of finder classes that know how to find static files in
100 STATICFILES_FINDERS = (
101 'django.contrib.staticfiles.finders.FileSystemFinder',
102 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
103 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
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'
109 # List of callables that know how to import templates from various sources.
111 'django.template.loaders.filesystem.Loader',
112 'django.template.loaders.app_directories.Loader',
113 # 'django.template.loaders.eggs.Loader',
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',
126 ROOT_URLCONF = 'myslice.urls'
128 # Python dotted path to the WSGI application used by Django's runserver.
129 WSGI_APPLICATION = 'myslice.wsgi.application'
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"),
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
151 'auth', 'manifold', 'unfold',
154 # views - more or less stable
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',
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.
170 'disable_existing_loggers': False,
172 'require_debug_false': {
173 '()': 'django.utils.log.RequireDebugFalse'
179 'filters': ['require_debug_false'],
180 'class': 'django.utils.log.AdminEmailHandler',
185 'handlers': ['mail_admins'],
192 AUTHENTICATION_BACKENDS = ( 'auth.backend.MyCustomBackend', 'auth.manifoldbackend.ManifoldBackend', )
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'
199 #################### for insert_above
200 #IA_JS_FORMAT = "<script type='text/javascript' src='{URL}' />"
201 # put stuff under static/
202 # IA_MEDIA_PREFIX = '/code/'