cleanup
[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
12 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
13 # trailing slash if there is a path component (optional in other cases).
14 # Examples: "http://media.lawrence.com", "http://example.com/media/"
15 MEDIA_URL = '/media/'
16 STATIC_URL = '/static/'
17
18 IMAGE_DIR = 'book/pictures/'
19
20 # CSS and JavaScript file groups
21
22 PIPELINE = {
23     'STYLESHEETS': {
24         '2022': {
25             'source_filenames': [
26                 'contrib/jquery-ui-1.13.1.custom/jquery-ui.css',
27                 'css/jquery.countdown.css',
28
29                 '2022/styles/main.scss',
30                 '2022/more.scss',
31                 'chunks/edit.scss',
32             ],
33             'output_filename': 'css/compressed/2022.css',
34         },
35         'book_text': {
36             'source_filenames': [
37                 'css/import/gelasio.css',
38                 'scss/book_text.scss',
39                 'css/new.book.css',
40                 'annoy/banner.scss',
41                 'annoy/book_text.scss',
42                 '2022/styles/reader_player.scss',
43
44                 'css/master.picture.css',
45             ],
46             'output_filename': 'css/compressed/book_text.css',
47         },
48         'widget': {
49             'source_filenames': ('scss/widget.scss',),
50             'output_filename': 'css/compressed/widget.css',
51         },
52     },
53     'JAVASCRIPT': {
54         '2022': {
55             'source_filenames': [
56                 '2022/scripts/vendor.js',
57                 'contrib/jquery-ui-1.13.1.custom/jquery-ui.js',
58
59                 'js/search.js',
60                 'js/2022.js',
61                 '2022/book/filter.js',
62                 'chunks/edit.js',
63                 '2022/scripts/modernizr.js',
64                 '2021/scripts/main.js',
65
66                 'js/contrib/jquery.cycle2.min.js',
67                 'sponsors/js/sponsors.js',
68
69                 'js/contrib/jquery.countdown.js', 'js/contrib/jquery.countdown-pl.js',
70                 'js/contrib/jquery.countdown-de.js', 'js/contrib/jquery.countdown-uk.js',
71                 'js/contrib/jquery.countdown-es.js', 'js/contrib/jquery.countdown-lt.js',
72                 'js/contrib/jquery.countdown-ru.js', 'js/contrib/jquery.countdown-fr.js',
73                 'pdcounter/pdcounter.js',
74
75             ],
76             'output_filename': 'js/2022.min.js'
77         },
78         '2022_player': {
79             'source_filenames': [
80                 'js/contrib/jplayer/jquery.jplayer.min.js',
81                 'js/contrib/jplayer/jplayer.playlist.min.js',
82                 'player/2022_player.js',
83             ],
84             'output_filename': 'js/2022_player.min.js',
85         },
86         'book_text': {
87             'source_filenames': [
88                 'js/contrib/jquery.form.js',
89                 'js/contrib/jquery.jqmodal.js',
90                 'js/book_text/info.js',
91                 'js/book_text/menu.js',
92                 'js/book_text/note.js',
93                 'js/book_text/references.js',
94                 'js/book_text/settings.js',
95                 'js/book_text/toc.js',
96                 'js/locale.js',
97                 'js/dialogs.js',
98                 'annoy/book_text.js',
99
100                 'js/contrib/jquery.highlightfade.js',
101                 'js/contrib/raphael-min.js',
102                 'js/contrib/progressSpin.min.js',
103                 'annoy/banner.js',
104             ],
105             'output_filename': 'js/book_text.js',
106         },
107         'widget': {
108             'source_filenames': (
109                 'js/contrib/jquery.js',
110                 'js/contrib/jquery-ui-1.8.16.custom.min.js',
111                 'js/search.js',
112                 'js/widget_run.js',
113             ),
114             'output_filename': 'js/widget.min.js',
115         },
116     },
117     'CSS_COMPRESSOR': None,
118     'JS_COMPRESSOR': 'pipeline.compressors.jsmin.JSMinCompressor',
119     'COMPILERS': (
120         'libsasscompiler.LibSassCompiler',
121     )
122 }
123
124 STATICFILES_STORAGE = 'fnpdjango.pipeline_storage.GzipPipelineManifestStorage'
125
126 # PIPELINE_PYSCSS_BINARY = '/usr/bin/env pyscss'
127 # PIPELINE_PYSCSS_ARGUMENTS = ''
128
129
130 STATICFILES_FINDERS = [
131     'django.contrib.staticfiles.finders.FileSystemFinder',
132     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
133     'pipeline.finders.CachedFileFinder',
134     'pipeline.finders.PipelineFinder',
135 ]