X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/875efc3090b43807d41438a98f3e84ceafecab51..16358b72e70a109652609551c0ad89aec28fc58b:/src/wolnelektury/settings/contrib.py diff --git a/src/wolnelektury/settings/contrib.py b/src/wolnelektury/settings/contrib.py index de64990bc..5e89a6f90 100644 --- a/src/wolnelektury/settings/contrib.py +++ b/src/wolnelektury/settings/contrib.py @@ -2,8 +2,6 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # -from fnpdjango.utils.text.textilepl import textile_pl -from migdal import EntryType from django.utils.translation import ugettext_lazy as _ HONEYPOT_FIELD_NAME = 'miut' @@ -15,7 +13,6 @@ MODELTRANSLATION_PREPOPULATE_LANGUAGE = 'pl' MIGRATION_MODULES = { 'getpaid': 'wolnelektury.migrations.getpaid', - 'piston': 'wolnelektury.migrations.piston', } GETPAID_ORDER_DESCRIPTION = "{% load funding_tags %}{{ order|sanitize_payment_title }}" @@ -34,13 +31,25 @@ PAYPAL_CONFIG = { 'client_secret': '', } -MARKUP_FIELD_TYPES = ( - ('textile_pl', textile_pl), -) +REST_FRAMEWORK = { + "DEFAULT_RENDERER_CLASSES": ( + 'rest_framework.renderers.JSONRenderer', + 'rest_framework.renderers.BrowsableAPIRenderer', + 'api.renderers.LegacyXMLRenderer', + ), + 'DEFAULT_AUTHENTICATION_CLASSES': ( + 'api.drf_auth.PistonOAuthAuthentication', + ) +} -MIGDAL_TYPES = ( - EntryType('news', _('news'), commentable=False, on_main=True, promotable=True), - EntryType('publications', _('publications'), commentable=False), - EntryType('info', _('info'), commentable=False), - EntryType('event', _('events'), commentable=False), -) + +DEBUG_TOOLBAR_CONFIG = { + 'RESULTS_CACHE_SIZE': 100, +} + + +HAYSTACK_CONNECTIONS = { + 'default': { + 'ENGINE': 'haystack.backends.simple_backend.SimpleEngine', + }, +}