diff options
author | Michael Wood <michael.g.wood@intel.com> | 2015-11-04 15:14:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 13:29:17 +0000 |
commit | 43f0a05fa4da39be3ed84a49a3fba6951110a8fd (patch) | |
tree | 48173b37ac8a30c8b6daccb7c2f307d8134803fc /bitbake/lib/toaster/toastergui/urls.py | |
parent | 2cf55afb9714827401500c631d95d0fc3a10efdd (diff) | |
download | poky-43f0a05fa4da39be3ed84a49a3fba6951110a8fd.tar.gz |
bitbake: toaster: views Add view to download custom recipe
View to provide the custom recipe download feature. The recipe is
generated on-demand to make sure that it is the most current version of
the Custom recipe.
(Bitbake rev: 2101c854bb2d7ff1e3a4f00ad4d33d77859439ed)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: brian avery <avery.brian@gmail.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.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py index c8c1c6a1fe..2164c4c8f7 100644 --- a/bitbake/lib/toaster/toastergui/urls.py +++ b/bitbake/lib/toaster/toastergui/urls.py | |||
@@ -140,6 +140,9 @@ urlpatterns = patterns('toastergui.views', | |||
140 | 'customrecipe', | 140 | 'customrecipe', |
141 | name="customrecipe"), | 141 | name="customrecipe"), |
142 | 142 | ||
143 | url(r'^project/(?P<pid>\d+)/customrecipe/(?P<recipe_id>\d+)/download$', | ||
144 | 'customrecipe_download', | ||
145 | name="customrecipedownload"), | ||
143 | 146 | ||
144 | 147 | ||
145 | # typeahead api end points | 148 | # typeahead api end points |