Changes between Version 3 and Version 4 of SplitSettings


Ignore:
Timestamp:
Jul 7, 2007, 1:42:48 PM (17 years ago)
Author:
Carl Karsten <carl@…>
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SplitSettings

    v3 v4  
    127127
    128128BASE_DIR = os.path.dirname(os.path.abspath(__file__))
     129
     130# why is this here?
    129131#PROJECT_DIR = os.path.abspath(os.path.join(BASE_DIR, '..'))
     132
     133
    130134PROJECT_DIR = BASE_DIR
    131135
     
    179183
    180184#[more user/machine specific settings]
     185}}}
     186
     187{{{# urls.py
     188import settings
     189     (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.BASE_DIR+'/core/static/', 'show_indexes': True}),                     
    181190}}}
    182191
Back to Top