diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r-- | bitbake/lib/toaster/toastergui/urls.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py index 5a79f88eb4..bd3eb401de 100644 --- a/bitbake/lib/toaster/toastergui/urls.py +++ b/bitbake/lib/toaster/toastergui/urls.py | |||
@@ -96,6 +96,12 @@ urlpatterns = patterns('toastergui.views', | |||
96 | 'title' : 'All compatible recipes' }, | 96 | 'title' : 'All compatible recipes' }, |
97 | name="projecttargets"), | 97 | name="projecttargets"), |
98 | 98 | ||
99 | url(r'^project/(?P<pid>\d+)/availablerecipes/$', | ||
100 | tables.ProjectLayersRecipesTable.as_view(template_name="generic-toastertable-page.html"), | ||
101 | { 'table_name': tables.ProjectLayersRecipesTable.__name__.lower(), | ||
102 | 'title' : 'Recipes available for layers in the current project' }, | ||
103 | name="projectavailabletargets"), | ||
104 | |||
99 | url(r'^project/(?P<pid>\d+)/layers/$', | 105 | url(r'^project/(?P<pid>\d+)/layers/$', |
100 | tables.LayersTable.as_view(template_name="generic-toastertable-page.html"), | 106 | tables.LayersTable.as_view(template_name="generic-toastertable-page.html"), |
101 | { 'table_name': tables.LayersTable.__name__.lower(), | 107 | { 'table_name': tables.LayersTable.__name__.lower(), |
@@ -118,6 +124,8 @@ urlpatterns = patterns('toastergui.views', | |||
118 | 'title' : 'All machines in layer' }, | 124 | 'title' : 'All machines in layer' }, |
119 | name=tables.LayerMachinesTable.__name__.lower()), | 125 | name=tables.LayerMachinesTable.__name__.lower()), |
120 | 126 | ||
127 | |||
128 | url(r'^xhr_datatypeahead/(?P<pid>\d+)$', 'xhr_datatypeahead', name='xhr_datatypeahead'), | ||
121 | url(r'^xhr_configvaredit/(?P<pid>\d+)$', 'xhr_configvaredit', name='xhr_configvaredit'), | 129 | url(r'^xhr_configvaredit/(?P<pid>\d+)$', 'xhr_configvaredit', name='xhr_configvaredit'), |
122 | 130 | ||
123 | url(r'^xhr_importlayer/$', 'xhr_importlayer', name='xhr_importlayer'), | 131 | url(r'^xhr_importlayer/$', 'xhr_importlayer', name='xhr_importlayer'), |