X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b95b09260db87f6665bfcef3fb4f7c19f8acb666..ff928e937ca4498faa2b51e9ee818499fbcc8eaf:/src/wolnelektury/settings/static.py diff --git a/src/wolnelektury/settings/static.py b/src/wolnelektury/settings/static.py index 146e35bae..f2a8423bb 100644 --- a/src/wolnelektury/settings/static.py +++ b/src/wolnelektury/settings/static.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # @@ -51,11 +50,18 @@ PIPELINE = { 'source_filenames': [ 'scss/book_text.scss', 'css/new.book.css', + 'css/annoy.css', 'css/master.picture.css', ], 'output_filename': 'css/compressed/book_text.css', }, + 'forum': { + 'source_filenames': [ + 'scss/forum.scss', + ], + 'output_filename': 'css/compressed/compressed/forum.css', + }, 'picture': { 'source_filenames': [ 'css/master.book.css', @@ -82,7 +88,7 @@ PIPELINE = { 'JAVASCRIPT': { 'base': { 'source_filenames': ( - 'js/contrib/jquery.cycle.min.js', + 'js/contrib/jquery.cycle2.min.js', 'js/contrib/jquery.jqmodal.js', 'js/contrib/jquery.form.js', 'js/contrib/jquery.paging.min.js', @@ -108,6 +114,7 @@ PIPELINE = { 'player/openplayer.js', 'js/search.js', 'funding/funding.js', + 'club/form.js', 'js/annoy.js', ), @@ -151,10 +158,16 @@ PIPELINE = { 'js/contrib/raphael-min.js', 'player/openplayer.js', 'js/contrib/progressSpin.min.js', - 'js/picture.js', + 'js/annoy.js', ], 'output_filename': 'js/book_text.js', }, + 'picture': { + 'source_filenames': [ + 'js/picture.js', + ], + 'output_filename': 'js/picture.min.js', + }, 'book_ie': { 'source_filenames': ('js/contrib/ierange-m2.js',), 'output_filename': 'js/book_ie.min.js', @@ -182,6 +195,7 @@ PIPELINE = { } STATICFILES_STORAGE = 'fnpdjango.pipeline_storage.GzipPipelineCachedStorage' +#STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' # PIPELINE_PYSCSS_BINARY = '/usr/bin/env pyscss' # PIPELINE_PYSCSS_ARGUMENTS = '' @@ -190,5 +204,12 @@ STATICFILES_STORAGE = 'fnpdjango.pipeline_storage.GzipPipelineCachedStorage' STATICFILES_FINDERS = [ 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', + 'pipeline.finders.CachedFileFinder', 'pipeline.finders.PipelineFinder', ] + + +from machina import MACHINA_MAIN_STATIC_DIR +STATICFILES_DIRS = ( + MACHINA_MAIN_STATIC_DIR, +)