]> git.0d.be Git - panikweb.git/blob - panikweb/settings.py
add itunes:explicit at the feed level
[panikweb.git] / panikweb / settings.py
1 #!/usr/bin/env python
2 # coding: utf-8
3
4 import os
5
6 import django.conf.global_settings as DEFAULT_SETTINGS
7
8 DEBUG = True  # Turn off for production
9 DEBUG_TOOLBAR = False
10
11 PROJECT_DIR = os.path.normpath(os.path.dirname(os.path.dirname(__file__)))
12 ADMINS = (
13     # ('Your Name', 'your_email@domain.com'),
14 )
15 MANAGERS = ADMINS
16 DEFAULT_FROM_EMAIL = 'info@radiopanik.org'
17
18 LOGIN_REDIRECT_URL = '/'
19
20 DATABASES = {
21     'default': {
22         'ENGINE': 'django.db.backends.sqlite3',
23         'NAME': os.path.join(PROJECT_DIR, 'panikweb.sqlite3'),
24         'USER': '',
25         'PASSWORD': '',
26         'HOST': '',
27         'PORT': '',
28     },
29 }
30
31 ACCOUNT_ACTIVATION_DAYS = 7  # Activation window
32
33 #if django.VERSION[:2] < (1, 6):
34 TEST_RUNNER = 'discover_runner.DiscoverRunner'
35
36 # Local time zone for this installation. Choices can be found here:
37 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
38 # although not all choices may be available on all operating systems.
39 # If running in a Windows environment this must be set to the same as your
40 # system time zone.
41 TIME_ZONE = 'Europe/Brussels'
42
43 # Language code for this installation. All choices can be found here:
44 # http://www.i18nguy.com/unicode/language-identifiers.html
45 LANGUAGE_CODE = 'fr-be'
46
47 LANGUAGES = (
48   ('fr', u'Français'),
49   ('en', u'English'),
50 )
51
52 SITE_ID = 1
53
54 # If you set this to False, Django will make some optimizations so as not
55 # to load the internationalization machinery.
56 USE_I18N = True
57
58 LOCALE_PATHS = (os.path.join(PROJECT_DIR, 'panikweb', 'locale'),)
59
60 # Absolute filesystem path to the directory that will hold user-uploaded files.
61 # Example: "/home/media/media.lawrence.com/media/"
62 MEDIA_ROOT = os.path.join(PROJECT_DIR, 'media')
63
64 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
65 # trailing slash.
66 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
67 MEDIA_URL = '/media/'
68
69 # Absolute path to the directory static files should be collected to.
70 # Don't put anything in this directory yourself; store your static files
71 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
72 # Example: "/home/media/media.lawrence.com/static/"
73 STATIC_ROOT = os.path.join(PROJECT_DIR, 'staticroot')
74
75 # URL prefix for static files.
76 # Example: "http://media.lawrence.com/static/"
77 STATIC_URL = '/static/'
78
79 # Additional locations of static files
80 STATICFILES_DIRS = (
81     # Put strings here, like "/home/html/static" or "C:/www/django/static".
82     # Always use forward slashes, even on Windows.
83     # Don't forget to use absolute paths, not relative paths.
84 )
85
86 # List of finder classes that know how to find static files in
87 # various locations.
88 STATICFILES_FINDERS = (
89     'django.contrib.staticfiles.finders.FileSystemFinder',
90     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
91 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
92 )
93
94 # Make this unique, and don't share it with anybody.
95 SECRET_KEY = '3qm&amp;@6264-=st16)7_xa*ds+31e0mqqs@+*!ud7gzt$tq!b^qn'
96
97 MIDDLEWARE_CLASSES = (
98     'django.middleware.cache.UpdateCacheMiddleware',
99     #'django.middleware.gzip.GZipMiddleware',
100     'django.contrib.sessions.middleware.SessionMiddleware',
101     'django.middleware.locale.LocaleMiddleware',
102     'django.middleware.common.CommonMiddleware',
103     'django.middleware.csrf.CsrfViewMiddleware',
104     'django.contrib.auth.middleware.AuthenticationMiddleware',
105     'django.contrib.messages.middleware.MessageMiddleware',
106     #'request.middleware.RequestMiddleware',
107     'panikweb.middleware.StripPiwikCookieMiddleware',
108     'django.middleware.cache.FetchFromCacheMiddleware',
109 )
110
111 TEMPLATES = [
112     {
113         'BACKEND': 'django.template.backends.django.DjangoTemplates',
114         'DIRS': [
115             os.path.join(PROJECT_DIR, 'panikweb_templates'),
116         ],
117         'APP_DIRS': True,
118         'OPTIONS': {
119             'context_processors': [
120                 'django.contrib.auth.context_processors.auth',
121                 'django.template.context_processors.debug',
122                 'django.template.context_processors.i18n',
123                 'django.template.context_processors.media',
124                 'django.template.context_processors.request',
125                 'django.template.context_processors.static',
126                 'django.template.context_processors.tz',
127                 'panikweb.context_processors.site_url',
128             ],
129         },
130     },
131 ]
132
133
134 ROOT_URLCONF = 'panikweb.urls'
135
136 TEMPLATE_DIRS = (
137     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
138     # Always use forward slashes, even on Windows.
139     # Don't forget to use absolute paths, not relative paths.
140 )
141
142 INSTALLED_APPS = (
143     'django.contrib.auth',
144     'django.contrib.contenttypes',
145     'django.contrib.sessions',
146     'django.contrib.sites',
147     'django.contrib.messages',
148     'django.contrib.staticfiles',
149     'django.contrib.admin',
150     'django.contrib.admindocs',
151     'haystack',
152     'taggit',
153     'panikweb_templates',
154     'panikweb.paniktags',
155     'sorl.thumbnail',
156     'ckeditor',
157     'emissions',
158     'newsletter',
159     'nonstop',
160     'combo.data',
161     'combo.public',
162     'combo.profile',
163     'combo.apps.dashboard',
164     'combo.apps.search',
165     'panikombo',
166     'gallery',
167 )
168
169 CKEDITOR_UPLOAD_PATH = os.path.join(MEDIA_ROOT, 'uploads')
170 CKEDITOR_UPLOAD_PREFIX = '/media/uploads/'
171
172 HAYSTACK_CONNECTIONS = {
173     'default': {
174         'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
175         'URL': 'http://127.0.0.1:8985/solr/panik'
176     },
177 }
178
179 FIBER_TEMPLATE_CHOICES = (
180     ('tpl-default.html', 'Default template'),
181 )
182
183 ENABLE_PIWIK = False
184
185 CACHES = {
186     'default': {
187         'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
188     },
189 }
190
191 LOGGING = {
192     'version': 1,
193     'disable_existing_loggers': False,
194     'filters': {
195         'require_debug_false': {
196             '()': 'django.utils.log.RequireDebugFalse'
197         }
198     },
199     'handlers': {
200         'mail_admins': {
201             'level': 'ERROR',
202             'filters': ['require_debug_false'],
203             'class': 'django.utils.log.AdminEmailHandler'
204         }
205     },
206     'loggers': {
207         'django.request': {
208             'handlers': ['mail_admins'],
209             'level': 'ERROR',
210             'propagate': True,
211         },
212     }
213 }
214
215 STATSD_CLIENT = 'django_statsd.clients.null'
216
217 RAVEN_CONFIG = None
218
219 DEBUG_TOOLBAR_PANELS = (
220     'debug_toolbar.panels.version.VersionDebugPanel',
221     'debug_toolbar.panels.timer.TimerDebugPanel',
222     'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
223     'debug_toolbar.panels.headers.HeaderDebugPanel',
224     'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
225     'debug_toolbar.panels.sql.SQLDebugPanel',
226     'debug_toolbar.panels.template.TemplateDebugPanel',
227     'debug_toolbar.panels.signals.SignalDebugPanel',
228     'debug_toolbar.panels.logger.LoggingPanel',
229 )
230
231 from panikombo.misc import COMBO_PUBLIC_TEMPLATES
232
233 LANGUAGE_COOKIE_NAME = 'panikweb_language'
234
235 TEMPLATE_VARS = {}
236
237 COMBO_DASHBOARD_ENABLED = False
238 JSON_CELL_TYPES = {}
239
240 WEBSITE_BASE_URL = 'http://www.radiopanik.org/'
241
242 COMBO_INITIAL_LOGIN_PAGE_PATH = '/'
243 COMBO_WELCOME_PAGE_PATH = None
244
245 try:
246     from local_settings import *
247 except ImportError, e:
248     pass
249
250 if DEBUG and DEBUG_TOOLBAR:
251     MIDDLEWARE_CLASSES += (
252         'debug_toolbar.middleware.DebugToolbarMiddleware',
253     )
254     INSTALLED_APPS += (
255         'debug_toolbar',
256     )
257
258     if 'template_timings_panel.panels.TemplateTimings.TemplateTimings' in DEBUG_TOOLBAR_PANELS:
259         INSTALLED_APPS += ('template_timings_panel',)
260
261 if ENABLE_PIWIK is False:
262     MIDDLEWARE_CLASSES = tuple([x for x in MIDDLEWARE_CLASSES \
263                                 if x != 'panikweb.middleware.StripPiwikCookieMiddleware'])
264
265 if STATSD_CLIENT != 'django_statsd.clients.null':
266     MIDDLEWARE_CLASSES = (
267             'django_statsd.middleware.GraphiteRequestTimingMiddleware',
268             'django_statsd.middleware.GraphiteMiddleware',
269     ) + MIDDLEWARE_CLASSES
270     INSTALLED_APPS += (
271         'django_statsd',
272     )
273
274 if RAVEN_CONFIG:
275     INSTALLED_APPS += (
276         'raven.contrib.django.raven_compat',
277     )