X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Furls.py;h=6ab0fd9ee9625b724f11e2b8c2644fe2961d47d6;hb=eb9691015e43aa929eab9ed48f41a05363788a54;hp=ef1f30cebc7be1bf36244998870eb87c882def44;hpb=c381d920d9a359eab2b11cb15e88ab1f4e55a82e;p=myslice.git diff --git a/myslice/urls.py b/myslice/urls.py index ef1f30ce..6ab0fd9e 100644 --- a/myslice/urls.py +++ b/myslice/urls.py @@ -11,6 +11,7 @@ add_to_builtins('insert_above.templatetags.insert_tags') # main entry point (set to the / URL) default_view='trash.pluginview.test_plugin_view' +#default_view='portal.views.PlatformsView' # where to be redirected after login after_login_view='trash.dashboard.dashboard_view' @@ -39,15 +40,17 @@ urlpatterns = patterns( # the manifold proxy # (r'^manifold/proxy/(?P\w+)/?$', 'manifold.manifoldproxy.proxy'), + # + # the slice view # + (r'^slice/?$', 'portal.sliceview.slice_view'), + (r'^slice/(?P[\w\.]+)/?$', 'portal.sliceview.slice_view'), # various trash views # - (r'^tab/?$', 'trash.sampleviews.tab_view'), - (r'^scroll/?$', 'trash.sampleviews.scroll_view'), - (r'^plugin/?$', 'trash.pluginview.test_plugin_view'), - (r'^dashboard/?$', 'trash.dashboard.dashboard_view'), - (r'^slice/?$', 'trash.sliceview.slice_view'), - (r'^slice/(?P[\w\.]+)/?$', 'trash.sliceview.slice_view'), + (r'^tab/?$', 'trash.sampleviews.tab_view'), + (r'^scroll/?$', 'trash.sampleviews.scroll_view'), + (r'^plugin/?$', 'trash.pluginview.test_plugin_view'), + (r'^dashboard/?$', 'trash.dashboard.dashboard_view'), # Portal url(r'^portal/', include('portal.urls')), # Portal