Changeset 75 for trunk/urls.py

Show
Ignore:
Timestamp:
06/28/08 17:35:22 (5 months ago)
Author:
nobu
Message:
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/urls.py

    r20 r75  
    44from django.conf.urls.defaults import * 
    55 
     6# Uncomment this for admin: 
     7from django.contrib import admin 
     8 
    69handler404 = 'common.views.page_not_found' 
    710handler500 = 'common.views.server_error' 
    811 
    912urlpatterns = patterns('', 
    10     (r'^admin/', include('django.contrib.admin.urls')), 
     13    # Uncomment this for admin docs: 
     14    (r'^admin/doc/', include('django.contrib.admindocs.urls')), 
     15 
     16    # Uncomment this for admin: 
     17    (r'^admin/(.*)', admin.site.root), 
    1118) 
    1219