annotate gpp/weblinks/urls.py @ 445:e9f203c5f5bb
Attempting to fix #218; update the topic last visit time with 'now' when viewing the last page of a topic, otherwise use the creation time of the last post on the page.
author |
Brian Neal <bgneal@gmail.com> |
date |
Wed, 08 Jun 2011 00:24:41 +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 )
|