summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-20 08:13:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-17 13:59:38 +0000
commitb2e5cab1b5798adea3bf5716492ccc7637dad6b3 (patch)
tree0a71ee23e4db1f5d95643e9337c4c0941b8ce337 /bitbake/lib/toaster/toastergui/templates
parentd24584f89680849f2cce83cc794b319d73dd554f (diff)
downloadast2050-yocto-poky-b2e5cab1b5798adea3bf5716492ccc7637dad6b3.zip
ast2050-yocto-poky-b2e5cab1b5798adea3bf5716492ccc7637dad6b3.tar.gz
bitbake: toaster: Not using task_color tag for execution heading
The modifications to the task_color tag in commit 23a7c338d387ac2ba13a7a1114a4abc75228c960 broke the styling of failed tasks in the tasks.html template. Undo the changes to the task_color tag and use an if statement instead to set the .muted class when the execution heading says "Not executed". (Bitbake rev: e3b3205674f606b927f1bf568202a592ca6453c9) 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/templates')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/task.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/task.html b/bitbake/lib/toaster/toastergui/templates/task.html
index af994fd..7c5b743 100644
--- a/bitbake/lib/toaster/toastergui/templates/task.html
+++ b/bitbake/lib/toaster/toastergui/templates/task.html
@@ -131,15 +131,16 @@
{% endif %}
{# Execution section #}
-<h2 {{task|task_color}}>
{% if task.task_executed %}
+ <h2>
Executed
<i class="icon-question-sign get-help heading-help" title="Executed tasks are those that need to run in order to generate the task output"></i>
- {% else %}
+ {% else %}
+ <h2 class="muted">
Not Executed
<i class="icon-question-sign get-help heading-help" title="Not executed tasks don't need to run because their outcome is provided by another task"></i>
- {% endif %}
-</h2>
+ {% endif %}
+ </h2>
<dl class="dl-horizontal">
<dt>
<i class="icon-question-sign get-help" title="To make builds more efficient, the build system detects changes in the 'inputs' to a given task by creating a 'task signature'. If the signature changes, the build system assumes the inputs have changed and the task needs to be rerun"></i>
OpenPOWER on IntegriCloud