diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2014-09-09 11:47:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-30 13:39:49 +0000 |
commit | 960580cb70ab1c775b49f8a40d41632c080b3cbb (patch) | |
tree | 173570e0a9a80b14926c9dbbac995a39c49fbdcb /bitbake/lib/toaster/toastergui/urls.py | |
parent | 1a463ab98ec1220b22a721a1f88ff5af61c33dc3 (diff) | |
download | poky-960580cb70ab1c775b49f8a40d41632c080b3cbb.tar.gz |
bitbake: toaster: fix Project page in order to trigger builds
This patch rewrites the Project page and the additional
infrastructure in order to fix a bug that makes triggering
builds through UI impossible, and to introduce data feeds
for suggestions for the user.
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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py index a9c05922c2..e642e32036 100644 --- a/bitbake/lib/toaster/toastergui/urls.py +++ b/bitbake/lib/toaster/toastergui/urls.py | |||
@@ -81,6 +81,8 @@ urlpatterns = patterns('toastergui.views', | |||
81 | 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'), |
82 | 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'), |
83 | 83 | ||
84 | url(r'^xhr_datatypeahead/$', 'xhr_datatypeahead', name='xhr_datatypeahead'), | ||
85 | |||
84 | 86 | ||
85 | # default redirection | 87 | # default redirection |
86 | url(r'^$', RedirectView.as_view( url= 'builds/')), | 88 | url(r'^$', RedirectView.as_view( url= 'builds/')), |