X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/b0af42626632f8750ac9e88338be7e196bd4f91d..967fdef6857fca9cddd9d18bcba97e75e66a2927:/redakcja/settings/compress.py diff --git a/redakcja/settings/compress.py b/redakcja/settings/compress.py index d4425c21..bdcf44bb 100644 --- a/redakcja/settings/compress.py +++ b/redakcja/settings/compress.py @@ -18,6 +18,12 @@ COMPRESS_CSS = { 'css/filelist.css', ), 'output_filename': 'compressed/catalogue_styles_?.css', + }, + 'book': { + 'source_filenames': ( + 'css/book.css', + ), + 'output_filename': 'compressed/book_?.css', } } @@ -65,7 +71,16 @@ COMPRESS_JS = { 'email_mangler/email_mangler.js', ), 'output_filename': 'compressed/catalogue_scripts_?.js', - } + }, + 'book': { + 'source_filenames': ( + 'js/book_text/jquery.eventdelegation.js', + 'js/book_text/jquery.scrollto.js', + 'js/book_text/jquery.highlightfade.js', + 'js/book_text/book.js', + ), + 'output_filename': 'compressed/book_?.js', + } } COMPRESS = True