diff -r aff1900403ee -r a7bd4bca6f6e SEESenv/web/hgbook/urls.py --- a/SEESenv/web/hgbook/urls.py Sun Feb 21 23:03:28 2010 +0530 +++ b/SEESenv/web/hgbook/urls.py Sun Feb 21 23:32:34 2010 +0530 @@ -10,19 +10,19 @@ } urlpatterns = patterns('', - (r'^/review/comments/', include('hgbook.comments.urls')), + (r'^/comments/', include('hgbook.comments.urls')), - (r'^/review/feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', + (r'^/feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), - (r'^review/$', 'hgbook.comments.views.index'), + (r'^/index$', 'hgbook.comments.views.index'), - (r'^/review/search/', 'hgbook.comments.views.search'), + (r'^/search/', 'hgbook.comments.views.search'), # Only uncomment this for local testing without Apache. - (r'^/review/html/(?P.*)$', 'django.views.static.serve', + (r'^/html/(?P.*)$', 'django.views.static.serve', {'document_root': os.path.realpath(os.path.dirname( sys.modules[__name__].__file__) + '/../html/')}), - (r'^/review/support/(?P.*)$', 'django.views.static.serve', + (r'^/support/(?P.*)$', 'django.views.static.serve', {'document_root': os.path.realpath(os.path.dirname( sys.modules[__name__].__file__) + '/../support/')}),