Mercurial > public > sg101
view core/urls.py @ 974:d260aef91ad7
Prevent post preview from allowing mixed content.
Apply image_check() to post previews and display an error message instead of
the preview if it fails.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 01 Oct 2015 20:18:48 -0500 |
parents | ee87ea74d46b |
children | 5ba2508939f7 |
line wrap: on
line source
""" Urls for the core application. """ from django.conf.urls import patterns, url urlpatterns = patterns('core.views', url(r'^markdown_help/$', 'markdown_help', name='core-markdown_help'), url(r'^ajax/users/$', 'ajax_users', name='core-ajax_users'), )