X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/640e6f5c1e85d05d728cd29a129df9ea8aa8f31f..cda147aa999b09a14dacb097d91638f6b9cca236:/wolnelektury/settings/__init__.py diff --git a/wolnelektury/settings/__init__.py b/wolnelektury/settings/__init__.py index 335b2b1aa..b3950fccb 100644 --- a/wolnelektury/settings/__init__.py +++ b/wolnelektury/settings/__init__.py @@ -20,12 +20,12 @@ TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.request', 'wolnelektury_core.context_processors.extra_settings', 'search.context_processors.search_form', - "allauth.context_processors.allauth", + "allauth.account.context_processors.account", + "allauth.socialaccount.context_processors.socialaccount", ) MIDDLEWARE_CLASSES = [ - 'django.middleware.cache.UpdateCacheMiddleware', 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', @@ -36,7 +36,6 @@ MIDDLEWARE_CLASSES = [ 'piwik.django.middleware.PiwikMiddleware', 'maintenancemode.middleware.MaintenanceModeMiddleware', 'django.middleware.common.CommonMiddleware', - 'django.middleware.cache.FetchFromCacheMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'fnpdjango.middleware.SetRemoteAddrFromXRealIP', ] @@ -66,8 +65,13 @@ INSTALLED_APPS_OUR = [ 'waiter', 'search', 'oai', + 'funding', ] +GETPAID_BACKENDS = ( + 'getpaid.backends.payu', +) + INSTALLED_APPS_CONTRIB = [ # external 'django.contrib.auth', @@ -88,16 +92,18 @@ INSTALLED_APPS_CONTRIB = [ 'djkombu', 'honeypot', #'django_nose', + 'fnpdjango', + 'getpaid', + 'getpaid.backends.payu', #allauth stuff - 'emailconfirmation', 'uni_form', 'allauth', 'allauth.account', 'allauth.socialaccount', - 'allauth.openid', - #'allauth.facebook', - #'allauth.twitter', + 'allauth.socialaccount.providers.openid', + 'allauth.socialaccount.providers.facebook', + #'allauth.socialaccount.providers.twitter', # included 'modeltranslation',