summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/simple_task.html
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-05-12 15:29:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-14 18:04:09 +0100
commitec8bd70b27efe7875f0c536c4eaf185eae9f7670 (patch)
tree5c1be53dab9e1e8daa0f49f184d0ff7e8423fbbf /bitbake/lib/toaster/bldviewer/templates/simple_task.html
parentc5a16235b8b56102703bc264768ba386ebe90611 (diff)
downloadpoky-ec8bd70b27efe7875f0c536c4eaf185eae9f7670.tar.gz
bitbake: toaster: Remove old bldviewer application
The SimpleUI is obsolete and not maintained. It should be deleted as there is no use to it. [YOCTO #7709] (Bitbake rev: 10b7c359613629bf6e3465234512990ba4742c48) 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/bldviewer/templates/simple_task.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/simple_task.html71
1 files changed, 0 insertions, 71 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/simple_task.html b/bitbake/lib/toaster/bldviewer/templates/simple_task.html
deleted file mode 100644
index a5ed5295ea..0000000000
--- a/bitbake/lib/toaster/bldviewer/templates/simple_task.html
+++ /dev/null
@@ -1,71 +0,0 @@
1{% extends "simple_basebuildpage.html" %}
2
3{% block pagetitle %}Tasks{% endblock %}
4{% block pagetable %}
5 {% if not objects %}
6 <p>No tasks were executed in this build!</p>
7 {% else %}
8
9 <tr>
10 <th>Order</th>
11 <th>Task</th>
12 <th>Recipe Version</th>
13 <th>Task Type</th>
14 <th>Checksum</th>
15 <th>Outcome</th>
16 <th>Message</th>
17 <th>Time</th>
18 <th>CPU usage</th>
19 <th>Disk I/O</th>
20 <th>Script type</th>
21 <th>Filesystem</th>
22 <th>Depends</th>
23 </tr>
24
25 {% for task in objects %}
26
27 <tr class="data">
28 <td>{{task.order}}</td>
29 <td><a name="{{task.recipe.name}}.{{task.task_name}}">
30 <a href="{% url "simple-layer_versions_recipes" task.recipe.layer_version_id %}#{{task.recipe.name}}">{{task.recipe.name}}</a>.{{task.task_name}}</a></td>
31 <td>{{task.recipe.version}}</td>
32
33 {% if task.task_executed %}
34 <td>Executed</td>
35 {% else %}
36 <td>Not Executed</td>
37 {% endif %}
38
39 <td>{{task.sstate_checksum}}</td>
40 <td>{{task.get_outcome_display}}{% if task.provider %}</br>(by <a href="#{{task.provider.recipe.name}}.{{task.provider.task_name}}">{{task.provider.recipe.name}}.{{task.provider.task_name}}</a>){% endif %}
41 {% if task.outcome == task.OUTCOME_CACHED %}{% for t in task.get_related_setscene %}
42 <br/>({{t.task_name}} {{t.get_outcome_display}})
43 {% endfor %}{%endif%}
44 </td>
45 <td><p>{{task.message}}</td>
46 <td>{{task.elapsed_time}}</td>
47 <td>{{task.cpu_usage}}</td>
48 <td>{{task.disk_io}}</td>
49 <td>{{task.get_script_type_display}}</td>
50 <td> <table>
51<tr><td> Recipe</td><td><a target="_fileview" href="file:///{{task.recipe.file_path}}">{{task.recipe.file_path}}</a></td></tr>
52<tr><td> Source</td><td><a target="_fileview" href="file:///{{task.file_name}}">{{task.file_name}}:{{task.line_number}}</a></td></tr>
53<tr><td> Workdir</td><td><a target="_fileview" href="file:///{{task.work_directory}}">{{task.work_directory}}</a></td></tr>
54<tr><td> Log</td><td><a target="_fileview" href="file:///{{task.logfile}}">{{task.logfile}}</a><br/></td></tr>
55</table>
56 </td>
57 <td>
58 <div style="height: 3em; overflow:auto">
59 {% for tt in task.task_dependencies_task.all %}
60 <a href="#{{tt.depends_on.recipe.name}}.{{tt.depends_on.task_name}}">
61 {{tt.depends_on.recipe.name}}.{{tt.depends_on.task_name}}</a><br/>
62 {% endfor %}
63 </div>
64 </td>
65 </tr>
66
67 {% endfor %}
68
69 {% endif %}
70
71{% endblock %}