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',
60 'debug_toolbar.middleware.DebugToolbarMiddleware',
64 AUTHENTICATION_BACKENDS = (
65 'django.contrib.auth.backends.ModelBackend',
66 'django_cas_ng.backends.CASBackend',
69 ROOT_URLCONF = 'redakcja.urls'
75 'django.contrib.auth',
76 'django.contrib.contenttypes',
77 'django.contrib.sessions',
78 'django.contrib.messages',
79 'django.contrib.staticfiles',
80 'django.contrib.sites',
81 'admin_numeric_filter',
82 'django.contrib.admin',
83 'django.contrib.admindocs',
86 'fnp_django_pagination',
108 'wlxml.apps.WlxmlConfig',
116 INSTALLED_APPS += ('debug_toolbar',)
119 PROJECT_ROOT + "/locale-contrib",
122 LOGIN_REDIRECT_URL = '/documents/user'
124 MIN_COVER_SIZE = (915, 1270)
126 LEGIMI_SMALL_WORDS = 2000
127 LEGIMI_BIG_WORDS = 10000
128 LEGIMI_SMALL_PRICE = 7
129 LEGIMI_BIG_PRICE = 20
131 THUMBNAIL_PRESERVE_FORMAT = True
133 STATICFILES_FINDERS = (
134 'django.contrib.staticfiles.finders.FileSystemFinder',
135 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
136 'pipeline.finders.PipelineFinder',
139 STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage'
142 'CSS_COMPRESSOR': None,
143 'JS_COMPRESSOR': None,
145 'libsasscompiler.LibSassCompiler',
148 # CSS and JS files to compress
151 'source_filenames': (
158 'css/imgareaselect-default.css',
161 'wiki/scss/splitter.scss',
162 'wiki/scss/visual.scss'
164 'output_filename': 'compressed/detail_styles.css',
167 'source_filenames': (
170 'output_filename': 'compressed/documents_styles.css',
173 'source_filenames': (
176 'output_filename': 'compressed/book.css',
179 'source_filenames': (
182 'output_filename': 'compressed/book_list.css',
186 # everything except codemirror
188 'source_filenames': (
190 'js/lib/jquery/jquery.blockui.js',
191 'js/lib/jquery/jquery.elastic.js',
192 'js/lib/jquery/jquery.xmlns.js',
193 'js/button_scripts.js',
198 'js/wiki/wikiapi.js',
204 'js/wiki/toolbar.js',
209 'js/wiki/dialog_save.js',
210 'js/wiki/dialog_revert.js',
211 'js/wiki/dialog_pubmark.js',
214 'js/wiki/view_sidebar.js',
215 'js/wiki/view_history.js',
216 'js/wiki/view_summary.js',
217 'js/wiki/view_editor_source.js',
218 'js/wiki/view_editor_wysiwyg.js',
219 'js/wiki/view_gallery.js',
220 'js/wiki/view_annotations.js',
221 'js/wiki/view_properties.js',
222 'js/wiki/view_search.js',
223 'js/wiki/view_column_diff.js',
225 'output_filename': 'compressed/detail_scripts.js',
228 'source_filenames': (
230 'js/lib/jquery/jquery.blockui.js',
231 'js/lib/jquery/jquery.elastic.js',
232 'js/lib/jquery/jquery.imgareaselect.js',
233 'js/button_scripts.js',
237 'js/wiki_img/wikiapi.js',
241 'js/wiki_img/base.js',
242 'js/wiki/toolbar.js',
245 'js/wiki/dialog_save.js',
246 'js/wiki/dialog_revert.js',
247 'js/wiki/dialog_pubmark.js',
250 'js/wiki_img/view_editor_objects.js',
251 'js/wiki_img/view_editor_motifs.js',
252 'js/wiki/view_editor_source.js',
253 'js/wiki/view_history.js',
254 'js/wiki/view_column_diff.js',
256 'output_filename': 'compressed/detail_img_scripts.js',
259 'source_filenames': (
260 'js/documents/documents.js',
262 'email_mangler/email_mangler.js',
264 'output_filename': 'compressed/documents_scripts.js',
267 'source_filenames': (
268 'js/lib/jquery/jquery.cycle2.min.js',
269 'js/book_text/jquery.eventdelegation.js',
270 'js/book_text/jquery.scrollto.js',
271 'js/book_text/jquery.highlightfade.js',
272 'js/book_text/book.js',
274 'output_filename': 'compressed/book.js',
277 'source_filenames': (
278 'js/documents/book_list.js',
280 'output_filename': 'compressed/book_list.js',
286 DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
289 SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
293 'DEFAULT_AUTHENTICATION_CLASSES': [
294 'rest_framework.authentication.SessionAuthentication',
295 'redakcja.api.auth.TokenAuthentication',
297 'DEFAULT_FILTER_BACKENDS': [
298 'django_filters.rest_framework.DjangoFilterBackend',
299 'rest_framework.filters.SearchFilter',
311 TEST_INTEGRATION = False
321 integrations=[DjangoIntegration()]