2 from settings.paths import PROJECT_DIR
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/')
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/"
13 STATIC_URL = '/static/'
15 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
17 # Examples: "http://foo.com/media/", "/media/".
18 ADMIN_MEDIA_PREFIX = '/admin-media/'
20 # CSS and JavaScript file groups
23 #'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/facelist_2-0.css',),
25 'css/jquery.countdown.css',
32 'css/picture_box.css',
39 'css/social/shelf_tags.css',
40 'css/ui-lightness/jquery-ui-1.8.16.custom.css',
42 'output_filename': 'css/all.min?.css',
45 'source_filenames': ['css/screen.css'],
46 'output_filename': 'css/screen.min?.css',
48 'media': 'screen and (min-width: 800px)',
55 'output_filename': 'css/ie.min?.css',
60 'css/master.book.css',
62 'output_filename': 'css/book.min?.css',
66 'jplayer/jplayer.blue.monday.css',
69 'output_filename': 'css/player.min?.css',
72 'source_filenames': ('css/simple.css',),
73 'output_filename': 'css/simple.min?.css',
80 'js/jquery.cycle.min.js',
81 'js/jquery.jqmodal.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',
88 'js/jquery-ui-1.8.16.custom.min.js',
98 'output_filename': 'js/base?.min.js',
101 'source_filenames': [
102 'jplayer/jquery.jplayer.min.js',
103 'jplayer/jplayer.playlist.min.js',
106 'output_filename': 'js/player.min?.js',
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',
113 'source_filenames': ('js/ierange-m2.js',),
114 'output_filename': 'js/book_ie?.min.js',
119 COMPRESS_VERSION = True
120 COMPRESS_CSS_FILTERS = None