Django

Code

Show
Ignore:
Timestamp:
06/17/07 17:18:54 (2 years ago)
Author:
clong
Message:

per-object-permissions: Merged to trunk [5486] NOTE: Not fully tested, will be working on this over the next few weeks.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/per-object-permissions/tests/urls.py

    r3732 r5488  
    44    # test_client modeltest urls 
    55    (r'^test_client/', include('modeltests.test_client.urls')), 
     6    (r'^test_client_regress/', include('regressiontests.test_client_regress.urls')), 
    67 
    78    # Always provide the auth system login and logout views 
    89    (r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}), 
    9     (r'^accounts/logout/$', 'django.contrib.auth.views.login'), 
     10    (r'^accounts/logout/$', 'django.contrib.auth.views.logout'), 
     11 
     12    # test urlconf for {% url %} template tag 
     13    (r'^url_tag/', include('regressiontests.templates.urls')), 
    1014)