summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/urls.py
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2008-09-09 09:28:33 +1000
committerJeremy Kerr <jk@ozlabs.org>2008-09-09 09:28:33 +1000
commita66875053f1014de3767937b1a918949c667ac74 (patch)
treef1cd259e995b8323dbfdb654c8da3f5ae3c75c12 /apps/patchwork/urls.py
parent18638f005afea23e13f7329ed3ebbdae8d35582c (diff)
downloadpatchwork-a66875053f1014de3767937b1a918949c667ac74.tar.bz2
patchwork-a66875053f1014de3767937b1a918949c667ac74.tar.xz
Add 'update' method to pwclient
This requires a new xmlrpc function, 'patch_set'. To do this, we need HTTP Authentication support, which means changing to a custom XMLRPC distpatcher that is aware of the Authorization: header. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'apps/patchwork/urls.py')
-rw-r--r--apps/patchwork/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/patchwork/urls.py b/apps/patchwork/urls.py
index f7c942a..ef1f2ad 100644
--- a/apps/patchwork/urls.py
+++ b/apps/patchwork/urls.py
@@ -58,6 +58,7 @@ urlpatterns = patterns('',
if settings.ENABLE_XMLRPC:
urlpatterns += patterns('',
+ (r'xmlrpc/$', 'patchwork.views.xmlrpc.xmlrpc'),
(r'^pwclient.py/$', 'patchwork.views.pwclient'),
(r'^project/(?P<project_id>[^/]+)/pwclientrc/$',
'patchwork.views.pwclientrc'),