equal
deleted
inserted
replaced
12 urlpatterns = patterns('', |
12 urlpatterns = patterns('', |
13 (r'^comments/', include('hgbook.comments.urls')), |
13 (r'^comments/', include('hgbook.comments.urls')), |
14 |
14 |
15 (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', |
15 (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', |
16 {'feed_dict': feeds}), |
16 {'feed_dict': feeds}), |
17 (r'^$', 'hgbook.comments.views.index'), |
17 (r'^index$', 'hgbook.comments.views.index'), |
18 |
18 |
19 (r'^search/', 'hgbook.comments.views.search'), |
19 (r'^search/', 'hgbook.comments.views.search'), |
20 |
20 |
21 # Only uncomment this for local testing without Apache. |
21 # Only uncomment this for local testing without Apache. |
22 (r'^html/(?P<path>.*)$', 'django.views.static.serve', |
22 (r'^html/(?P<path>.*)$', 'django.views.static.serve', |