Merge branch 'django-1.5'
[wolnelektury.git] / wolnelektury / settings / static.py
1 from os import path
2 from .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 # CSS and JavaScript file groups
17 PIPELINE_CSS = {
18     'all': {
19         # styles both for mobile and for big screen
20         'source_filenames': [
21             'css/jquery.countdown.css', 
22
23             'css/base.css',
24             'css/cite.css',
25             'css/header.css',
26             'css/main_page.css',
27             'css/dialogs.css',
28             'css/picture_box.css',
29             'css/book_box.css',
30             'css/catalogue.css',
31             'sponsors/css/sponsors.css',
32             'css/auth.css',
33
34             'css/social/shelf_tags.css',
35             'css/ui-lightness/jquery-ui-1.8.16.custom.css',
36
37             'css/annoy.css',
38         ],
39         'output_filename': 'css/compressed/all.css',
40     },
41     'ie': {
42         'source_filenames': [
43             'css/ie.css',
44         ],
45         'output_filename': 'css/compressed/ie.css',
46     },
47     'book': {
48         'source_filenames': [
49             'css/master.book.css',
50
51             'css/annoy.css',
52         ],
53         'output_filename': 'css/compressed/book.css',
54     },
55     'player': {
56         'source_filenames': [
57             'jplayer/jplayer.blue.monday.css', 
58             'player/player.css', 
59         ],
60         'output_filename': 'css/compressed/player.css',
61     },
62     'simple': {
63         'source_filenames': ('css/simple.css',),
64         'output_filename': 'css/compressed/simple.css',
65     },
66 }
67
68 PIPELINE_JS = {
69     'base': {
70         'source_filenames': (
71             'js/jquery.cycle.min.js',
72             'js/jquery.jqmodal.js',
73             'js/jquery.form.js',
74             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
75             'js/jquery.countdown-de.js', 'js/jquery.countdown-uk.js',
76             'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js',
77             'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js',
78
79             'js/jquery-ui-1.8.16.custom.min.js',
80
81             'js/locale.js',
82             'js/dialogs.js',
83             'js/base.js',
84             'pdcounter/pdcounter.js',
85             'sponsors/js/sponsors.js',
86             'player/openplayer.js',
87             'js/search.js',
88
89             'js/annoy.js',
90             ),
91         'output_filename': 'js/base.min.js',
92     },
93     'player': {
94         'source_filenames': [
95             'jplayer/jquery.jplayer.min.js', 
96             'jplayer/jplayer.playlist.min.js', 
97             'player/player.js', 
98         ],
99         'output_filename': 'js/player.min.js',
100     },
101     'book': {
102         'source_filenames': [
103             'js/jquery.eventdelegation.js',
104             'js/jquery.scrollto.js',
105             'js/jquery.highlightfade.js',
106             'js/book.js',
107             'player/openplayer.js',
108
109             'js/annoy.js',
110         ],
111         'output_filename': 'js/book.min.js',
112     },
113     'book_ie': {
114         'source_filenames': ('js/ierange-m2.js',),
115         'output_filename': 'js/book_ie.min.js',
116     }
117
118 }
119
120 STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
121 PIPELINE_CSS_COMPRESSOR = None
122 PIPELINE_JS_COMPRESSOR = None