X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/967fdef6857fca9cddd9d18bcba97e75e66a2927..3dd7042cbf47824b9bbcb3068f5360fd66aa662f:/redakcja/settings/compress.py diff --git a/redakcja/settings/compress.py b/redakcja/settings/compress.py index bdcf44bb..c56592d0 100644 --- a/redakcja/settings/compress.py +++ b/redakcja/settings/compress.py @@ -1,5 +1,18 @@ +STATICFILES_FINDERS = ( + 'django.contrib.staticfiles.finders.FileSystemFinder', + 'django.contrib.staticfiles.finders.AppDirectoriesFinder', +# 'django.contrib.staticfiles.finders.DefaultStorageFinder', +) + + +STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' +PIPELINE_CSS_COMPRESSOR = None +PIPELINE_JS_COMPRESSOR = None +PIPELINE_STORAGE = 'pipeline.storage.PipelineFinderStorage' + + # CSS and JS files to compress -COMPRESS_CSS = { +PIPELINE_CSS = { 'detail': { 'source_filenames': ( 'css/master.css', @@ -24,10 +37,17 @@ COMPRESS_CSS = { 'css/book.css', ), 'output_filename': 'compressed/book_?.css', - } + }, + 'book_list': { + 'source_filenames': ( + 'contextmenu/jquery.contextMenu.css', + 'css/book_list.css', + ), + 'output_filename': 'compressed/book_list_?.css', + }, } -COMPRESS_JS = { +PIPELINE_JS = { # everything except codemirror 'detail': { 'source_filenames': ( @@ -80,12 +100,13 @@ COMPRESS_JS = { 'js/book_text/book.js', ), 'output_filename': 'compressed/book_?.js', - } + }, + 'book_list': { + 'source_filenames': ( + 'contextmenu/jquery.ui.position.js', + 'contextmenu/jquery.contextMenu.js', + 'js/catalogue/book_list.js', + ), + 'output_filename': 'compressed/book_list_?.js', + } } - -COMPRESS = True -COMPRESS_CSS_FILTERS = None -COMPRESS_JS_FILTERS = None -COMPRESS_AUTO = True -COMPRESS_VERSION = True -COMPRESS_VERSIONING = 'compress.versioning.hash.MD5Versioning'