]> git.0d.be Git - panikdb.git/blob - panikdb/settings.py
86fd76cba03c4b5bef3978dd7c13c7b4c0d53392
[panikdb.git] / panikdb / settings.py
1 # Django settings for panikdb project.
2 # coding: utf-8
3
4 import copy
5 import os
6 from django.conf import global_settings
7
8 DEBUG = True
9 DEBUG_TOOLBAR = True
10
11 PROJECT_DIR = os.path.normpath(os.path.dirname(os.path.dirname(__file__)))
12 PROJECT_PATH = os.path.dirname(os.path.dirname(__file__))
13
14 ADMINS = (
15     ('Frederic Peters', 'fred@radiopanik.org'),
16 )
17
18 MANAGERS = ADMINS
19
20 DATABASES = {
21     'default': {
22         'ENGINE': 'django.db.backends.sqlite3',
23         'NAME': os.path.join(PROJECT_PATH, 'panikdb.sqlite3'),
24     }
25 }
26
27 # Hosts/domain names that are valid for this site; required if DEBUG is False
28 # See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
29 ALLOWED_HOSTS = []
30
31 # Local time zone for this installation. Choices can be found here:
32 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
33 # although not all choices may be available on all operating systems.
34 # In a Windows environment this must be set to your system time zone.
35 TIME_ZONE = 'Europe/Brussels'
36
37 # Language code for this installation. All choices can be found here:
38 # http://www.i18nguy.com/unicode/language-identifiers.html
39 LANGUAGE_CODE = 'fr-be'
40
41 SITE_ID = 1
42
43 # If you set this to False, Django will make some optimizations so as not
44 # to load the internationalization machinery.
45 USE_I18N = True
46
47 LOCALE_PATHS = (os.path.join(PROJECT_DIR, 'panikdb', 'locale'),)
48
49 # If you set this to False, Django will not format dates, numbers and
50 # calendars according to the current locale.
51 USE_L10N = True
52
53 # If you set this to False, Django will not use timezone-aware datetimes.
54 USE_TZ = False
55
56 # Absolute filesystem path to the directory that will hold user-uploaded files.
57 # Example: "/var/www/example.com/media/"
58 MEDIA_ROOT = os.path.join(PROJECT_PATH, 'media')
59
60 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
61 # trailing slash.
62 # Examples: "http://example.com/media/", "http://media.example.com/"
63 MEDIA_URL = '/media/'
64
65 # Absolute path to the directory static files should be collected to.
66 # Don't put anything in this directory yourself; store your static files
67 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
68 # Example: "/var/www/example.com/static/"
69 STATIC_ROOT = os.path.join(PROJECT_PATH, 'static')
70
71 # URL prefix for static files.
72 # Example: "http://example.com/static/", "http://static.example.com/"
73 STATIC_URL = '/static/'
74
75 CKEDITOR_UPLOAD_PATH = 'uploads/'
76 CKEDITOR_UPLOAD_PREFIX = '/media/uploads/'
77
78 # Additional locations of static files
79 STATICFILES_DIRS = (
80     # Put strings here, like "/home/html/static" or "C:/www/django/static".
81     # Always use forward slashes, even on Windows.
82     # Don't forget to use absolute paths, not relative paths.
83     os.path.join(PROJECT_PATH, 'panikdb', 'static'),
84 )
85
86 # List of finder classes that know how to find static files in
87 # various locations.
88 STATICFILES_FINDERS = list(global_settings.STATICFILES_FINDERS) + \
89             ['gadjo.finders.XStaticFinder']
90
91 # Make this unique, and don't share it with anybody.
92 SECRET_KEY = '(jwx-1y#d#vps93glikirr&tq_!^_4g+9-qj(jy#l=sllqw(^j'
93
94 TEMPLATES = [
95     {
96         'BACKEND': 'django.template.backends.django.DjangoTemplates',
97         'DIRS': [
98             os.path.join(PROJECT_PATH, 'panikdb', 'templates'),
99         ],
100         'APP_DIRS': True,
101         'OPTIONS': {
102             'context_processors': [
103                 'django.template.context_processors.request',
104                 'django.contrib.auth.context_processors.auth',
105                 'django.template.context_processors.debug',
106                 'django.template.context_processors.i18n',
107                 'django.template.context_processors.media',
108                 'django.template.context_processors.static',
109                 'django.template.context_processors.tz',
110                 'django.contrib.messages.context_processors.messages',
111                 'panikdb.context_processors.internal_ip',
112                 'panikdb.context_processors.site_settings',
113             ],
114         },
115     },
116 ]
117
118
119
120 MIDDLEWARE_CLASSES = (
121     'django.middleware.common.CommonMiddleware',
122     'django.contrib.sessions.middleware.SessionMiddleware',
123     'django.middleware.csrf.CsrfViewMiddleware',
124     'django.contrib.auth.middleware.AuthenticationMiddleware',
125     'django.contrib.messages.middleware.MessageMiddleware',
126     # Uncomment the next line for simple clickjacking protection:
127     # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
128 )
129
130 ROOT_URLCONF = 'panikdb.urls'
131
132 # Python dotted path to the WSGI application used by Django's runserver.
133 WSGI_APPLICATION = 'panikdb.wsgi.application'
134
135 INSTALLED_APPS = (
136     'django.contrib.auth',
137     'django.contrib.contenttypes',
138     'django.contrib.sessions',
139     'django.contrib.sites',
140     'django.contrib.messages',
141     'django.contrib.staticfiles',
142     'django.contrib.admin',
143     'registration',
144     'datetimewidget',
145     'ckeditor',
146     'haystack',
147     'taggit',
148     'emissions',
149     'newsletter',
150     'matos',
151     'nonstop',
152     'panikdb.aa',
153     'panikdb.customtags',
154     'panikdb.stats',
155     'panikdb.poll',
156     'gadjo',
157     'combo.data',
158     'combo.manager',
159     'combo.apps.assets',
160     'combo.apps.maps',
161     'combo.apps.notifications',
162     'combo.apps.pwa',
163     'sorl.thumbnail',
164     'gallery',
165     'panikombo',
166     'django_select2',
167     'xstatic.pkg.select2',
168 )
169
170 # A sample logging configuration. The only tangible logging
171 # performed by this configuration is to send an email to
172 # the site admins on every HTTP 500 error when DEBUG=False.
173 # See http://docs.djangoproject.com/en/dev/topics/logging for
174 # more details on how to customize your logging configuration.
175 LOGGING = {
176     'version': 1,
177     'disable_existing_loggers': False,
178     'filters': {
179         'require_debug_false': {
180             '()': 'django.utils.log.RequireDebugFalse'
181         }
182     },
183     'handlers': {
184         'mail_admins': {
185             'level': 'ERROR',
186             'filters': ['require_debug_false'],
187             'class': 'django.utils.log.AdminEmailHandler'
188         }
189     },
190     'loggers': {
191         'django.request': {
192             'handlers': ['mail_admins'],
193             'level': 'ERROR',
194             'propagate': True,
195         },
196     }
197 }
198
199 CKEDITOR_CONFIGS = {
200     'default': {
201         'allowedContent': True,
202         'filebrowserUploadUrl': '/ckeditor/upload/',
203         'filebrowserBrowseUrl': '/ckeditor/browse/',
204         'toolbar_Own': [['Source', 'Format', '-', 'Bold', 'Italic'],
205                         ['NumberedList','BulletedList'],
206                         ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
207                         ['Link', 'Unlink'],
208                         ['Image',],
209                         ['RemoveFormat',]],
210         'toolbar': 'Own',
211     },
212 }
213
214 CKEDITOR_CONFIGS['small'] = copy.copy(CKEDITOR_CONFIGS['default'])
215 CKEDITOR_CONFIGS['small']['height'] = 150
216
217 HAYSTACK_CONNECTIONS = {
218     'default': {
219         'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
220         'URL': 'http://127.0.0.1:8985/solr/panik'
221     },
222 }
223
224 CACHES = {
225     'default': {
226         'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
227     },
228 }
229
230 TEST_RUNNER = 'django.test.runner.DiscoverRunner'
231
232 AUTH_USER_MODEL = 'aa.User'
233 LOGIN_REDIRECT_URL = '/'
234 WEBSITE_BASE_URL = 'http://www.radiopanik.org/'
235
236 NEWSLETTER_SENDER = 'info@radiopanik.org'
237 NEWSLETTER_DOMAIN = 'radiopanik.org'
238 NEWSLETTER_STYLE = """
239 body { color: #222; text-align: justify; }
240 h2, h3 { font-family: "Reglo"; }
241 h3 { margin-bottom: 0; }
242 h3 + p { margin-top: 0; }
243 p strong { color: black; }
244 h3 strong { text-transform: uppercase; color: blue; }
245 p a { color: black; text-decoration: none; border-bottom: 1px dotted black; }
246 p a:hover { border-bottom: 1px solid black; }
247 """
248
249 RAVEN_CONFIG = None
250
251 from panikombo.misc import COMBO_PUBLIC_TEMPLATES
252 COMBO_DEFAULT_PUBLIC_TEMPLATE = 'standard'
253
254 AUTO_RENDER_SELECT2_STATICS = False
255
256 PIGE_DOWNLOAD_BASE_URL = 'http://pige.panik/extractor/download.cgi'
257
258 JSON_CELL_TYPES = {}
259 TEMPLATE_VARS = {}
260
261 FILE_UPLOAD_DIRECTORY_PERMISSIONS = 0o755
262 FILE_UPLOAD_PERMISSIONS = 0o644
263
264 ENABLE_TOPIKS = True
265 SITE_TITLE = 'PanikDB'
266
267 try:
268     from .local_settings import *
269 except ImportError:
270     pass
271
272 if DEBUG and DEBUG_TOOLBAR:
273     MIDDLEWARE_CLASSES += (
274         'debug_toolbar.middleware.DebugToolbarMiddleware',
275     )
276     INSTALLED_APPS += (
277         'debug_toolbar',
278     )
279
280 if RAVEN_CONFIG:
281     INSTALLED_APPS += (
282         'raven.contrib.django.raven_compat',
283     )