X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3517c7fa3ec165a2650799a8d821d21116789c3b..3d3c2fae86149ea2e5c7d7e4fb971fc84ce2c52a:/project/settings.py diff --git a/project/settings.py b/project/settings.py index a4187068..05518193 100644 --- a/project/settings.py +++ b/project/settings.py @@ -66,7 +66,7 @@ TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.auth", "django.core.context_processors.debug", "django.core.context_processors.i18n", - "django.core.context_processors.media", + "explorer.context_processors.settings", "django.core.context_processors.request", ) @@ -75,13 +75,16 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'explorer.middleware.EditorSettingsMiddleware', 'django.middleware.doc.XViewMiddleware', + + 'maintenancemode.middleware.MaintenanceModeMiddleware', ) ROOT_URLCONF = 'urls' TEMPLATE_DIRS = ( - PROJECT_ROOT + '/templates' + PROJECT_ROOT + '/templates', ) # CSS and JS files to compress @@ -112,10 +115,20 @@ INSTALLED_APPS = ( 'explorer', 'toolbar', + 'api', + 'wysiwyg', ) -REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books' + +# REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books' IMAGE_DIR = 'images' +EDITOR_COOKIE_NAME = 'options' +EDITOR_DEFAULT_SETTINGS = { + 'panels': [ + {'name': 'htmleditor', 'ratio': 0.5}, + {'name': 'gallery', 'ratio': 0.5} + ], +} try: from localsettings import *