X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/43116c58e5c56f94ef358a5a17fb13a252e02531..31006b86a2e9883d8a4c5fe18128821b325773ab:/redakcja/settings/compress.py diff --git a/redakcja/settings/compress.py b/redakcja/settings/compress.py index c56592d0..decfa166 100644 --- a/redakcja/settings/compress.py +++ b/redakcja/settings/compress.py @@ -1,7 +1,12 @@ +# -*- coding: utf-8 -*- +# +# This file is part of MIL/PEER, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', -# 'django.contrib.staticfiles.finders.DefaultStorageFinder', + # 'django.contrib.staticfiles.finders.DefaultStorageFinder', ) @@ -14,7 +19,7 @@ PIPELINE_STORAGE = 'pipeline.storage.PipelineFinderStorage' # CSS and JS files to compress PIPELINE_CSS = { 'detail': { - 'source_filenames': ( + 'source_filenames': ( 'css/master.css', 'css/toolbar.css', 'css/gallery.css', @@ -24,26 +29,28 @@ PIPELINE_CSS = { 'css/jquery.autocomplete.css', 'css/dialogs.css', ), - 'output_filename': 'compressed/detail_styles_?.css', + 'output_filename': 'compressed/detail_styles.css', }, 'catalogue': { 'source_filenames': ( - 'css/filelist.css', + # 'css/filelist.css', + 'css/base.css', + 'datepicker/css/datepicker.css', ), - 'output_filename': 'compressed/catalogue_styles_?.css', - }, - 'book': { + 'output_filename': 'compressed/catalogue_styles.css', + }, + 'book': { 'source_filenames': ( 'css/book.css', ), - 'output_filename': 'compressed/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', + 'output_filename': 'compressed/book_list.css', }, } @@ -82,24 +89,25 @@ PIPELINE_JS = { 'js/wiki/view_search.js', 'js/wiki/view_column_diff.js', ), - 'output_filename': 'compressed/detail_scripts_?.js', + 'output_filename': 'compressed/detail_scripts.js', }, 'catalogue': { 'source_filenames': ( 'js/catalogue/catalogue.js', 'js/slugify.js', 'email_mangler/email_mangler.js', + 'datepicker/js/bootstrap-datepicker.js', ), - 'output_filename': 'compressed/catalogue_scripts_?.js', - }, - 'book': { + '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', + 'output_filename': 'compressed/book.js', }, 'book_list': { 'source_filenames': ( @@ -107,6 +115,6 @@ PIPELINE_JS = { 'contextmenu/jquery.contextMenu.js', 'js/catalogue/book_list.js', ), - 'output_filename': 'compressed/book_list_?.js', + 'output_filename': 'compressed/book_list.js', } }