Merge branch 'onelab' of ssh://git.onelab.eu/git/myslice into onelab
[myslice.git] / myslice / urls.py
1 from django.conf.urls import patterns, include, url
2 from django.conf      import settings
3 from django.contrib import admin
4
5 # Uncomment the next two lines to enable the admin:
6 # from django.contrib import admin
7 # admin.autodiscover()
8
9 # to enable insert_above stuff
10 from django.template.loader import add_to_builtins
11 add_to_builtins('insert_above.templatetags.insert_tags')
12
13 from settings import auxiliaries, INSTALLED_APPS
14
15 import portal.platformsview
16 import portal.dashboardview
17 import portal.homeview
18
19 home_view=portal.homeview.HomeView.as_view()
20 dashboard_view=portal.dashboardview.DashboardView.as_view()
21 platforms_view=portal.platformsview.PlatformsView.as_view()
22
23 #### high level choices
24 # main entry point (set to the / URL)
25 # beware that if this view is broken you end up in an endless cycle...
26 # maybe platforms_view would be best on the longer run
27 the_default_view=home_view
28 # where to be redirected after login
29 the_after_login_view=dashboard_view
30 # where to redirect when login is required
31 # might need another one ?
32 the_login_view=home_view
33 admin.autodiscover()
34 urls = [
35     '',
36     # Examples:
37     # url(r'^$', 'myslice.views.home', name='home'),
38     # url(r'^myslice/', include('myslice.foo.urls')),
39     # Uncomment the admin/doc line below to enable admin documentation:
40     # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
41     # Uncomment the next line to enable the admin:
42      url(r'^admin/', include(admin.site.urls)),
43     #
44     # default / view
45     (r'^/?$', the_default_view),
46     #
47     # login / logout
48     (r'^login-ok/?$', the_after_login_view, {'state': 'Welcome to MySlice'} ),
49     #
50     # seems to be what login_required uses to redirect ...
51     (r'^accounts/login/$', the_login_view),
52     (r'^login/?$', the_login_view),
53     (r'^logout/?$', 'auth.views.logout_user'),
54     #
55     # the manifold proxy
56     (r'^manifold/proxy/(?P<format>\w+)/?$', 'manifoldapi.manifoldproxy.proxy'),
57     #
58     #
59     # RESTful interface
60     (r'^rest/(?P<object_type>[^/]+)/(?P<object_name>[^/]+)?/?$', 'rest.dispatch'),
61     (r'^datatable/(?P<object_type>[^/]+)/(?P<object_name>[^/]+)?/?$', 'rest.dispatch'),
62     #
63     #
64     #(r'^view/?', include('view.urls')),
65     #(r'^list/slices', 'view.list.slices'),
66     (r'^list/(?P<object_type>[^/]+)', 'rest.list'),
67     #
68     #
69     # Portal
70     url(r'^portal/', include('portal.urls')),
71 ]
72
73 #this one would not match the convention
74 # url(r'^debug/', include('debug_platform.urls')),
75 # but it was commented out anyways
76 for aux in auxiliaries:
77     if aux in INSTALLED_APPS:
78         urls.append ( url ( r'^%s/'%aux, include ('%s.urls'%aux )))
79
80 urlpatterns = patterns(*urls)