rearrangements: new core app, templates in apps, split settings;
[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
9 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
10 # trailing slash if there is a path component (optional in other cases).
11 # Examples: "http://media.lawrence.com", "http://example.com/media/"
12 MEDIA_URL = '/media/'
13 STATIC_URL = '/static/'
14
15 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
16 # trailing slash.
17 # Examples: "http://foo.com/media/", "/media/".
18 ADMIN_MEDIA_PREFIX = '/admin-media/'
19
20 # CSS and JavaScript file groups
21 COMPRESS_CSS = {
22     'all': {
23         #'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/facelist_2-0.css',),
24         'source_filenames': [
25             'css/jquery.countdown.css', 
26
27             'css/base.css',
28             'css/cite.css',
29             'css/header.css',
30             'css/main_page.css',
31             'css/dialogs.css',
32             'css/picture_box.css',
33             'css/book_box.css',
34             'css/catalogue.css',
35             'css/sponsors.css',
36             'css/logo.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/logo.css',
60             'css/master.book.css',
61         ],
62         'output_filename': 'css/book.min?.css',
63     },
64     'player': {
65         'source_filenames': [
66             'jplayer/jplayer.blue.monday.css', 
67             'css/player.css', 
68         ],
69         'output_filename': 'css/player.min?.css',
70     },
71     'simple': {
72         'source_filenames': ('css/simple.css',),
73         'output_filename': 'css/simple.min?.css',
74     },
75 }
76
77 COMPRESS_JS = {
78     'base': {
79         'source_filenames': (
80             'js/jquery.cycle.min.js',
81             'js/jquery.jqmodal.js',
82             'js/jquery.form.js',
83             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
84             'js/jquery.countdown-de.js', 'js/jquery.countdown-uk.js',
85             'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js',
86             'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js',
87
88             'js/jquery-ui-1.8.16.custom.min.js',
89
90             'js/locale.js',
91             'js/dialogs.js',
92             'js/sponsors.js',
93             'js/base.js',
94             'js/pdcounter.js',
95
96             'js/search.js',
97             ),
98         'output_filename': 'js/base?.min.js',
99     },
100     'player': {
101         'source_filenames': [
102             'jplayer/jquery.jplayer.min.js', 
103             'jplayer/jplayer.playlist.min.js', 
104             'js/player.js', 
105         ],
106         'output_filename': 'js/player.min?.js',
107     },
108     'book': {
109         'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
110         'output_filename': 'js/book?.min.js',
111     },
112     'book_ie': {
113         'source_filenames': ('js/ierange-m2.js',),
114         'output_filename': 'js/book_ie?.min.js',
115     }
116
117 }
118
119 COMPRESS_VERSION = True
120 COMPRESS_CSS_FILTERS = None