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'
72 'django.contrib.auth',
73 'django.contrib.contenttypes',
74 'django.contrib.sessions',
75 'django.contrib.messages',
76 'django.contrib.staticfiles',
77 'django.contrib.sites',
78 'admin_numeric_filter',
79 'django.contrib.admin',
80 'django.contrib.admindocs',
83 'fnp_django_pagination',
104 '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 LEGIMI_SMALL_WORDS = 2000
120 LEGIMI_BIG_WORDS = 10000
121 LEGIMI_SMALL_PRICE = 7
122 LEGIMI_BIG_PRICE = 20
124 STATICFILES_FINDERS = (
125 'django.contrib.staticfiles.finders.FileSystemFinder',
126 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
127 'pipeline.finders.PipelineFinder',
130 STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage'
133 'CSS_COMPRESSOR': None,
134 'JS_COMPRESSOR': None,
136 'pipeline.compilers.sass.SASSCompiler',
139 # CSS and JS files to compress
142 'source_filenames': (
149 'css/imgareaselect-default.css',
152 'wiki/scss/splitter.scss',
153 'wiki/scss/visual.scss'
155 'output_filename': 'compressed/detail_styles.css',
158 'source_filenames': (
161 'output_filename': 'compressed/documents_styles.css',
164 'source_filenames': (
167 'output_filename': 'compressed/book.css',
170 'source_filenames': (
173 'output_filename': 'compressed/book_list.css',
177 # everything except codemirror
179 'source_filenames': (
181 'js/lib/jquery/jquery.blockui.js',
182 'js/lib/jquery/jquery.elastic.js',
183 'js/lib/jquery/jquery.xmlns.js',
184 'js/button_scripts.js',
189 'js/wiki/wikiapi.js',
195 'wiki/js/sidebar-perspective.js',
196 'js/wiki/toolbar.js',
199 'js/wiki/dialog_save.js',
200 'js/wiki/dialog_revert.js',
201 'js/wiki/dialog_pubmark.js',
204 'js/wiki/view_history.js',
205 'js/wiki/view_summary.js',
206 'js/wiki/view_editor_source.js',
207 'js/wiki/view_editor_wysiwyg.js',
208 'js/wiki/view_gallery.js',
209 'js/wiki/view_annotations.js',
210 'js/wiki/view_properties.js',
211 'js/wiki/view_search.js',
212 'js/wiki/view_column_diff.js',
214 'output_filename': 'compressed/detail_scripts.js',
217 'source_filenames': (
219 'js/lib/jquery/jquery.blockui.js',
220 'js/lib/jquery/jquery.elastic.js',
221 'js/lib/jquery/jquery.imgareaselect.js',
222 'js/button_scripts.js',
226 'js/wiki_img/wikiapi.js',
230 'js/wiki_img/base.js',
231 'js/wiki/toolbar.js',
234 'js/wiki/dialog_save.js',
235 'js/wiki/dialog_revert.js',
236 'js/wiki/dialog_pubmark.js',
239 'js/wiki_img/view_editor_objects.js',
240 'js/wiki_img/view_editor_motifs.js',
241 'js/wiki/view_editor_source.js',
242 'js/wiki/view_history.js',
243 'js/wiki/view_column_diff.js',
245 'output_filename': 'compressed/detail_img_scripts.js',
248 'source_filenames': (
249 'js/documents/documents.js',
251 'email_mangler/email_mangler.js',
253 'output_filename': 'compressed/documents_scripts.js',
256 'source_filenames': (
257 'js/lib/jquery/jquery.cycle2.min.js',
258 'js/book_text/jquery.eventdelegation.js',
259 'js/book_text/jquery.scrollto.js',
260 'js/book_text/jquery.highlightfade.js',
261 'js/book_text/book.js',
263 'output_filename': 'compressed/book.js',
266 'source_filenames': (
267 'js/documents/book_list.js',
269 'output_filename': 'compressed/book_list.js',
275 DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
278 SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
282 'DEFAULT_AUTHENTICATION_CLASSES': [
283 'rest_framework.authentication.SessionAuthentication',
284 'redakcja.api.auth.TokenAuthentication',
286 'DEFAULT_FILTER_BACKENDS': [
287 'django_filters.rest_framework.DjangoFilterBackend',
288 'rest_framework.filters.SearchFilter',
300 integrations=[DjangoIntegration()]