Mercurial > public > sg101
view gpp/irc/urls.py @ 575:acfa5162d72f
For Django 1.4, add clickjacking protection via new middleware.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 May 2012 14:06:16 -0500 |
parents | ddd69a8e07c7 |
children |
line wrap: on
line source
"""urls for the IRC application""" from django.conf.urls import patterns, url urlpatterns = patterns('irc.views', url(r'^$', 'view', name='irc-main'), )