1 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 from sentry_sdk.integrations.django import DjangoIntegration
7 from .defaults import *
8 from ..localsettings import *
10 DATA_UPLOAD_MAX_MEMORY_SIZE = 20000000
12 PROJECT_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
15 PROJECT_ROOT + '/static/'
20 'BACKEND': 'django.template.backends.django.DjangoTemplates',
23 PROJECT_ROOT + '/templates',
26 'context_processors': [
27 "django.contrib.auth.context_processors.auth",
28 "django.template.context_processors.debug",
29 "django.template.context_processors.i18n",
30 "redakcja.context_processors.settings", # this is instead of media
31 'django.template.context_processors.csrf',
32 "django.template.context_processors.request",
33 "django.contrib.messages.context_processors.messages",
40 'django.middleware.common.CommonMiddleware',
41 'django.middleware.csrf.CsrfViewMiddleware',
42 'django.contrib.sessions.middleware.SessionMiddleware',
43 'django.contrib.messages.middleware.MessageMiddleware',
45 'django.contrib.auth.middleware.AuthenticationMiddleware',
50 'django_cas_ng.middleware.CASMiddleware',
54 'django.contrib.admindocs.middleware.XViewMiddleware',
55 'fnp_django_pagination.middleware.PaginationMiddleware',
56 'maintenancemode.middleware.MaintenanceModeMiddleware',
61 'debug_toolbar.middleware.DebugToolbarMiddleware',
65 AUTHENTICATION_BACKENDS = (
66 'django.contrib.auth.backends.ModelBackend',
67 'django_cas_ng.backends.CASBackend',
70 ROOT_URLCONF = 'redakcja.urls'
73 'django.contrib.auth',
74 'django.contrib.contenttypes',
75 'django.contrib.sessions',
76 'django.contrib.messages',
77 'django.contrib.staticfiles',
78 'django.contrib.sites',
79 'admin_numeric_filter',
80 'django.contrib.admin',
81 'django.contrib.admindocs',
84 'fnp_django_pagination',
105 'wlxml.apps.WlxmlConfig',
109 INSTALLED_APPS += ('debug_toolbar',)
112 PROJECT_ROOT + "/locale-contrib",
115 LOGIN_REDIRECT_URL = '/documents/user'
117 MIN_COVER_SIZE = (915, 1270)
119 STATICFILES_FINDERS = (
120 'django.contrib.staticfiles.finders.FileSystemFinder',
121 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
122 'pipeline.finders.PipelineFinder',
125 STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage'
128 'CSS_COMPRESSOR': None,
129 'JS_COMPRESSOR': None,
131 'pipeline.compilers.sass.SASSCompiler',
134 # CSS and JS files to compress
137 'source_filenames': (
144 'css/imgareaselect-default.css',
147 'wiki/scss/splitter.scss',
148 'wiki/scss/visual.scss'
150 'output_filename': 'compressed/detail_styles.css',
153 'source_filenames': (
156 'output_filename': 'compressed/documents_styles.css',
159 'source_filenames': (
162 'output_filename': 'compressed/book.css',
165 'source_filenames': (
168 'output_filename': 'compressed/book_list.css',
172 # everything except codemirror
174 'source_filenames': (
176 'js/lib/jquery/jquery.blockui.js',
177 'js/lib/jquery/jquery.elastic.js',
178 'js/lib/jquery/jquery.xmlns.js',
179 'js/button_scripts.js',
184 'js/wiki/wikiapi.js',
190 'wiki/js/sidebar-perspective.js',
191 'js/wiki/toolbar.js',
194 'js/wiki/dialog_save.js',
195 'js/wiki/dialog_revert.js',
196 'js/wiki/dialog_pubmark.js',
199 'js/wiki/view_history.js',
200 'js/wiki/view_summary.js',
201 'js/wiki/view_editor_source.js',
202 'js/wiki/view_editor_wysiwyg.js',
203 'js/wiki/view_gallery.js',
204 'js/wiki/view_annotations.js',
205 'js/wiki/view_properties.js',
206 'js/wiki/view_search.js',
207 'js/wiki/view_column_diff.js',
209 'output_filename': 'compressed/detail_scripts.js',
212 'source_filenames': (
214 'js/lib/jquery/jquery.blockui.js',
215 'js/lib/jquery/jquery.elastic.js',
216 'js/lib/jquery/jquery.imgareaselect.js',
217 'js/button_scripts.js',
221 'js/wiki_img/wikiapi.js',
225 'js/wiki_img/base.js',
226 'js/wiki/toolbar.js',
229 'js/wiki/dialog_save.js',
230 'js/wiki/dialog_revert.js',
231 'js/wiki/dialog_pubmark.js',
234 'js/wiki_img/view_editor_objects.js',
235 'js/wiki_img/view_editor_motifs.js',
236 'js/wiki/view_editor_source.js',
237 'js/wiki/view_history.js',
238 'js/wiki/view_column_diff.js',
240 'output_filename': 'compressed/detail_img_scripts.js',
243 'source_filenames': (
244 'js/documents/documents.js',
246 'email_mangler/email_mangler.js',
248 'output_filename': 'compressed/documents_scripts.js',
251 'source_filenames': (
252 'js/lib/jquery/jquery.cycle2.min.js',
253 'js/book_text/jquery.eventdelegation.js',
254 'js/book_text/jquery.scrollto.js',
255 'js/book_text/jquery.highlightfade.js',
256 'js/book_text/book.js',
258 'output_filename': 'compressed/book.js',
261 'source_filenames': (
262 'js/documents/book_list.js',
264 'output_filename': 'compressed/book_list.js',
270 SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
274 'DEFAULT_AUTHENTICATION_CLASSES': [
275 'rest_framework.authentication.SessionAuthentication',
276 'redakcja.api.auth.TokenAuthentication',
278 'DEFAULT_FILTER_BACKENDS': [
279 'django_filters.rest_framework.DjangoFilterBackend',
280 'rest_framework.filters.SearchFilter',
292 integrations=[DjangoIntegration()]