summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/urls.py
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2014-11-28 20:12:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-18 10:24:07 +0000
commit1605cd37dbfcd75043f57dd527e0bfc0a79e1e78 (patch)
tree505bf86cdde6993010c5a153d153b3206ab98cf2 /bitbake/lib/toaster/toastergui/urls.py
parent13141af70813d84b27e41d7a6e5792c748b3ae90 (diff)
downloadpoky-1605cd37dbfcd75043f57dd527e0bfc0a79e1e78.tar.gz
bitbake: toaster: Add import layer feature.
This feature allows users to import layers from git into their current project and associate it with the release of the current project and the dependencies for the newly imported layer with existing layers. It will also resolve the child dependencies of the dependencies added. [YOCTO #6595] (Bitbake rev: 017f5c746e894f9d87d927c848386459ea332378) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r--bitbake/lib/toaster/toastergui/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index b60f7614af..6e1b0ab913 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -76,6 +76,7 @@ urlpatterns = patterns('toastergui.views',
76 76
77 url(r'^layers/$', 'layers', name='layers'), 77 url(r'^layers/$', 'layers', name='layers'),
78 url(r'^layer/(?P<layerid>\d+)/$', 'layerdetails', name='layerdetails'), 78 url(r'^layer/(?P<layerid>\d+)/$', 'layerdetails', name='layerdetails'),
79 url(r'^layer/$', 'layerdetails', name='layerdetails'),
79 url(r'^targets/$', 'targets', name='targets'), 80 url(r'^targets/$', 'targets', name='targets'),
80 url(r'^machines/$', 'machines', name='machines'), 81 url(r'^machines/$', 'machines', name='machines'),
81 82
@@ -92,6 +93,7 @@ urlpatterns = patterns('toastergui.views',
92 url(r'^xhr_projectedit/(?P<pid>\d+)/$', 'xhr_projectedit', name='xhr_projectedit'), 93 url(r'^xhr_projectedit/(?P<pid>\d+)/$', 'xhr_projectedit', name='xhr_projectedit'),
93 94
94 url(r'^xhr_datatypeahead/$', 'xhr_datatypeahead', name='xhr_datatypeahead'), 95 url(r'^xhr_datatypeahead/$', 'xhr_datatypeahead', name='xhr_datatypeahead'),
96 url(r'^xhr_importlayer/$', 'xhr_importlayer', name='xhr_importlayer'),
95 97
96 98
97 # default redirection 99 # default redirection