6 admin.autodiscover() |
6 admin.autodiscover() |
7 |
7 |
8 feeds = { |
8 feeds = { |
9 'comments': feeds.Comments, |
9 'comments': feeds.Comments, |
10 } |
10 } |
11 |
11 print >> sys.stderr,"in urls.py"+os.path.dirname(sys.modules[__name__].__file__) |
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'^$', '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', |
23 {'document_root': os.path.realpath(os.path.dirname( |
23 {'document_root': os.path.realpath(os.path.dirname( |
24 sys.modules[__name__].__file__) + '/../html/')}), |
24 sys.modules[__name__].__file__) + '/../html/')}), |
25 (r'^support/(?P<path>.*)$', 'django.views.static.serve', |
25 (r'^support/(?P<path>.*)$', 'django.views.static.serve', |