X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/d3802aac61418039b0951f7fcfdd3dcc1ae299af..7d9331d0912698ec04e95a8639600306525e00e6:/redakcja/settings/compress.py diff --git a/redakcja/settings/compress.py b/redakcja/settings/compress.py index 60ce9e36..31e86b4e 100644 --- a/redakcja/settings/compress.py +++ b/redakcja/settings/compress.py @@ -18,7 +18,20 @@ COMPRESS_CSS = { 'css/filelist.css', ), 'output_filename': 'compressed/catalogue_styles_?.css', - } + }, + 'book': { + 'source_filenames': ( + '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 = { @@ -36,6 +49,7 @@ COMPRESS_JS = { # wiki scripts 'js/wiki/wikiapi.js', 'js/wiki/xslt.js', + 'js/wiki/xml-tools.js', # base UI 'js/wiki/base.js', @@ -62,9 +76,27 @@ COMPRESS_JS = { 'source_filenames': ( 'js/catalogue/catalogue.js', 'js/slugify.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', + }, + '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