view gpp/downloads/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 27bee3ac85e6
children 41411066b16d
line wrap: on
line source
"""
URLs for the downloads application.
"""
from django.conf.urls.defaults import *

urlpatterns = patterns('downloads.views',
    url(r'^$', 'index', name='downloads-index'),
    url(r'^add/$', 'add', name='downloads-add'),
    url(r'^category/(?P<slug>[\w\d-]+)/(?P<sort>title|date|rating|hits)/$',
       'category',
       name='downloads-category'),
    url(r'^details/(\d+)/$', 'details', name='downloads-details'),
    url(r'^(\d+)/$', 'download', name='downloads-download'),
    url(r'^new/$', 'new', name='downloads-new'),
    url(r'^popular/$', 'popular', name='downloads-popular'),
    url(r'^random/$', 'random_download', name='downloads-random'),
    url(r'^rate/$', 'rate_download', name='downloads-rate'),
    url(r'^rating/$', 'rating', name='downloads-rating'),
    url(r'^thanks/$', 'thanks', name='downloads-add_thanks'),
)