Django

Code

Changeset 3153

Show
Ignore:
Timestamp:
06/19/06 14:11:19 (2 years ago)
Author:
jacob
Message:

A few tweaks to djangoproject.com settings

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • djangoproject.com/django_website/settings/main.py

    r3008 r3153  
    2525    'django.contrib.sites', 
    2626    'django.contrib.auth', 
     27    'django.contrib.admin', 
    2728    'django.contrib.comments', 
    2829    'django.contrib.contenttypes', 
     
    3435    'django_website.apps.aggregator', 
    3536) 
     37ADMIN_MEDIA_PREFIX = 'http://media.djangoproject.com/admin/' 
    3638MEDIA_ROOT = "/home/html/djangoproject.com/m/" 
    3739MEDIA_URL = "http://www.djangoproject.com.com/m/" 
     
    5658TEMPLATE_LOADERS = ( 
    5759    'django.template.loaders.filesystem.load_template_source', 
     60    'django.template.loaders.app_directories.load_template_source', 
    5861) 
  • djangoproject.com/django_website/settings/urls/main.py

    r3008 r3153  
    2929    (r'^community/$', 'django.views.generic.list_detail.object_list', aggregator_info_dict), 
    3030    (r'^rss/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), 
     31    (r'^password_reset/', include('django.conf.urls.admin_password_reset')), 
     32    (r'^r/', include('django.conf.urls.shortcut')), 
     33    (r'^admin/', include('django.contrib.admin.urls')), 
    3134    (r'', include('django.contrib.flatpages.urls')), 
    3235)