X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6e32f55e3ef50d9f7d3a291c2388c5220851a9b4..9203d27cee887569ad260dd91d798df68a1d3ada:/wolnelektury/settings/static.py diff --git a/wolnelektury/settings/static.py b/wolnelektury/settings/static.py index 8dcdf8f3b..e5bd333f6 100644 --- a/wolnelektury/settings/static.py +++ b/wolnelektury/settings/static.py @@ -1,5 +1,5 @@ from os import path -from settings.paths import PROJECT_DIR +from .paths import PROJECT_DIR # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" @@ -30,9 +30,14 @@ PIPELINE_CSS = { 'css/catalogue.css', 'sponsors/css/sponsors.css', 'css/auth.css', + 'funding/funding.scss', + 'polls/polls.scss', + 'css/form.scss', 'css/social/shelf_tags.css', 'css/ui-lightness/jquery-ui-1.8.16.custom.css', + + 'css/annoy.css', ], 'output_filename': 'css/compressed/all.css', }, @@ -45,6 +50,8 @@ PIPELINE_CSS = { 'book': { 'source_filenames': [ 'css/master.book.css', + + 'css/annoy.css', ], 'output_filename': 'css/compressed/book.css', }, @@ -79,8 +86,11 @@ PIPELINE_JS = { 'js/base.js', 'pdcounter/pdcounter.js', 'sponsors/js/sponsors.js', - + 'player/openplayer.js', 'js/search.js', + 'funding/funding.js', + + 'js/annoy.js', ), 'output_filename': 'js/base.min.js', }, @@ -93,7 +103,15 @@ PIPELINE_JS = { 'output_filename': 'js/player.min.js', }, 'book': { - 'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',), + 'source_filenames': [ + 'js/jquery.eventdelegation.js', + 'js/jquery.scrollto.js', + 'js/jquery.highlightfade.js', + 'js/book.js', + 'player/openplayer.js', + + 'js/annoy.js', + ], 'output_filename': 'js/book.min.js', }, 'book_ie': { @@ -106,3 +124,9 @@ PIPELINE_JS = { STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' PIPELINE_CSS_COMPRESSOR = None PIPELINE_JS_COMPRESSOR = None + +PIPELINE_COMPILERS = ( + 'pyscss_compiler.PySCSSCompiler', +) +PIPELINE_PYSCSS_BINARY = '/usr/bin/env pyscss' +PIPELINE_PYSCSS_ARGUMENTS = ''