Changeset 6176 for django


Ignore:
Timestamp:
Aug 12, 2008, 3:50:16 PM (17 years ago)
Author:
RIck van der Zwet
Message:

Restructured directory layout to match more logical structure as discribed in
README, note untested commit as code is not yet reproduceable

Location:
django
Files:
1 deleted
2 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • django

    • Property svn:mergeinfo set to
  • django/exodus

    • Property svn:mergeinfo set to
  • django/settings.py

    r6175 r6176  
    1 # Django settings for django_exodus project.
     1# Django settings for exodus project.
    22
    33DEBUG = True
     
    3030# Absolute path to the directory that holds media.
    3131# Example: "/home/media/media.lawrence.com/"
    32 MEDIA_ROOT = '/Users/roland/WL/exodus_svn/exodus/django_media'
     32MEDIA_ROOT = '/Users/roland/WL/exodus_svn/exodus/media'
    3333
    3434# URL that handles the media served from MEDIA_ROOT.
     
    6464    # Always use forward slashes, even on Windows.
    6565
    66    "~/exodus/django_templates"
     66   "~/exodus/templates"
    6767)
    6868
     
    7373    'django.contrib.sites',
    7474    'django.contrib.admin',
    75     'django_exodus.exodus_01',
     75    'django.exodus',
    7676)
  • django/urls.py

    r6175 r6176  
    33
    44urlpatterns = patterns('',
    5      (r'^exodus_01/', include('django_exodus.exodus_01.urls')),
     5     (r'^exodus/', include('django.exodus.urls')),
    66         (r'^site_media/(.*)$', 'django.views.static.serve', {'document_root':
    77         '/Users/roland/WL/exodus/django_media'}),
Note: See TracChangeset for help on using the changeset viewer.