diff -r 189be4b3d712 -r 9c7de6dd1723 src/cm/api/urls.py --- a/src/cm/api/urls.py Fri Sep 14 09:49:27 2012 +0200 +++ b/src/cm/api/urls.py Fri Sep 14 09:50:05 2012 +0200 @@ -18,6 +18,7 @@ tv_delete_handler = Resource(handler=TextVersionDeleteHandler, authentication=auth) text_export_handler = Resource(handler=TextExportHandler, authentication=auth) +import_handler = Resource(handler=ImportHandler, authentication=auth) comments_handler = Resource(handler=CommentsHandler, authentication=auth) @@ -43,6 +44,7 @@ url(r'^text/(?P\w*)/comments/(?P\w*)/$', comment_handler), url(r'^text/(?P\w*)/export/(?P\w*)/(?P\w*)/(?P\w*)/(?P\w*)/$', text_export_handler), + url(r'^import/$', import_handler), url(r'^text/(?P\w*)/feed/$', text_feed_handler), url(r'^text/(?P\w*)/delete/$', text_delete_handler),