diff options
author | Michael Wood <michael.g.wood@intel.com> | 2015-06-19 16:10:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-26 09:27:33 +0100 |
commit | d93bc4cf4843afa37d08d2fc4a229016047563c1 (patch) | |
tree | 31638897f0b9555ea483c01960949d829e9ae2bf /bitbake/lib/toaster/toastermain | |
parent | df48243970fac633586eb99c9baf3090123c681c (diff) | |
download | poky-d93bc4cf4843afa37d08d2fc4a229016047563c1.tar.gz |
bitbake: toaster: Add url pattern for backward compatibility
This adds an url to match the old orm application.
(Bitbake rev: 0a8e740e18333da981b24a76db4c891845e5df78)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastermain')
-rw-r--r-- | bitbake/lib/toaster/toastermain/urls.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastermain/urls.py b/bitbake/lib/toaster/toastermain/urls.py index 26ad3a2620..521588a6ad 100644 --- a/bitbake/lib/toaster/toastermain/urls.py +++ b/bitbake/lib/toaster/toastermain/urls.py | |||
@@ -40,6 +40,10 @@ urlpatterns = patterns('', | |||
40 | # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), | 40 | # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), |
41 | 41 | ||
42 | 42 | ||
43 | # This is here to maintain backward compatibility and will be deprecated | ||
44 | # in the future. | ||
45 | url(r'^orm/eventfile$', 'bldcollector.views.eventfile'), | ||
46 | |||
43 | # if no application is selected, we have the magic toastergui app here | 47 | # if no application is selected, we have the magic toastergui app here |
44 | url(r'^$', never_cache(RedirectView.as_view(url='/toastergui/'))), | 48 | url(r'^$', never_cache(RedirectView.as_view(url='/toastergui/'))), |
45 | ) | 49 | ) |