~mhall119/youoneteeoh/add-requirements-file

« back to all changes in this revision

Viewing changes to urls.py

  • Committer: john.lenton at canonical
  • Date: 2011-09-07 10:18:34 UTC
  • Revision ID: john.lenton@canonical.com-20110907101834-0k5iqzkas05sb0t0
cleanup, and work around html changing :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
urlpatterns = patterns('',
11
11
    url(r'^$', shorturl_views.index, name="index"),
 
12
 
12
13
    (r'^_login/$', u1to_views.login),
13
14
    (r'^_oauth-client/', include('django_oauth_client.urls')),
14
15
    (r'^_openid/', include('django_openid_auth.urls')),
17
18
    url(r'^_admin/doc/', include('django.contrib.admindocs.urls')),
18
19
    url(r'^_admin/', include(admin.site.urls)),
19
20
 
20
 
    url(r'^(?P<username>[^/]+)/(?P<index>\w+)(?P<extra>.*)$',
 
21
    url(r'^(?P<username>[^/]+)/(?P<idx>\w+)(?P<extra>.*)$',
21
22
        shorturl_views.dispatch, name="dispatch"),
22
23
 
23
24
)