2 from .paths import PROJECT_DIR
4 # Absolute path to the directory that holds media.
5 # Example: "/home/media/media.lawrence.com/"
6 MEDIA_ROOT = path.join(PROJECT_DIR, '../media/')
7 STATIC_ROOT = path.join(PROJECT_DIR, '../static/')
8 SEARCH_INDEX = path.join(PROJECT_DIR, '../search_index/')
10 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
11 # trailing slash if there is a path component (optional in other cases).
12 # Examples: "http://media.lawrence.com", "http://example.com/media/"
14 STATIC_URL = '/static/'
16 # CSS and JavaScript file groups
21 # styles both for mobile and for big screen
23 'css/jquery.countdown.css',
25 'sponsors/css/sponsors.css',
26 'css/social/shelf_tags.css',
28 'uni_form/uni-form.css',
29 'uni_form/default.uni-form.css',
31 'css/ui-lightness/jquery-ui-1.8.16.custom.css',
35 'output_filename': 'css/compressed/main.css',
39 'css/master.book.css',
41 'output_filename': 'css/compressed/book.css',
45 'scss/book_text.scss',
48 'output_filename': 'css/compressed/book_text.css',
52 'css/master.book.css',
53 'css/master.picture.css',
55 'output_filename': 'css/compressed/picture.css',
59 'jplayer/jplayer.blue.monday.css',
62 'output_filename': 'css/compressed/player.css',
65 'source_filenames': ('css/simple.css',),
66 'output_filename': 'css/compressed/simple.css',
73 'js/jquery.cycle.min.js',
74 'js/jquery.jqmodal.js',
76 'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
77 'js/jquery.countdown-de.js', 'js/jquery.countdown-uk.js',
78 'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js',
79 'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js',
81 'js/jquery-ui-1.8.16.custom.min.js',
86 'pdcounter/pdcounter.js',
87 'sponsors/js/sponsors.js',
88 'player/openplayer.js',
92 'uni_form/uni-form.js',
94 'output_filename': 'js/base.min.js',
98 'jplayer/jquery.jplayer.min.js',
99 'jplayer/jplayer.playlist.min.js',
102 'output_filename': 'js/player.min.js',
105 'source_filenames': [
106 'js/jquery.eventdelegation.js',
107 'js/jquery.scrollto.js',
108 'js/jquery.highlightfade.js',
109 'js/book_text/other.js',
113 'player/openplayer.js',
114 'js/progressSpin.min.js',
116 'output_filename': 'js/book.min.js',
119 'source_filenames': [
121 'js/jquery.jqmodal.js',
126 'output_filename': 'js/book_text.js',
129 'source_filenames': ('js/ierange-m2.js',),
130 'output_filename': 'js/book_ie.min.js',
135 STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
136 PIPELINE_CSS_COMPRESSOR = None
137 PIPELINE_JS_COMPRESSOR = None
139 PIPELINE_COMPILERS = (
140 'pipeline.compilers.sass.SASSCompiler',
141 # We could probably use PySCSS instead,
142 # but they have some serious problems, like:
143 # https://github.com/Kronuz/pyScss/issues/166 (empty list syntax)
144 # https://github.com/Kronuz/pyScss/issues/258 (bad @media order)
145 #'pyscss_compiler.PySCSSCompiler',
147 #PIPELINE_PYSCSS_BINARY = '/usr/bin/env pyscss'
148 #PIPELINE_PYSCSS_ARGUMENTS = ''