diff options
| author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-05-11 18:58:25 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 18:04:09 +0100 |
| commit | c5a16235b8b56102703bc264768ba386ebe90611 (patch) | |
| tree | 1a3822b4225ac5de88cc812e14ec0080ffec0a4b /bitbake/lib/toaster/toastergui/urls.py | |
| parent | 35d75c83522a050f0e35a33f73317461e2adf554 (diff) | |
| download | poky-c5a16235b8b56102703bc264768ba386ebe90611.tar.gz | |
bitbake: toaster: fix html5 compliance
This patch brings needed changes in all views so that
each view passes the HTML5 compliance test by the
W3C Markup Service.
(Bitbake rev: 6e60ed8ab71e4300ab571f42b7af5011086df697)
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.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py index de8c62cd62..d686c967dc 100644 --- a/bitbake/lib/toaster/toastergui/urls.py +++ b/bitbake/lib/toaster/toastergui/urls.py | |||
| @@ -53,7 +53,7 @@ urlpatterns = patterns('toastergui.views', | |||
| 53 | # images are known as targets in the internal model | 53 | # images are known as targets in the internal model |
| 54 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)$', 'target', name='target'), | 54 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)$', 'target', name='target'), |
| 55 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)/targetpkg$', 'targetpkg', name='targetpkg'), | 55 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)/targetpkg$', 'targetpkg', name='targetpkg'), |
| 56 | url(r'^dentries/build/(?P<build_id>\d+)/target/(?P<target_id>\d+)$', 'dirinfo_ajax', name='dirinfo_ajax'), | 56 | url(r'^dentries/build/(?P<build_id>\d+)/target/(?P<target_id>\d+)$', 'xhr_dirinfo', name='dirinfo_ajax'), |
| 57 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)/dirinfo$', 'dirinfo', name='dirinfo'), | 57 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)/dirinfo$', 'dirinfo', name='dirinfo'), |
| 58 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)/dirinfo_filepath/_(?P<file_path>(?:/[^/\n]+)*)$', 'dirinfo', name='dirinfo_filepath'), | 58 | url(r'^build/(?P<build_id>\d+)/target/(?P<target_id>\d+)/dirinfo_filepath/_(?P<file_path>(?:/[^/\n]+)*)$', 'dirinfo', name='dirinfo_filepath'), |
| 59 | url(r'^build/(?P<build_id>\d+)/configuration$', 'configuration', name='configuration'), | 59 | url(r'^build/(?P<build_id>\d+)/configuration$', 'configuration', name='configuration'), |
| @@ -83,7 +83,7 @@ urlpatterns = patterns('toastergui.views', | |||
| 83 | 83 | ||
| 84 | url(r'^project/(?P<pid>\d+)/layers/$', 'layers', name='all-layers'), | 84 | url(r'^project/(?P<pid>\d+)/layers/$', 'layers', name='all-layers'), |
| 85 | url(r'^project/(?P<pid>\d+)/layer/(?P<layerid>\d+)$', 'layerdetails', name='layerdetails'), | 85 | url(r'^project/(?P<pid>\d+)/layer/(?P<layerid>\d+)$', 'layerdetails', name='layerdetails'), |
| 86 | url(r'^project/(?P<pid>\d+)/layer/$', lambda x: HttpResponseBadRequest(), name='base_layerdetails'), | 86 | url(r'^project/(?P<pid>\d+)/layer/$', lambda x,pid: HttpResponseBadRequest(), name='base_layerdetails'), |
| 87 | 87 | ||
| 88 | # the import layer is a project-specific functionality; | 88 | # the import layer is a project-specific functionality; |
| 89 | url(r'^project/(?P<pid>\d+)/importlayer$', 'importlayer', name='importlayer'), | 89 | url(r'^project/(?P<pid>\d+)/importlayer$', 'importlayer', name='importlayer'), |
| @@ -92,12 +92,12 @@ urlpatterns = patterns('toastergui.views', | |||
| 92 | url(r'^project/(?P<pid>\d+)/machines/$', 'machines', name='all-machines'), | 92 | url(r'^project/(?P<pid>\d+)/machines/$', 'machines', name='all-machines'), |
| 93 | 93 | ||
| 94 | url(r'^xhr_build/$', 'xhr_build', name='xhr_build'), | 94 | url(r'^xhr_build/$', 'xhr_build', name='xhr_build'), |
| 95 | url(r'^xhr_projectbuild/(?P<pid>\d+)/$', 'xhr_projectbuild', name='xhr_projectbuild'), | 95 | url(r'^xhr_projectbuild/(?P<pid>\d+)$', 'xhr_projectbuild', name='xhr_projectbuild'), |
| 96 | url(r'^xhr_projectinfo/$', 'xhr_projectinfo', name='xhr_projectinfo'), | 96 | url(r'^xhr_projectinfo/$', 'xhr_projectinfo', name='xhr_projectinfo'), |
| 97 | url(r'^xhr_projectedit/(?P<pid>\d+)/$', 'xhr_projectedit', name='xhr_projectedit'), | 97 | url(r'^xhr_projectedit/(?P<pid>\d+)$', 'xhr_projectedit', name='xhr_projectedit'), |
| 98 | url(r'^xhr_configvaredit/(?P<pid>\d+)/$', 'xhr_configvaredit', name='xhr_configvaredit'), | 98 | url(r'^xhr_configvaredit/(?P<pid>\d+)$', 'xhr_configvaredit', name='xhr_configvaredit'), |
| 99 | 99 | ||
| 100 | url(r'^xhr_datatypeahead/$', 'xhr_datatypeahead', name='xhr_datatypeahead'), | 100 | url(r'^xhr_datatypeahead/(?P<pid>\d+)$', 'xhr_datatypeahead', name='xhr_datatypeahead'), |
| 101 | url(r'^xhr_importlayer/$', 'xhr_importlayer', name='xhr_importlayer'), | 101 | url(r'^xhr_importlayer/$', 'xhr_importlayer', name='xhr_importlayer'), |
| 102 | url(r'^xhr_updatelayer/$', 'xhr_updatelayer', name='xhr_updatelayer'), | 102 | url(r'^xhr_updatelayer/$', 'xhr_updatelayer', name='xhr_updatelayer'), |
| 103 | 103 | ||
