You will find only what you bring in.
[redakcja.git] / src / redakcja / settings / __init__.py
index 571a9ed..db606b8 100644 (file)
@@ -1,9 +1,13 @@
-# -*- coding: utf-8 -*-
-from __future__ import absolute_import
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
 import os.path
+import sentry_sdk
+from sentry_sdk.integrations.django import DjangoIntegration
 from .defaults import *
 from ..localsettings import *
-import os
+
+DATA_UPLOAD_MAX_MEMORY_SIZE = 20000000
 
 PROJECT_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
 
@@ -26,6 +30,7 @@ TEMPLATES = [
                 "redakcja.context_processors.settings", # this is instead of media
                 'django.template.context_processors.csrf',
                 "django.template.context_processors.request",
+                "django.contrib.messages.context_processors.messages",
             ],
         },
     },
@@ -66,7 +71,6 @@ INSTALLED_APPS = (
     'django.contrib.sites',
     'django.contrib.admin',
     'django.contrib.admindocs',
-    'raven.contrib.django.raven_compat',
 
     'sorl.thumbnail',
     'fnp_django_pagination',
@@ -75,6 +79,7 @@ INSTALLED_APPS = (
     'pipeline',
     'fnpdjango',
     'django_cas_ng',
+    'bootstrap4',
 
     'catalogue',
     'cover',
@@ -104,6 +109,9 @@ STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
 PIPELINE = {
     'CSS_COMPRESSOR': None,
     'JS_COMPRESSOR': None,
+    'COMPILERS': (
+        'libsasscompiler.LibSassCompiler',
+    ),
 
     # CSS and JS files to compress
     'STYLESHEETS': {
@@ -115,9 +123,11 @@ PIPELINE = {
                 'css/history.css',
                 'css/summary.css',
                 'css/html.css',
-                'css/jquery.autocomplete.css',
                 'css/imgareaselect-default.css',
                 'css/dialogs.css',
+
+                'wiki/scss/splitter.scss',
+                'wiki/scss/visual.scss'
             ),
             'output_filename': 'compressed/detail_styles.css',
         },
@@ -126,8 +136,8 @@ PIPELINE = {
                 'css/filelist.css',
             ),
             'output_filename': 'compressed/catalogue_styles.css',
-         },
-         'book': {
+        },
+        'book': {
             'source_filenames': (
                 'css/book.css',
             ),
@@ -135,7 +145,6 @@ PIPELINE = {
         },
         'book_list': {
             'source_filenames': (
-                'contextmenu/jquery.contextMenu.css',
                 'css/book_list.css',
             ),
             'output_filename': 'compressed/book_list.css',
@@ -146,7 +155,6 @@ PIPELINE = {
         'detail': {
             'source_filenames': (
                 # libraries
-                'js/lib/jquery/jquery.autocomplete.js',
                 'js/lib/jquery/jquery.blockui.js',
                 'js/lib/jquery/jquery.elastic.js',
                 'js/lib/jquery/jquery.xmlns.js',
@@ -155,10 +163,12 @@ PIPELINE = {
 
                 # wiki scripts
                 'js/wiki/wikiapi.js',
+                'wiki/js/themes.js',
                 'js/wiki/xslt.js',
 
                 # base UI
                 'js/wiki/base.js',
+                'wiki/js/sidebar-perspective.js',
                 'js/wiki/toolbar.js',
 
                 # dialogs
@@ -177,12 +187,10 @@ PIPELINE = {
                 'js/wiki/view_column_diff.js',
             ),
             'output_filename': 'compressed/detail_scripts.js',
-         },
+        },
         'wiki_img': {
             'source_filenames': (
                 # libraries
-                'js/lib/jquery-1.4.2.min.js',
-                'js/lib/jquery/jquery.autocomplete.js',
                 'js/lib/jquery/jquery.blockui.js',
                 'js/lib/jquery/jquery.elastic.js',
                 'js/lib/jquery/jquery.imgareaselect.js',
@@ -191,6 +199,7 @@ PIPELINE = {
 
                 # wiki scripts
                 'js/wiki_img/wikiapi.js',
+                'wiki/js/themes.js',
 
                 # base UI
                 'js/wiki_img/base.js',
@@ -209,7 +218,7 @@ PIPELINE = {
                 'js/wiki/view_column_diff.js',
             ),
             'output_filename': 'compressed/detail_img_scripts.js',
-         },
+        },
         'catalogue': {
             'source_filenames': (
                 'js/catalogue/catalogue.js',
@@ -217,8 +226,8 @@ PIPELINE = {
                 'email_mangler/email_mangler.js',
             ),
             'output_filename': 'compressed/catalogue_scripts.js',
-         },
-         'book': {
+        },
+        'book': {
             'source_filenames': (
                 'js/book_text/jquery.eventdelegation.js',
                 'js/book_text/jquery.scrollto.js',
@@ -229,11 +238,23 @@ PIPELINE = {
         },
         'book_list': {
             'source_filenames': (
-                'contextmenu/jquery.ui.position.js',
-                'contextmenu/jquery.contextMenu.js',
                 'js/catalogue/book_list.js',
             ),
             'output_filename': 'compressed/book_list.js',
         }
     }
 }
+
+
+SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
+
+
+try:
+    SENTRY_DSN
+except NameError:
+    pass
+else:
+    sentry_sdk.init(
+        dsn=SENTRY_DSN,
+        integrations=[DjangoIntegration()]
+    )