Changes between Version 3 and Version 4 of SplitSettings
- Timestamp:
- Jul 7, 2007, 1:42:48 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SplitSettings
v3 v4 127 127 128 128 BASE_DIR = os.path.dirname(os.path.abspath(__file__)) 129 130 # why is this here? 129 131 #PROJECT_DIR = os.path.abspath(os.path.join(BASE_DIR, '..')) 132 133 130 134 PROJECT_DIR = BASE_DIR 131 135 … … 179 183 180 184 #[more user/machine specific settings] 185 }}} 186 187 {{{# urls.py 188 import settings 189 (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.BASE_DIR+'/core/static/', 'show_indexes': True}), 181 190 }}} 182 191