comparison gpp/shoutbox/urls.py @ 574:ddd69a8e07c7

For Django 1.4, use django.conf.urls instead of django.conf.urls.defaults.
author Brian Neal <bgneal@gmail.com>
date Thu, 03 May 2012 20:45:16 -0500
parents 7ddd60164245
children
comparison
equal deleted inserted replaced
573:bcc4e8cf841b 574:ddd69a8e07c7
1 """ 1 """
2 Urls for the Shoutbox application. 2 Urls for the Shoutbox application.
3 """ 3 """
4 4
5 from django.conf.urls.defaults import * 5 from django.conf.urls import patterns, url
6 6
7 urlpatterns = patterns('shoutbox.views', 7 urlpatterns = patterns('shoutbox.views',
8 url(r'^delete/$', 'delete', name='shoutbox-delete'), 8 url(r'^delete/$', 'delete', name='shoutbox-delete'),
9 url(r'^edit/$', 'edit', name='shoutbox-edit'), 9 url(r'^edit/$', 'edit', name='shoutbox-edit'),
10 url(r'^flag/$', 'flag', name='shoutbox-flag'), 10 url(r'^flag/$', 'flag', name='shoutbox-flag'),