]> git.0d.be Git - panikweb.git/blob - panikweb/settings.py
use page pictures in topiks menu items
[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     'gadjo.finders.XStaticFinder',
92 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
93 )
94
95
96 # Make this unique, and don't share it with anybody.
97 SECRET_KEY = '3qm&amp;@6264-=st16)7_xa*ds+31e0mqqs@+*!ud7gzt$tq!b^qn'
98
99 MIDDLEWARE_CLASSES = (
100     'django.middleware.cache.UpdateCacheMiddleware',
101     #'django.middleware.gzip.GZipMiddleware',
102     'django.contrib.sessions.middleware.SessionMiddleware',
103     'django.middleware.locale.LocaleMiddleware',
104     'django.middleware.common.CommonMiddleware',
105     'django.middleware.csrf.CsrfViewMiddleware',
106     'django.contrib.auth.middleware.AuthenticationMiddleware',
107     'django.contrib.messages.middleware.MessageMiddleware',
108     #'request.middleware.RequestMiddleware',
109     'panikweb.middleware.StripPiwikCookieMiddleware',
110     'django.middleware.cache.FetchFromCacheMiddleware',
111 )
112
113 TEMPLATES = [
114     {
115         'BACKEND': 'django.template.backends.django.DjangoTemplates',
116         'DIRS': [
117             os.path.join(PROJECT_DIR, 'panikweb_templates'),
118         ],
119         'APP_DIRS': True,
120         'OPTIONS': {
121             'context_processors': [
122                 'django.contrib.auth.context_processors.auth',
123                 'django.template.context_processors.debug',
124                 'django.template.context_processors.i18n',
125                 'django.template.context_processors.media',
126                 'django.template.context_processors.request',
127                 'django.template.context_processors.static',
128                 'django.template.context_processors.tz',
129                 'panikweb.context_processors.panikweb',
130             ],
131             'builtins': [
132                 'combo.public.templatetags.combo',
133             ],
134         },
135     },
136 ]
137
138
139 ROOT_URLCONF = 'panikweb.urls'
140
141 TEMPLATE_DIRS = (
142     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
143     # Always use forward slashes, even on Windows.
144     # Don't forget to use absolute paths, not relative paths.
145 )
146
147 INSTALLED_APPS = (
148     'django.contrib.auth',
149     'django.contrib.contenttypes',
150     'django.contrib.sessions',
151     'django.contrib.sites',
152     'django.contrib.messages',
153     'django.contrib.staticfiles',
154     'django.contrib.admin',
155     'django.contrib.admindocs',
156     'haystack',
157     'taggit',
158     'gadjo',
159     'panikweb_templates',
160     'panikweb.paniktags',
161     'sorl.thumbnail',
162     'ckeditor',
163     'emissions',
164     'newsletter',
165     'nonstop',
166     'combo.data',
167     'combo.public',
168     'combo.profile',
169     'combo.apps.dashboard',
170     'combo.apps.search',
171     'panikombo',
172     'gallery',
173 )
174
175 CKEDITOR_UPLOAD_PATH = os.path.join(MEDIA_ROOT, 'uploads')
176 CKEDITOR_UPLOAD_PREFIX = '/media/uploads/'
177
178 HAYSTACK_CONNECTIONS = {
179     'default': {
180         'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
181         'URL': 'http://127.0.0.1:8985/solr/panik'
182     },
183 }
184
185 FIBER_TEMPLATE_CHOICES = (
186     ('tpl-default.html', 'Default template'),
187 )
188
189 ENABLE_PIWIK = False
190
191 CACHES = {
192     'default': {
193         'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
194     },
195 }
196
197 LOGGING = {
198     'version': 1,
199     'disable_existing_loggers': False,
200     'filters': {
201         'require_debug_false': {
202             '()': 'django.utils.log.RequireDebugFalse'
203         }
204     },
205     'handlers': {
206         'mail_admins': {
207             'level': 'ERROR',
208             'filters': ['require_debug_false'],
209             'class': 'django.utils.log.AdminEmailHandler'
210         }
211     },
212     'loggers': {
213         'django.request': {
214             'handlers': ['mail_admins'],
215             'level': 'ERROR',
216             'propagate': True,
217         },
218     }
219 }
220
221 STATSD_CLIENT = 'django_statsd.clients.null'
222
223 RAVEN_CONFIG = None
224
225 DEBUG_TOOLBAR_PANELS = (
226     'debug_toolbar.panels.version.VersionDebugPanel',
227     'debug_toolbar.panels.timer.TimerDebugPanel',
228     'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
229     'debug_toolbar.panels.headers.HeaderDebugPanel',
230     'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
231     'debug_toolbar.panels.sql.SQLDebugPanel',
232     'debug_toolbar.panels.template.TemplateDebugPanel',
233     'debug_toolbar.panels.signals.SignalDebugPanel',
234     'debug_toolbar.panels.logger.LoggingPanel',
235 )
236
237 from panikombo.misc import COMBO_PUBLIC_TEMPLATES
238
239 LANGUAGE_COOKIE_NAME = 'panikweb_language'
240
241 TEMPLATE_VARS = {}
242
243 COMBO_DASHBOARD_ENABLED = False
244 COMBO_MAP_TILE_URLTEMPLATE = ''
245 COMBO_MAP_ATTRIBUTION = ''
246 JSON_CELL_TYPES = {}
247
248 RADIO_NAME = 'Radio Panik'
249 RADIO_LONG_NAME = 'Radio Panik - 105.4 FM'
250 WEBSITE_BASE_URL = 'http://www.radiopanik.org/'
251
252 COMBO_INITIAL_LOGIN_PAGE_PATH = '/'
253 COMBO_WELCOME_PAGE_PATH = None
254
255 try:
256     from .local_settings import *
257 except ImportError as e:
258     pass
259
260 if DEBUG and DEBUG_TOOLBAR:
261     MIDDLEWARE_CLASSES += (
262         'debug_toolbar.middleware.DebugToolbarMiddleware',
263     )
264     INSTALLED_APPS += (
265         'debug_toolbar',
266     )
267
268     if 'template_timings_panel.panels.TemplateTimings.TemplateTimings' in DEBUG_TOOLBAR_PANELS:
269         INSTALLED_APPS += ('template_timings_panel',)
270
271 if ENABLE_PIWIK is False:
272     MIDDLEWARE_CLASSES = tuple([x for x in MIDDLEWARE_CLASSES \
273                                 if x != 'panikweb.middleware.StripPiwikCookieMiddleware'])
274
275 if STATSD_CLIENT != 'django_statsd.clients.null':
276     MIDDLEWARE_CLASSES = (
277             'django_statsd.middleware.GraphiteRequestTimingMiddleware',
278             'django_statsd.middleware.GraphiteMiddleware',
279     ) + MIDDLEWARE_CLASSES
280     INSTALLED_APPS += (
281         'django_statsd',
282     )
283
284 if RAVEN_CONFIG:
285     INSTALLED_APPS += (
286         'raven.contrib.django.raven_compat',
287     )