diff -r ef8b166a0993 -r bacf162c7b58 src/cm/api/urls.py --- a/src/cm/api/urls.py Wed Apr 25 09:25:39 2012 +0200 +++ b/src/cm/api/urls.py Mon May 07 09:10:45 2012 +0200 @@ -21,6 +21,8 @@ comments_handler = Resource(handler=CommentsHandler, authentication=auth) +convert_handler = Resource(handler=ConvertHandler, authentication=auth) + client_handler = Resource(handler=ClientHandler, authentication=auth) jsi8n_handler = Resource(handler=JSI18NHandler, authentication=None) @@ -48,6 +50,7 @@ url(r'^text/(?P\w*)/edit/$', text_edit_handler), url(r'^text/(?P\w*)/(?P\w*)/$', textversion_handler), url(r'^comments/$', comments_handler), + url(r'^convert/$', convert_handler), url(r'^client/$', client_handler), url(r'^jsi18n/$', jsi8n_handler), url(r'^doc/$', documentation),