Files
poky/bitbake/lib/toaster/toastergui/templates/package_included_tabs.html
Dave Lerner 620553df86 bitbake: toaster: Implementation of package detail views
Adds new package detail views.  The views are based on
specifications found in attachments to:
    https://bugzilla.yoctoproject.org/show_bug.cgi?id=4328
specifically:
    design-1.5.1-package-details.pdf, and
    design-1.1.1-included-package-details.

This patch includes a redefinition of constant numbers for
task dependency tasks. This is needed in order to achieve
sorting criteria from the design.

This change invalidates currently dependency information for
currently existing builds, as it breaks compatibility.

[YOCTO #4328]

(Bitbake rev: 6855925c06e7e5bb15ae9d0c08d77f3a9a2574bc)

Signed-off-by: Dave Lerner <dave.lerner@windriver.com>
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-02-17 15:38:52 +00:00

34 lines
1.4 KiB
HTML

<ul class="nav nav-pills">
{% if active_tab == "detail" %}
<li class="active">
{% else %}
<li class="">
{% endif %}
<a href="{% url 'package_included_detail' build.id target.id package.id %}">
<i class="icon-question-sign get-help" title="The files this package adds to the image root file system"></i>
Files in root file system ({{packageFileCount}})
</a>
</li>
{% if active_tab == "dependencies" %}
<li class="active">
{% else %}
<li class="">
{% endif %}
<a href="{% url 'package_included_dependencies' build.id target.id package.id %}">
<i class="icon-question-sign get-help" data-toggle="tooltip" title="Package runtime dependencies"></i>
Runtime dependencies ({{dependency_count}})
</a>
</li>
{% if active_tab == "reverse" %}
<li class="active">
{% else %}
<li class="">
{% endif %}
<a href="{% url 'package_included_reverse_dependencies' build.id target.id package.id %}">
<i class="icon-question-sign get-help" data-toggle="tooltip" title="The package runtime reverse dependencies (i.e. which other packages in this image depend on this package). Reverse dependencies reflect only the 'depends' dependency type"></i>
Reverse Runtime dependencies ({{reverse_count}})
</a>
</li>
</ul>