~bkroeze/banjo/banjo

« back to all changes in this revision

Viewing changes to banjo/blog/urls.py

  • Committer: Bruce Kroeze
  • Date: 2008-09-03 21:36:45 UTC
  • Revision ID: bruce@invisible.dev-20080903213645-9qv65vv4qdgzsmbz
updating for Django trunk compatibility

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    (r'^category/(?P<category>.*)$', 'category_index', {}, 'banjo_default_category_index'),
52
52
    #(r'^.*/category/(?P<category>.*)$', 'category_index', {}, 'banjo_category_index'),
53
53
    (r'^(?P<blog>.*)/category/(?P<category>.*)$', 'category_index', {}, 'banjo_category_index'),
54
 
    (r'^comments/', include('django.contrib.comments.urls.comments')),
 
54
    (r'^comments/', include('django.contrib.comments.urls')),
55
55
    (r'^search/', 'search_page', {}, 'banjo_search')
56
56
)
57
57