diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r-- | bitbake/lib/toaster/toastergui/urls.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py index 7c4f894b9c..30f006348a 100644 --- a/bitbake/lib/toaster/toastergui/urls.py +++ b/bitbake/lib/toaster/toastergui/urls.py | |||
@@ -63,12 +63,21 @@ urlpatterns = patterns('toastergui.views', | |||
63 | 63 | ||
64 | 64 | ||
65 | # urls not linked from the dashboard | 65 | # urls not linked from the dashboard |
66 | url(r'^layers/$', 'layer', name='all-layers'), | ||
67 | url(r'^layerversions/(?P<layerversion_id>\d+)/recipes/.*$', 'layer_versions_recipes', name='layer_versions_recipes'), | 66 | url(r'^layerversions/(?P<layerversion_id>\d+)/recipes/.*$', 'layer_versions_recipes', name='layer_versions_recipes'), |
68 | 67 | ||
69 | # project URLs | 68 | # project URLs |
70 | url(r'^newproject/$', 'newproject', name='newproject'), | 69 | url(r'^newproject/$', 'newproject', name='newproject'), |
70 | url(r'^importlayer/$', 'importlayer', name='importlayer'), | ||
71 | |||
72 | url(r'^layers/$', 'layers', name='layers'), | ||
73 | url(r'^layer/(?P<layerid>\d+)/$', 'layerdetails', name='layerdetails'), | ||
74 | url(r'^targets/$', 'targets', name='targets'), | ||
75 | url(r'^machines/$', 'machines', name='machines'), | ||
76 | |||
71 | url(r'^project/(?P<pid>\d+)/$', 'project', name='project'), | 77 | url(r'^project/(?P<pid>\d+)/$', 'project', name='project'), |
78 | url(r'^project/(?P<pid>\d+)/configuration$', 'projectconf', name='projectconf'), | ||
79 | url(r'^project/(?P<pid>\d+)/builds$', 'projectbuilds', name='projectbuild'), | ||
80 | |||
72 | url(r'^xhr_projectbuild/(?P<pid>\d+)/$', 'xhr_projectbuild', name='xhr_projectbuild'), | 81 | url(r'^xhr_projectbuild/(?P<pid>\d+)/$', 'xhr_projectbuild', name='xhr_projectbuild'), |
73 | url(r'^xhr_projectedit/(?P<pid>\d+)/$', 'xhr_projectedit', name='xhr_projectedit'), | 82 | url(r'^xhr_projectedit/(?P<pid>\d+)/$', 'xhr_projectedit', name='xhr_projectedit'), |
74 | 83 | ||