SEESenv/web/hgbook/urls.py
changeset 11 a7bd4bca6f6e
parent 8 d7db9561766e
child 13 ead1752a58a8
--- 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<url>.*)/$', 'django.contrib.syndication.views.feed',
+    (r'^/feeds/(?P<url>.*)/$', '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<path>.*)$', 'django.views.static.serve',
+     (r'^/html/(?P<path>.*)$', 'django.views.static.serve',
      {'document_root': os.path.realpath(os.path.dirname(
         sys.modules[__name__].__file__) + '/../html/')}),
-     (r'^/review/support/(?P<path>.*)$', 'django.views.static.serve',
+     (r'^/support/(?P<path>.*)$', 'django.views.static.serve',
      {'document_root': os.path.realpath(os.path.dirname(
         sys.modules[__name__].__file__) + '/../support/')}),