summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/task.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/task.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/task.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/task.html b/bitbake/lib/toaster/toastergui/templates/task.html
index 5768262432..8773351fab 100644
--- a/bitbake/lib/toaster/toastergui/templates/task.html
+++ b/bitbake/lib/toaster/toastergui/templates/task.html
@@ -11,7 +11,8 @@
11 11
12{% block pagedetailinfomain %} 12{% block pagedetailinfomain %}
13 13
14<div class="row span11"> 14<div class="row">
15 <div class="col-md-12">
15 <div class="page-header"> 16 <div class="page-header">
16 <h1><a href="{%url 'recipe' build.pk task.recipe.pk %}">{{task.recipe.name}}_{{task.recipe.version}}</a> {{task.task_name}}</h1> 17 <h1><a href="{%url 'recipe' build.pk task.recipe.pk %}">{{task.recipe.name}}_{{task.recipe.version}}</a> {{task.task_name}}</h1>
17 </div> 18 </div>
@@ -24,16 +25,16 @@
24{%if task.task_executed %} 25{%if task.task_executed %}
25 {# executed tasks outcome #} 26 {# executed tasks outcome #}
26 {% if task.logfile %} 27 {% if task.logfile %}
27 <a class="btn btn-large" href="{% url 'build_artifact' build.id "tasklogfile" task.pk %}" style="margin:15px;">Download task log</a> 28 <a class="btn btn-lg" href="{% url 'build_artifact' build.id "tasklogfile" task.pk %}" style="margin:15px;">Download task log</a>
28 {% endif %} 29 {% endif %}
29 {# show stack trace for failed task #} 30 {# show stack trace for failed task #}
30 {% if task.outcome == task.OUTCOME_FAILED and log_head %} 31 {% if task.outcome == task.OUTCOME_FAILED and log_head %}
31 <h3>Python stack trace</h3> 32 <h3>Python stack trace</h3>
32 <div> 33 <div>
33 <pre style="min-height:160px;"> 34 <pre style="min-height:160px;">
34 <code>{{log_head}}</code><a id="full-trace-show" data-target="#fulltrace" data-toggle="collapse" class="btn btn-mini">...</a> 35 <code>{{log_head}}</code><a id="full-trace-show" data-target="#fulltrace" data-toggle="collapse" class="btn btn-xs">...</a>
35 <div id="fulltrace" class="collapse" style="margin-top: -20px; height: 0px;"> 36 <div id="fulltrace" class="collapse" style="margin-top: -20px; height: 0px;">
36 <code>{{log_body}}</code><br><a id="full-trace-hide" class="btn btn-mini collapsed" style="font-family:Helvetica Neue" data-target="#fulltrace" data-toggle="collapse">Collapse stack trace<i class="icon-caret-up"></i></a></div></pre> 37 <code>{{log_body}}</code><br><a id="full-trace-hide" class="btn btn-xs collapsed" style="font-family:Helvetica Neue" data-target="#fulltrace" data-toggle="collapse">Collapse stack trace<i class="icon-caret-up"></i></a></div></pre>
37 </div> 38 </div>
38 {% endif %} 39 {% endif %}
39{% else %} 40{% else %}
@@ -122,7 +123,7 @@
122 {%elif task.outcome == task.OUTCOME_CACHED%} 123 {%elif task.outcome == task.OUTCOME_CACHED%}
123 {% for t in task.get_related_setscene %} 124 {% for t in task.get_related_setscene %}
124 {% if forloop.last %} 125 {% if forloop.last %}
125 <a class="btn btn-large" href="{% url 'build_artifact' build.id "tasklogfile" t.pk %}" style="margin:15px;">Download task log</a> 126 <a class="btn btn-lg" href="{% url 'build_artifact' build.id "tasklogfile" t.pk %}" style="margin:15px;">Download task log</a>
126 {% endif %} 127 {% endif %}
127 {% endfor %} 128 {% endfor %}
128 129
@@ -153,8 +154,8 @@
153 <dd> 154 <dd>
154 {{task.sstate_checksum}} 155 {{task.sstate_checksum}}
155 </dd> 156 </dd>
156</dl>
157 {% if task.sstate_result != task.SSTATE_NA %} 157 {% if task.sstate_result != task.SSTATE_NA %}
158 </dl>
158 <div class="alert alert-info">Attempting to restore output from sstate cache 159 <div class="alert alert-info">Attempting to restore output from sstate cache
159 <i class="icon-question-sign get-help get-help-blue" title="The build system is searching for the task output in your <code>sstate-cache</code> directory and mirrors. If the build system finds the task output, it will reuse it instead of building it from scratch by running the real task. Reusing the task output makes the build faster"></i> 160 <i class="icon-question-sign get-help get-help-blue" title="The build system is searching for the task output in your <code>sstate-cache</code> directory and mirrors. If the build system finds the task output, it will reuse it instead of building it from scratch by running the real task. Reusing the task output makes the build faster"></i>
160 </div> 161 </div>
@@ -273,5 +274,6 @@
273 </dl> 274 </dl>
274 275
275</div> 276</div>
277
276{% endblock %} 278{% endblock %}
277 279