X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/05a64b9314fac5f613133332d7d0b5b568ab8afc..94da7eb2739d91e80607681bc61672ef769ca90c:/src/redakcja/settings/__init__.py diff --git a/src/redakcja/settings/__init__.py b/src/redakcja/settings/__init__.py index c7cf3244..ecebe40e 100644 --- a/src/redakcja/settings/__init__.py +++ b/src/redakcja/settings/__init__.py @@ -53,7 +53,6 @@ if CAS_SERVER_URL: MIDDLEWARE += [ 'django.contrib.admindocs.middleware.XViewMiddleware', 'fnp_django_pagination.middleware.PaginationMiddleware', - 'maintenancemode.middleware.MaintenanceModeMiddleware', ] if DEBUG: @@ -70,6 +69,8 @@ if CAS_SERVER_URL: ROOT_URLCONF = 'redakcja.urls' INSTALLED_APPS = ( + 'modeltranslation', + 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', @@ -88,8 +89,13 @@ INSTALLED_APPS = ( 'fnpdjango', 'django_cas_ng', 'bootstrap4', + 'rest_framework', + 'django_filters', + 'admin_ordering', + 'redakcja.api', 'catalogue', + 'depot', 'documents', 'cover', 'dvcs', @@ -98,6 +104,8 @@ INSTALLED_APPS = ( 'toolbar', 'apiclient', 'email_mangler', + 'wlxml.apps.WlxmlConfig', + 'alerts', ) if DEBUG: @@ -111,19 +119,24 @@ LOGIN_REDIRECT_URL = '/documents/user' MIN_COVER_SIZE = (915, 1270) +LEGIMI_SMALL_WORDS = 2000 +LEGIMI_BIG_WORDS = 10000 +LEGIMI_SMALL_PRICE = 7 +LEGIMI_BIG_PRICE = 20 + STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', 'pipeline.finders.PipelineFinder', ) -STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' +STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage' PIPELINE = { 'CSS_COMPRESSOR': None, 'JS_COMPRESSOR': None, 'COMPILERS': ( - 'libsasscompiler.LibSassCompiler', + 'pipeline.compilers.sass.SASSCompiler', ), # CSS and JS files to compress @@ -135,7 +148,7 @@ PIPELINE = { 'css/gallery.css', 'css/history.css', 'css/summary.css', - 'css/html.css', + 'css/html.scss', 'css/imgareaselect-default.css', 'css/dialogs.css', @@ -175,6 +188,7 @@ PIPELINE = { 'js/slugify.js', # wiki scripts + 'js/wiki/caret.js', 'js/wiki/wikiapi.js', 'wiki/js/themes.js', 'js/wiki/xslt.js', @@ -261,9 +275,34 @@ PIPELINE = { } +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' + + SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer' +REST_FRAMEWORK = { + 'DEFAULT_AUTHENTICATION_CLASSES': [ + 'rest_framework.authentication.SessionAuthentication', + 'redakcja.api.auth.TokenAuthentication', + ], + 'DEFAULT_FILTER_BACKENDS': [ + 'django_filters.rest_framework.DjangoFilterBackend', + 'rest_framework.filters.SearchFilter', + ] +} + + +LANGUAGES = [ + ('pl', 'polski'), + ('de', 'Deutsch'), + ('lt', 'lietuvių'), +] + + +TEST_INTEGRATION = False + + try: SENTRY_DSN except NameError: