# HG changeset patch # User amit@thunder # Date 1266756115 -19800 # Node ID d7db9561766ea630c91f4d91e5f57d9206c0267a # Parent e9bf8b47a8093c16e6e8081708614350646726d0 some changes to urls.py just testing diff -r e9bf8b47a809 -r d7db9561766e SEESenv/web/hgbook/urls.py --- a/SEESenv/web/hgbook/urls.py Sun Feb 21 18:00:14 2010 +0530 +++ b/SEESenv/web/hgbook/urls.py Sun Feb 21 18:11:55 2010 +0530 @@ -10,19 +10,19 @@ } urlpatterns = patterns('', - (r'^comments/', include('hgbook.comments.urls')), + (r'^/review/comments/', include('hgbook.comments.urls')), - (r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', + (r'^/review/feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), - (r'^index$', 'hgbook.comments.views.index'), + (r'^review/$', 'hgbook.comments.views.index'), - (r'^search/', 'hgbook.comments.views.search'), + (r'^/review/search/', 'hgbook.comments.views.search'), # Only uncomment this for local testing without Apache. - (r'^html/(?P.*)$', 'django.views.static.serve', + (r'^/review/html/(?P.*)$', 'django.views.static.serve', {'document_root': os.path.realpath(os.path.dirname( sys.modules[__name__].__file__) + '/../html/')}), - (r'^support/(?P.*)$', 'django.views.static.serve', + (r'^/review/support/(?P.*)$', 'django.views.static.serve', {'document_root': os.path.realpath(os.path.dirname( sys.modules[__name__].__file__) + '/../support/')}),