X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/9746b4b78fc11e4f9785cef86333723c8307c003..01eed1521a67afc04a8112b44ca4cd1c4a32cf00:/forum/urls.py?ds=sidebyside diff --git a/forum/urls.py b/forum/urls.py index 588c50d..9ba2ebd 100644 --- a/forum/urls.py +++ b/forum/urls.py @@ -73,9 +73,11 @@ urlpatterns += patterns('', url(r'^%s(?P\d+)/$' % _('subscribe/'), app.commands.subscribe, name="subscribe"), url(r'^%s' % _('matching_tags/'), app.commands.matching_tags, name='matching_tags'), url(r'^%s(?P\d+)/' % _('node_markdown/'), app.commands.node_markdown, name='node_markdown'), + url(r'^%s(?P\d+)/' % _('convert/'), app.commands.convert_to_comment, name='convert_to_comment'), + url(r'^%s(?P\d+)/' % _('wikify/'), app.commands.wikify, name='wikify'), - #place general question item in the end of other operations - url(r'^%s(?P\d+)/(?P[\w-]*)$' % _('question/'), app.readers.question, name='question'), + url(r'^%s(?P\d+)/(?P[\w-]*)$' % _('question/'), 'django.views.generic.simple.redirect_to', {'url': '/questions/%(id)s/%(slug)s'}), + url(r'^%s(?P\d+)/(?P[\w-]*)$' % _('questions/'), app.readers.question, name='question'), url(r'^%s$' % _('tags/'), app.readers.tags, name='tags'), url(r'^%s(?P.*)/$' % _('tags/'), app.readers.tag, name='tag_questions'),