mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 09:49:33 +02:00
bitbake: toaster: port all build analysis pages to bootstrap 3
Port all the pages in the build analysis area to bootstrap version 3. (Bitbake rev: f963b73f0bf32db2df39dd79d8d85184c280cda0) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
46271833be
commit
a7d498dfd3
@@ -14,8 +14,8 @@
|
||||
function fmtAliasHelp(package_name, alias, hover) {
|
||||
var r = null;
|
||||
if (alias != null && alias != '') {
|
||||
r = '<span class="muted"> as ' + alias + ' ';
|
||||
r += '<i class="icon-question-sign get-help';
|
||||
r = '<span class="text-muted"> as ' + alias + ' ';
|
||||
r += '<span class="glyphicon glyphicon-question-sign get-help';
|
||||
if (hover) {
|
||||
r+= ' hover-help';
|
||||
}
|
||||
@@ -23,9 +23,9 @@
|
||||
r+= ' heading-help';
|
||||
}
|
||||
r += '"';
|
||||
title = package_name + ' was renamed at packaging time and was installed on your system as ' + alias;
|
||||
title = '<code>' + package_name + '</code> was renamed at packaging time and was installed on your system as <code>' + alias + '</code>';
|
||||
r += ' title="' + title + '">';
|
||||
r += '</i>';
|
||||
r += '</span>';
|
||||
r += '</span>';
|
||||
document.write(r);
|
||||
}
|
||||
@@ -45,7 +45,7 @@
|
||||
{% block pagedetailinfomain %}
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="page-header">
|
||||
<div class="page-header build-data">
|
||||
{% block mainheading %}
|
||||
<h1>{{package.fullpackagespec}}</h1>
|
||||
{% endblock %}
|
||||
@@ -68,7 +68,7 @@
|
||||
<dl class="item-info">
|
||||
<dt>
|
||||
Size
|
||||
<i class="icon-question-sign get-help" title="The size of the package"></i>
|
||||
<span class="glyphicon glyphicon-question-sign get-help" title="The size of the package"></span>
|
||||
</dt>
|
||||
<dd>
|
||||
{% comment %}
|
||||
@@ -85,7 +85,7 @@
|
||||
|
||||
<dt>
|
||||
License
|
||||
<i class="icon-question-sign get-help" title="The license under which this package is distributed"></i>
|
||||
<span class="glyphicon glyphicon-question-sign get-help" title="The license under which this package is distributed"></span>
|
||||
</dt>
|
||||
<dd>{{package.license}}</dd>
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
|
||||
<dt>
|
||||
Recipe
|
||||
<i class="icon-question-sign get-help" title="The name of the recipe building this package"></i>
|
||||
<span class="glyphicon glyphicon-question-sign get-help" title="The name of the recipe building this package"></span>
|
||||
</dt>
|
||||
<dd>
|
||||
{% if package.recipe_id > 0 %}
|
||||
@@ -113,13 +113,13 @@
|
||||
|
||||
<dt>
|
||||
Recipe version
|
||||
<i class="icon-question-sign get-help" title="The version of the recipe building this package"></i>
|
||||
<span class="glyphicon glyphicon-question-sign get-help" title="The version of the recipe building this package"></span>
|
||||
</dt>
|
||||
<dd>{{package.recipe.version}}</dd>
|
||||
|
||||
<dt>
|
||||
Layer
|
||||
<i class="icon-question-sign get-help" title="The name of the layer providing the recipe that builds this package"></i>
|
||||
<span class="glyphicon glyphicon-question-sign get-help" title="The name of the layer providing the recipe that builds this package"></span>
|
||||
</dt>
|
||||
<dd>
|
||||
{{package.recipe.layer_version.layer.name}}
|
||||
@@ -136,13 +136,13 @@
|
||||
{% if package.recipe.layer_version.branch %}
|
||||
<dt>
|
||||
Layer branch
|
||||
<i class="icon-question-sign get-help" title="The Git branch of the layer providing the recipe that builds this package"></i>
|
||||
<span class="glyphicon glyphicon-question-sign get-help" title="The Git branch of the layer providing the recipe that builds this package"></span>
|
||||
</dt>
|
||||
<dd>{{package.recipe.layer_version.branch}}</dd>
|
||||
{% endif %}
|
||||
<dt>
|
||||
Layer commit
|
||||
<i class="icon-question-sign get-help" title="The Git commit of the layer providing the recipe that builds this package"></i>
|
||||
<span class="glyphicon glyphicon-question-sign get-help" title="The Git commit of the layer providing the recipe that builds this package"></span>
|
||||
</dt>
|
||||
|
||||
<dd class="iscommit">{{package.recipe.layer_version.commit}}</dd>
|
||||
|
||||
Reference in New Issue
Block a user