annotate gpp/weblinks/urls.py @ 339:b871892264f2

Adding the sg101 IRC bot code to SVN. This code is pretty rough and needs love, but it gets the job done (one of my first Python apps). This fixes #150.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Feb 2011 21:27:49 +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 )