X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Furls.py;h=5a8f3a5f3f9b329f9d85d36e6fc62052d60a9360;hb=9b89a32f1ae0a1e0618a9cc11138a766a4ba870b;hp=f16f93641b6b2b3db8b89631e5a29e094a99d29e;hpb=fcebef2a30c4061ef8b7e302ad9e88554ed6803a;p=unfold.git diff --git a/myslice/urls.py b/myslice/urls.py index f16f9364..5a8f3a5f 100644 --- a/myslice/urls.py +++ b/myslice/urls.py @@ -9,9 +9,9 @@ from django.template.loader import add_to_builtins add_to_builtins('insert_above.templatetags.insert_tags') # main entry point (set to the / URL) -default_view='engine.views.test_plugin_view' +default_view='trash.pluginview.test_plugin_view' # where to be redirected after login -after_login_view='myslice.dashboard.dashboard_view' +after_login_view='trash.dashboard.dashboard_view' urlpatterns = patterns( '', @@ -31,10 +31,10 @@ urlpatterns = patterns( (r'^login/?$', 'auth.views.login_user'), (r'^logout/?$', 'auth.views.logout_user'), (r'^logout/confirm/?$', 'auth.views.do_logout_user'), - (r'^slice/?$', 'slice.views.fake_slice_view'), - (r'^slice/(?P[\w\.]+)/?$', 'slice.views.fake_slice_view'), - (r'^tab/?$', 'slice.views.tab_view'), - (r'^scroll/?$', 'slice.views.scroll_view'), - (r'^plugin/?$', 'engine.views.test_plugin_view'), - (r'^dashboard/?$', 'myslice.dashboard.dashboard_view'), + (r'^slice/?$', 'trash.sampleviews.slice_view'), + (r'^slice/(?P[\w\.]+)/?$', 'trash.sampleviews.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'), )