projects/urls.py @ b1e6fe413102

Switch the RSS link to point to feedburner.
author Steve Losh <steve@stevelosh.com>
date Thu, 18 Jun 2009 01:23:07 -0400
parents 9f1be6d74c1b
children (none)
from django.conf.urls.defaults import *

urlpatterns = patterns('projects.views',
    url(r'^$',         'list',    name='project-list'),
    url(r'^comment/$', 'comment', name='project-post-comment'),
    url(r'^(.*)/$',    'project', name='project-view'),
)