X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/8ae014fa8f6e9e9555f28dc9e09ce0c81e58bc85..873c22275a94e60243469f1b7f0eedb7b2e76f39:/edumed/settings.d/50-static.py diff --git a/edumed/settings.d/50-static.py b/edumed/settings.d/50-static.py index 35aabe2..f2924eb 100644 --- a/edumed/settings.d/50-static.py +++ b/edumed/settings.d/50-static.py @@ -9,7 +9,7 @@ STATICFILES_FINDERS = ( # 'django.contrib.staticfiles.finders.DefaultStorageFinder', ) -STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' +STATICFILES_STORAGE = 'fnpdjango.utils.pipeline_storage.GzipPipelineCachedStorage' PIPELINE_CSS_COMPRESSOR = None PIPELINE_JS_COMPRESSOR = None PIPELINE_CSS = { @@ -39,8 +39,10 @@ PIPELINE_JS = { 'catalogue/js/jquery.cycle.all.js', 'jquery/colorbox/jquery.colorbox-min.js', 'jquery/colorbox/jquery.colorbox-pl.js', + 'catalogue/js/carousel.js', 'catalogue/js/edumed.js', 'catalogue/js/lesson.js', + 'catalogue/js/lesson-list.js', 'sponsors/js/sponsors.js', 'curriculum/curriculum.js', 'js/formset.js', @@ -50,7 +52,10 @@ PIPELINE_JS = { }, 'wtem': { 'source_filenames': ( + 'catalogue/js/jquery-ui-1.10.0.custom.js', 'wtem/edumed.js', + 'wtem/wtem.js', + 'wtem/json2.js' ), 'output_filename': 'compressed/wtem.js' }, @@ -59,5 +64,3 @@ PIPELINE_JS = { PIPELINE_COMPILERS = ( 'pipeline.compilers.sass.SASSCompiler', ) - -PIPELINE_STORAGE = 'pipeline.storage.PipelineFinderStorage'