take sliceview out of trash/
[myslice.git] / myslice / urls.py
1 from django.conf.urls import patterns, include, url
2 from django.conf      import settings
3
4 # Uncomment the next two lines to enable the admin:
5 # from django.contrib import admin
6 # admin.autodiscover()
7
8 # to enable insert_above stuff
9 from django.template.loader import add_to_builtins
10 add_to_builtins('insert_above.templatetags.insert_tags')
11
12 # main entry point (set to the / URL)
13 default_view='trash.pluginview.test_plugin_view'
14 #default_view='portal.views.PlatformsView'
15 # where to be redirected after login
16 after_login_view='trash.dashboard.dashboard_view'
17
18 urlpatterns = patterns(
19     '',
20     # Examples:
21     # url(r'^$', 'myslice.views.home', name='home'),
22     # url(r'^myslice/', include('myslice.foo.urls')),
23     # Uncomment the admin/doc line below to enable admin documentation:
24     # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
25     # Uncomment the next line to enable the admin:
26     # url(r'^admin/', include(admin.site.urls)),
27     #
28     # default / view
29     #
30     (r'^/?$', default_view),
31     #
32     # login / logout
33     #
34     (r'^login-ok/?$', after_login_view),
35     # seems to be what login_required uses to redirect ...
36     (r'^accounts/login/$', 'auth.views.login_user'),
37     (r'^login/?$', 'auth.views.login_user'),
38     (r'^logout/?$', 'auth.views.logout_user'),
39     #
40     # the manifold proxy
41     #
42     (r'^manifold/proxy/(?P<format>\w+)/?$', 'manifold.manifoldproxy.proxy'),
43     # 
44     # the slice view
45     #
46     (r'^slice/?$',                        'portal.sliceview.slice_view'),
47     (r'^slice/(?P<slicename>[\w\.]+)/?$', 'portal.sliceview.slice_view'),
48     # various trash views
49     #
50     (r'^tab/?$',                          'trash.sampleviews.tab_view'),
51     (r'^scroll/?$',                       'trash.sampleviews.scroll_view'),
52     (r'^plugin/?$',                       'trash.pluginview.test_plugin_view'),
53     (r'^dashboard/?$',                    'trash.dashboard.dashboard_view'),
54     # Portal
55     url(r'^portal/', include('portal.urls')),
56     # Portal
57     url(r'^sample/', include('sample.urls')),
58     # Debug
59     url(r'^debug/', include('debug_platform.urls')),
60     # Static files
61     (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}),
62
63
64 )