]> git.ozlabs.org Git - patchwork/blobdiff - apps/patchwork/urls.py
[views] Restructure profile view, simplify bundle access
[patchwork] / apps / patchwork / urls.py
index ef1f2adc88d557823f4ac20006a21ff6ca44e331..4352db0e0d16a4d5d3552c4d3e07209386c06faa 100644 (file)
@@ -36,6 +36,8 @@ urlpatterns = patterns('',
     (r'^user/todo/$', 'patchwork.views.user.todo_lists'),
     (r'^user/todo/(?P<project_id>[^/]+)/$', 'patchwork.views.user.todo_list'),
 
+    (r'^user/bundles/$',
+        'patchwork.views.bundle.bundles'),
     (r'^user/bundle/(?P<bundle_id>[^/]+)/$',
         'patchwork.views.bundle.bundle'),
     (r'^user/bundle/(?P<bundle_id>[^/]+)/mbox/$',
@@ -59,7 +61,7 @@ urlpatterns = patterns('',
 if settings.ENABLE_XMLRPC:
     urlpatterns += patterns('',
         (r'xmlrpc/$', 'patchwork.views.xmlrpc.xmlrpc'),
-        (r'^pwclient.py/$', 'patchwork.views.pwclient'),
+        (r'^pwclient/$', 'patchwork.views.pwclient'),
         (r'^project/(?P<project_id>[^/]+)/pwclientrc/$',
              'patchwork.views.pwclientrc'),
     )