77aa92f28147847eb692c7ec95d38b411b539177
[wolnelektury.git] / wolnelektury / settings / static.py
1 from os import path
2 from settings.paths import PROJECT_DIR
3
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/')
9
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/"
13 MEDIA_URL = '/media/'
14 STATIC_URL = '/static/'
15
16 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
17 # trailing slash.
18 # Examples: "http://foo.com/media/", "/media/".
19 ADMIN_MEDIA_PREFIX = '/admin-media/'
20
21 # CSS and JavaScript file groups
22 COMPRESS_CSS = {
23     'all': {
24         #'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/facelist_2-0.css',),
25         'source_filenames': [
26             'css/jquery.countdown.css', 
27
28             'css/base.css',
29             'css/cite.css',
30             'css/header.css',
31             'css/main_page.css',
32             'css/dialogs.css',
33             'css/picture_box.css',
34             'css/book_box.css',
35             'css/catalogue.css',
36             'css/sponsors.css',
37             'css/auth.css',
38
39             'css/social/shelf_tags.css',
40             'css/ui-lightness/jquery-ui-1.8.16.custom.css',
41         ],
42         'output_filename': 'css/all.min?.css',
43     },
44     'screen': {
45         'source_filenames': ['css/screen.css'],
46         'output_filename': 'css/screen.min?.css',
47         'extra_context': {
48             'media': 'screen and (min-width: 800px)',
49         },
50     },
51     'ie': {
52         'source_filenames': [
53             'css/ie.css',
54         ],
55         'output_filename': 'css/ie.min?.css',
56     },
57     'book': {
58         'source_filenames': [
59             'css/master.book.css',
60         ],
61         'output_filename': 'css/book.min?.css',
62     },
63     'player': {
64         'source_filenames': [
65             'jplayer/jplayer.blue.monday.css', 
66             'css/player.css', 
67         ],
68         'output_filename': 'css/player.min?.css',
69     },
70     'simple': {
71         'source_filenames': ('css/simple.css',),
72         'output_filename': 'css/simple.min?.css',
73     },
74 }
75
76 COMPRESS_JS = {
77     'base': {
78         'source_filenames': (
79             'js/jquery.cycle.min.js',
80             'js/jquery.jqmodal.js',
81             'js/jquery.form.js',
82             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
83             'js/jquery.countdown-de.js', 'js/jquery.countdown-uk.js',
84             'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js',
85             'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js',
86
87             'js/jquery-ui-1.8.16.custom.min.js',
88
89             'js/locale.js',
90             'js/dialogs.js',
91             'js/sponsors.js',
92             'js/base.js',
93             'js/pdcounter.js',
94
95             'js/search.js',
96             ),
97         'output_filename': 'js/base?.min.js',
98     },
99     'player': {
100         'source_filenames': [
101             'jplayer/jquery.jplayer.min.js', 
102             'jplayer/jplayer.playlist.min.js', 
103             'js/player.js', 
104         ],
105         'output_filename': 'js/player.min?.js',
106     },
107     'book': {
108         'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
109         'output_filename': 'js/book?.min.js',
110     },
111     'book_ie': {
112         'source_filenames': ('js/ierange-m2.js',),
113         'output_filename': 'js/book_ie?.min.js',
114     }
115
116 }
117
118 COMPRESS_VERSION = True
119 COMPRESS_CSS_FILTERS = None