Mercurial > public > sg101
comparison gpp/forums/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 | 7388cdf61b25 |
children |
comparison
equal
deleted
inserted
replaced
573:bcc4e8cf841b | 574:ddd69a8e07c7 |
---|---|
1 """ | 1 """ |
2 URLs for the forums application. | 2 URLs for the forums application. |
3 """ | 3 """ |
4 from django.conf.urls.defaults import * | 4 from django.conf.urls import patterns, url |
5 | 5 |
6 urlpatterns = patterns('forums.views.main', | 6 urlpatterns = patterns('forums.views.main', |
7 url(r'^$', 'index', name='forums-index'), | 7 url(r'^$', 'index', name='forums-index'), |
8 url(r'^catchup/$', 'catchup_all', name='forums-catchup_all'), | 8 url(r'^catchup/$', 'catchup_all', name='forums-catchup_all'), |
9 url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'), | 9 url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'), |