annotate gpp/weblinks/urls.py @ 429:d0f0800eef0c

Making the jquery tabbed version of the messages app the current version and removing the old. Also figured out how to dynamically update the base template's count of unread messages when messages are read.
author Brian Neal <bgneal@gmail.com>
date Tue, 03 May 2011 02:56:58 +0000
parents 7e8d2dda99e3
children ddd69a8e07c7
rev   line source
gremmie@1 1 """urls for the weblinks application"""
gremmie@1 2 from django.conf.urls.defaults import *
gremmie@1 3
gremmie@1 4 urlpatterns = patterns('weblinks.views',
gremmie@1 5 url(r'^$', 'link_index', name='weblinks-main'),
bgneal@242 6 url(r'^add/$', 'add_link', name='weblinks-add_link'),
bgneal@242 7 url(r'^add/thanks/$', 'add_thanks', name='weblinks-add_thanks'),
bgneal@242 8 url(r'^category/(?P<slug>[\w\d-]+)/(?P<sort>title|date|rating|hits)/$',
gremmie@1 9 'view_links',
gremmie@1 10 name='weblinks-view_links'),
bgneal@20 11 url(r'^detail/(\d+)/$',
bgneal@20 12 'link_detail',
bgneal@20 13 name='weblinks-link_detail'),
bgneal@242 14 url(r'^new/$', 'new_links', name='weblinks-new_links'),
bgneal@242 15 url(r'^popular/$', 'popular_links', name='weblinks-popular_links'),
bgneal@242 16 url(r'^random/$', 'random_link', name='weblinks-random_link'),
bgneal@242 17 url(r'^report/(\d+)/$', 'report_link', name='weblinks-report_link'),
bgneal@165 18 url(r'^visit/(\d+)/$', 'visit', name="weblinks-visit"),
gremmie@1 19 )