diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-03-13 02:51:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-21 14:47:52 +0000 |
commit | 4f812cd569b0f6f5f1b92265929d6edfeae89b84 (patch) | |
tree | d571a6e121b654b353c3e2dee8df93214edd61c1 /bitbake/lib/toaster/toastergui | |
parent | c9065cb95b585ed5fda74ecfd19d2b78d921eed1 (diff) | |
download | poky-4f812cd569b0f6f5f1b92265929d6edfeae89b84.tar.gz |
bitbake: toaster: Remove trailing spaces from 'name'
Those extra spaces were showing in the heading of the
filter modal dialogs.
(Bitbake rev: ed958d288de92faf8bd17a067c7a7f719dacd27d)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui')
-rw-r--r-- | bitbake/lib/toaster/toastergui/views.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index ddeb992ff1..7f75425af9 100644 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
@@ -240,7 +240,7 @@ def builds(request): | |||
240 | 'total_count' : queryset_with_search.count(), | 240 | 'total_count' : queryset_with_search.count(), |
241 | # Specifies the display of columns for the table, appearance in "Edit columns" box, toggling default show/hide, and specifying filters for columns | 241 | # Specifies the display of columns for the table, appearance in "Edit columns" box, toggling default show/hide, and specifying filters for columns |
242 | 'tablecols' : [ | 242 | 'tablecols' : [ |
243 | {'name': 'Outcome ', # column with a single filter | 243 | {'name': 'Outcome', # column with a single filter |
244 | 'qhelp' : "The outcome tells you if a build completed successfully or failed", # the help button content | 244 | 'qhelp' : "The outcome tells you if a build completed successfully or failed", # the help button content |
245 | 'dclass' : "span2", # indication about column width; comes from the design | 245 | 'dclass' : "span2", # indication about column width; comes from the design |
246 | 'orderfield': _get_toggle_order(request, "outcome"), # adds ordering by the field value; default ascending unless clicked from ascending into descending | 246 | 'orderfield': _get_toggle_order(request, "outcome"), # adds ordering by the field value; default ascending unless clicked from ascending into descending |
@@ -256,18 +256,18 @@ def builds(request): | |||
256 | ] | 256 | ] |
257 | } | 257 | } |
258 | }, | 258 | }, |
259 | {'name': 'Target ', # default column, disabled box, with just the name in the list | 259 | {'name': 'Target', # default column, disabled box, with just the name in the list |
260 | 'qhelp': "This is the build target(s): one or more recipes or image recipes", | 260 | 'qhelp': "This is the build target(s): one or more recipes or image recipes", |
261 | 'orderfield': _get_toggle_order(request, "target__target"), | 261 | 'orderfield': _get_toggle_order(request, "target__target"), |
262 | 'ordericon':_get_toggle_order_icon(request, "target__target"), | 262 | 'ordericon':_get_toggle_order_icon(request, "target__target"), |
263 | }, | 263 | }, |
264 | {'name': 'Machine ', | 264 | {'name': 'Machine', |
265 | 'qhelp': "The machine is the hardware for which you are building", | 265 | 'qhelp': "The machine is the hardware for which you are building", |
266 | 'orderfield': _get_toggle_order(request, "machine"), | 266 | 'orderfield': _get_toggle_order(request, "machine"), |
267 | 'ordericon':_get_toggle_order_icon(request, "machine"), | 267 | 'ordericon':_get_toggle_order_icon(request, "machine"), |
268 | 'dclass': 'span3' | 268 | 'dclass': 'span3' |
269 | }, # a slightly wider column | 269 | }, # a slightly wider column |
270 | {'name': 'Started on ', 'clclass': 'started_on', 'hidden' : 1, # this is an unchecked box, which hides the column | 270 | {'name': 'Started on', 'clclass': 'started_on', 'hidden' : 1, # this is an unchecked box, which hides the column |
271 | 'qhelp': "The date and time you started the build", | 271 | 'qhelp': "The date and time you started the build", |
272 | 'orderfield': _get_toggle_order(request, "started_on", True), | 272 | 'orderfield': _get_toggle_order(request, "started_on", True), |
273 | 'ordericon':_get_toggle_order_icon(request, "started_on"), | 273 | 'ordericon':_get_toggle_order_icon(request, "started_on"), |
@@ -280,7 +280,7 @@ def builds(request): | |||
280 | ] | 280 | ] |
281 | } | 281 | } |
282 | }, | 282 | }, |
283 | {'name': 'Completed on ', | 283 | {'name': 'Completed on', |
284 | 'qhelp': "The date and time the build finished", | 284 | 'qhelp': "The date and time the build finished", |
285 | 'orderfield': _get_toggle_order(request, "completed_on", True), | 285 | 'orderfield': _get_toggle_order(request, "completed_on", True), |
286 | 'ordericon':_get_toggle_order_icon(request, "completed_on"), | 286 | 'ordericon':_get_toggle_order_icon(request, "completed_on"), |
@@ -293,7 +293,7 @@ def builds(request): | |||
293 | ] | 293 | ] |
294 | } | 294 | } |
295 | }, | 295 | }, |
296 | {'name': 'Failed tasks ', 'clclass': 'failed_tasks', # specifing a clclass will enable the checkbox | 296 | {'name': 'Failed tasks', 'clclass': 'failed_tasks', # specifing a clclass will enable the checkbox |
297 | 'qhelp': "How many tasks failed during the build", | 297 | 'qhelp': "How many tasks failed during the build", |
298 | 'filter' : {'class' : 'failed_tasks', | 298 | 'filter' : {'class' : 'failed_tasks', |
299 | 'label': 'Show:', | 299 | 'label': 'Show:', |
@@ -303,7 +303,7 @@ def builds(request): | |||
303 | ] | 303 | ] |
304 | } | 304 | } |
305 | }, | 305 | }, |
306 | {'name': 'Errors ', 'clclass': 'errors_no', | 306 | {'name': 'Errors', 'clclass': 'errors_no', |
307 | 'qhelp': "How many errors were encountered during the build (if any)", | 307 | 'qhelp': "How many errors were encountered during the build (if any)", |
308 | 'orderfield': _get_toggle_order(request, "errors_no", True), | 308 | 'orderfield': _get_toggle_order(request, "errors_no", True), |
309 | 'ordericon':_get_toggle_order_icon(request, "errors_no"), | 309 | 'ordericon':_get_toggle_order_icon(request, "errors_no"), |
@@ -327,7 +327,7 @@ def builds(request): | |||
327 | ] | 327 | ] |
328 | } | 328 | } |
329 | }, | 329 | }, |
330 | {'name': 'Time ', 'clclass': 'time', 'hidden' : 1, | 330 | {'name': 'Time', 'clclass': 'time', 'hidden' : 1, |
331 | 'qhelp': "How long it took the build to finish", | 331 | 'qhelp': "How long it took the build to finish", |
332 | 'orderfield': _get_toggle_order(request, "timespent", True), | 332 | 'orderfield': _get_toggle_order(request, "timespent", True), |
333 | 'ordericon':_get_toggle_order_icon(request, "timespent"), | 333 | 'ordericon':_get_toggle_order_icon(request, "timespent"), |