Django

Code

Show
Ignore:
Timestamp:
07/20/07 15:49:49 (1 year ago)
Author:
danderson
Message:

schema-evolution: merged trunk:HEAD into schema-evolution branch

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/schema-evolution/tests/urls.py

    r3937 r5734  
    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)