Changeset 2ff0d60
- Timestamp:
- Feb 2, 2010, 5:50:01 AM (15 years ago)
- Branches:
- master, client
- Children:
- 86f8884
- Parents:
- 408cd14
- git-author:
- Alex Dehnert <adehnert@…> (02/02/10 05:50:01)
- git-committer:
- Alex Dehnert <adehnert@…> (02/02/10 05:50:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
remit/settings.py
r676ea4b r2ff0d60 4 4 5 5 SITE_ROOT = os.path.normpath(os.path.dirname(__file__)) 6 SITE_WEB_PATH = '' 6 7 DEFAULT_DOMAIN = 'mit.edu' 7 8 … … 48 49 # trailing slash if there is a path component (optional in other cases). 49 50 # Examples: "http://media.lawrence.com", "http://example.com/media/" 50 MEDIA_URL = '/media/'51 MEDIA_URL = SITE_WEB_PATH + '/media/' 51 52 52 53 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a 53 54 # trailing slash. 54 55 # Examples: "http://foo.com/media/", "/media/". 55 ADMIN_MEDIA_PREFIX = '/media/admin/'56 ADMIN_MEDIA_PREFIX = SITE_WEB_PATH + '/media/admin/' 56 57 57 58 # List of callables that know how to import templates from various sources. … … 91 92 'finance_core', 92 93 ) 94 95 from local_settings_after import *
Note: See TracChangeset
for help on using the changeset viewer.