view comments/urls.py @ 1096:d9cd3180c12c

More GCalendar V3 conversion in progress. Built a brand new post editor. It is hardcoded into GCalendar right now. We will make it more general in the future.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Jun 2016 21:16:09 -0500
parents 110bbc78a482
children
line wrap: on
line source
"""
URLs for the comments application.
"""
from django.conf.urls import url
import django.contrib.contenttypes.views

import comments.views

urlpatterns = [
    url(r'^flag/$', comments.views.flag_comment, name='comments-flag'),
    url(r'^markdown/$', comments.views.markdown_preview,
        name='comments-markdown_preview'),
    url(r'^markdown/v3/$', comments.views.markdown_preview_v3,
        name='comments-markdown_preview_v3'),
    url(r'^post/$', comments.views.post_comment, name='comments-post'),
    url(r'^cr/(\d+)/(\d+)/$',
        django.contrib.contenttypes.views.shortcut,
        name='comments-url-redirect'),
]