X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0d0fa7a4cd45b477e40740a8d971ec814bc6a4a9..d0ab1d8908cadac9f51a17e2fe9e1193f14e28cc:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index 9e9f6a545..b57599cf2 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -38,12 +38,14 @@ USE_I18N = True # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" -MEDIA_ROOT = path.join(PROJECT_DIR, 'media') +MEDIA_ROOT = path.join(PROJECT_DIR, '../media') +STATIC_ROOT = path.join(PROJECT_DIR, 'static') # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash if there is a path component (optional in other cases). # Examples: "http://media.lawrence.com", "http://example.com/media/" MEDIA_URL = '/media/' +STATIC_URL = '/static/' # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a # trailing slash. @@ -96,12 +98,16 @@ INSTALLED_APPS = [ # external 'south', + 'sorl.thumbnail', 'sponsors', 'newtagging', 'pagination', 'chunks', 'compress', 'catalogue', + 'lessons', + 'piston', + 'api', ] CACHE_BACKEND = 'locmem:///?max_entries=3000' @@ -136,6 +142,18 @@ COMPRESS_JS = { COMPRESS_CSS_FILTERS = None +THUMBNAIL_QUALITY = 95 +THUMBNAIL_EXTENSION = 'png' + +THUMBNAIL_PROCESSORS = ( + # Default processors + 'sorl.thumbnail.processors.colorspace', + 'sorl.thumbnail.processors.autocrop', + 'sorl.thumbnail.processors.scale_and_crop', + 'sorl.thumbnail.processors.filters', + # Custom processors + 'sponsors.processors.add_padding', +) # Load localsettings, if they exist try: