X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6ab5e576c0bccd88cc5d4e6924373a5e393b0fa1..6275fc2699ebdb2bbcedc302769d97818fb890ad:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index bdbc9923b..d1e09e36d 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,11 +98,16 @@ INSTALLED_APPS = [ # external 'south', + 'sorl.thumbnail', + 'sponsors', 'newtagging', 'pagination', 'chunks', 'compress', 'catalogue', + 'lessons', + 'piston', + 'api', ] CACHE_BACKEND = 'locmem:///?max_entries=3000' @@ -108,7 +115,7 @@ CACHE_BACKEND = 'locmem:///?max_entries=3000' # CSS and JavaScript file groups COMPRESS_CSS = { 'all': { - 'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css',), + 'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/sponsors.css',), 'output_filename': 'css/all.min.css', }, 'book': { @@ -124,7 +131,8 @@ COMPRESS_JS = { }, 'all': { 'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', - 'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',), + 'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js', + 'js/jquery.cookie.js',), 'output_filename': 'js/all.min.js', }, 'book': { @@ -135,6 +143,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: