6cf76662d0dc45a050d5fc4038b0cdb246ae9861
[wolnelektury.git] / src / wolnelektury / settings / static.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from os import path
5 from .paths import VAR_DIR
6
7 # Absolute path to the directory that holds media.
8 # Example: "/home/media/media.lawrence.com/"
9 MEDIA_ROOT = path.join(VAR_DIR, 'media/')
10 STATIC_ROOT = path.join(VAR_DIR, 'static/')
11 SEARCH_INDEX = path.join(VAR_DIR, 'search_index/')
12
13 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
14 # trailing slash if there is a path component (optional in other cases).
15 # Examples: "http://media.lawrence.com", "http://example.com/media/"
16 MEDIA_URL = '/media/'
17 STATIC_URL = '/static/'
18
19 IMAGE_DIR = 'book/pictures/'
20
21 # CSS and JavaScript file groups
22
23 PIPELINE = {
24     'STYLESHEETS': {
25         'main': {
26             # styles both for mobile and for big screen
27             'source_filenames': [
28                 'css/jquery.countdown.css',
29                 'jplayer/jplayer.blue.monday.css',
30
31                 'sponsors/css/sponsors.css',
32
33                 'css/annoy.css',
34
35                 'css/ui-lightness/jquery-ui-1.8.16.custom.css',
36
37                 'css/tlite.css',
38
39                 'scss/main.scss',
40             ],
41             'output_filename': 'css/compressed/main.css',
42         },
43         'book': {
44             'source_filenames': [
45                 'css/master.book.css',
46             ],
47             'output_filename': 'css/compressed/book.css',
48         },
49         'book_text': {
50             'source_filenames': [
51                 'scss/book_text.scss',
52                 'css/new.book.css',
53                 'css/annoy.css',
54
55                 'css/master.picture.css',
56             ],
57             'output_filename': 'css/compressed/book_text.css',
58         },
59         'picture': {
60             'source_filenames': [
61                 'css/master.book.css',
62                 'css/master.picture.css',
63             ],
64             'output_filename': 'css/compressed/picture.css',
65         },
66         'player': {
67             'source_filenames': [
68                 'jplayer/jplayer.blue.monday.css',
69                 'player/player.css',
70             ],
71             'output_filename': 'css/compressed/player.css',
72         },
73         'simple': {
74             'source_filenames': ('css/simple.css',),
75             'output_filename': 'css/compressed/simple.css',
76         },
77         'widget': {
78             'source_filenames': ('scss/widget.scss',),
79             'output_filename': 'css/compressed/widget.css',
80         },
81     },
82     'JAVASCRIPT': {
83         'base': {
84             'source_filenames': (
85                 'js/contrib/jquery.cycle2.min.js',
86                 'js/contrib/jquery.jqmodal.js',
87                 'js/contrib/jquery.form.js',
88                 'js/contrib/jquery.paging.min.js',
89                 'js/contrib/jquery.countdown.js', 'js/contrib/jquery.countdown-pl.js',
90                 'js/contrib/jquery.countdown-de.js', 'js/contrib/jquery.countdown-uk.js',
91                 'js/contrib/jquery.countdown-es.js', 'js/contrib/jquery.countdown-lt.js',
92                 'js/contrib/jquery.countdown-ru.js', 'js/contrib/jquery.countdown-fr.js',
93                 'js/contrib/jquery.shorten.js',
94
95                 'js/contrib/jquery-ui-1.8.16.custom.min.js',
96
97                 'js/contrib/tlite.min.js',
98
99                 'jplayer/jquery.jplayer.min.js',
100                 'jplayer/jplayer.playlist.min.js',
101                 'player/player.js',
102
103                 'js/locale.js',
104                 'js/dialogs.js',
105                 'js/base.js',
106                 'pdcounter/pdcounter.js',
107                 'sponsors/js/sponsors.js',
108                 'player/openplayer.js',
109                 'js/search.js',
110                 'funding/funding.js',
111                 'club/form.js',
112
113                 'js/annoy.js',
114                 ),
115             'output_filename': 'js/base.min.js',
116         },
117         'player': {
118             'source_filenames': [
119                 'jplayer/jquery.jplayer.min.js',
120                 'jplayer/jplayer.playlist.min.js',
121                 'player/player.js',
122             ],
123             'output_filename': 'js/player.min.js',
124         },
125         'book': {
126             'source_filenames': [
127                 'js/contrib/jquery.eventdelegation.js',
128                 'js/contrib/jquery.scrollto.js',
129                 'js/contrib/jquery.highlightfade.js',
130                 'js/book_text/other.js',
131                 'js/book.js',
132
133                 'js/contrib/raphael-min.js',
134                 'js/contrib/progressSpin.min.js',
135                 'js/picture.js',
136             ],
137             'output_filename': 'js/book.min.js',
138         },
139         'book_text': {
140             'source_filenames': [
141                 'js/contrib/jquery.form.js',
142                 'js/contrib/jquery.jqmodal.js',
143                 'js/book_text/info.js',
144                 'js/book_text/menu.js',
145                 'js/book_text/note.js',
146                 'js/book_text/settings.js',
147                 'js/book_text/toc.js',
148                 'js/locale.js',
149                 'js/dialogs.js',
150
151                 'js/contrib/jquery.highlightfade.js',
152                 'js/contrib/raphael-min.js',
153                 'player/openplayer.js',
154                 'js/contrib/progressSpin.min.js',
155                 'js/annoy.js',
156             ],
157             'output_filename': 'js/book_text.js',
158         },
159         'picture': {
160             'source_filenames': [
161                 'js/picture.js',
162             ],
163             'output_filename': 'js/picture.min.js',
164         },
165         'book_ie': {
166             'source_filenames': ('js/contrib/ierange-m2.js',),
167             'output_filename': 'js/book_ie.min.js',
168         },
169         'widget': {
170             'source_filenames': (
171                 'js/contrib/jquery.js',
172                 'js/contrib/jquery-ui-1.8.16.custom.min.js',
173                 'js/search.js',
174                 'js/widget_run.js',
175             ),
176             'output_filename': 'js/widget.min.js',
177         },
178     },
179     'CSS_COMPRESSOR': None,
180     'JS_COMPRESSOR': 'pipeline.compressors.jsmin.JSMinCompressor',
181     'COMPILERS': (
182         'pipeline.compilers.sass.SASSCompiler',
183         # We could probably use PySCSS instead,
184         # but they have some serious problems, like:
185         # https://github.com/Kronuz/pyScss/issues/166 (empty list syntax)
186         # https://github.com/Kronuz/pyScss/issues/258 (bad @media order)
187         # 'pyscss_compiler.PySCSSCompiler',
188     )
189 }
190
191 STATICFILES_STORAGE = 'fnpdjango.pipeline_storage.GzipPipelineCachedStorage'
192 #STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
193
194 # PIPELINE_PYSCSS_BINARY = '/usr/bin/env pyscss'
195 # PIPELINE_PYSCSS_ARGUMENTS = ''
196
197
198 STATICFILES_FINDERS = [
199     'django.contrib.staticfiles.finders.FileSystemFinder',
200     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
201     'pipeline.finders.CachedFileFinder',
202     'pipeline.finders.PipelineFinder',
203 ]
204
205
206 from machina import MACHINA_MAIN_STATIC_DIR
207 STATICFILES_DIRS = (
208     MACHINA_MAIN_STATIC_DIR,
209 )