summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/package_detail_base.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_detail_base.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_detail_base.html b/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
index 17562a8845..bce7fb2fa6 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
@@ -14,8 +14,8 @@
14 function fmtAliasHelp(package_name, alias, hover) { 14 function fmtAliasHelp(package_name, alias, hover) {
15 var r = null; 15 var r = null;
16 if (alias != null && alias != '') { 16 if (alias != null && alias != '') {
17 r = '<span class="muted"> as ' + alias + '&nbsp'; 17 r = '<span class="text-muted"> as ' + alias + '&nbsp';
18 r += '<i class="icon-question-sign get-help'; 18 r += '<span class="glyphicon glyphicon-question-sign get-help';
19 if (hover) { 19 if (hover) {
20 r+= ' hover-help'; 20 r+= ' hover-help';
21 } 21 }
@@ -23,9 +23,9 @@
23 r+= ' heading-help'; 23 r+= ' heading-help';
24 } 24 }
25 r += '"'; 25 r += '"';
26 title = package_name + ' was renamed at packaging time and was installed on your system as ' + alias; 26 title = '<code>' + package_name + '</code> was renamed at packaging time and was installed on your system as <code>' + alias + '</code>';
27 r += ' title="' + title + '">'; 27 r += ' title="' + title + '">';
28 r += '</i>'; 28 r += '</span>';
29 r += '</span>'; 29 r += '</span>';
30 document.write(r); 30 document.write(r);
31 } 31 }
@@ -45,7 +45,7 @@
45{% block pagedetailinfomain %} 45{% block pagedetailinfomain %}
46 <div class="row"> 46 <div class="row">
47 <div class="col-md-12"> 47 <div class="col-md-12">
48 <div class="page-header"> 48 <div class="page-header build-data">
49 {% block mainheading %} 49 {% block mainheading %}
50 <h1>{{package.fullpackagespec}}</h1> 50 <h1>{{package.fullpackagespec}}</h1>
51 {% endblock %} 51 {% endblock %}
@@ -68,7 +68,7 @@
68 <dl class="item-info"> 68 <dl class="item-info">
69 <dt> 69 <dt>
70 Size 70 Size
71 <i class="icon-question-sign get-help" title="The size of the package"></i> 71 <span class="glyphicon glyphicon-question-sign get-help" title="The size of the package"></span>
72 </dt> 72 </dt>
73 <dd> 73 <dd>
74 {% comment %} 74 {% comment %}
@@ -85,7 +85,7 @@
85 85
86 <dt> 86 <dt>
87 License 87 License
88 <i class="icon-question-sign get-help" title="The license under which this package is distributed"></i> 88 <span class="glyphicon glyphicon-question-sign get-help" title="The license under which this package is distributed"></span>
89 </dt> 89 </dt>
90 <dd>{{package.license}}</dd> 90 <dd>{{package.license}}</dd>
91 91
@@ -101,7 +101,7 @@
101 101
102 <dt> 102 <dt>
103 Recipe 103 Recipe
104 <i class="icon-question-sign get-help" title="The name of the recipe building this package"></i> 104 <span class="glyphicon glyphicon-question-sign get-help" title="The name of the recipe building this package"></span>
105 </dt> 105 </dt>
106 <dd> 106 <dd>
107 {% if package.recipe_id > 0 %} 107 {% if package.recipe_id > 0 %}
@@ -113,13 +113,13 @@
113 113
114 <dt> 114 <dt>
115 Recipe version 115 Recipe version
116 <i class="icon-question-sign get-help" title="The version of the recipe building this package"></i> 116 <span class="glyphicon glyphicon-question-sign get-help" title="The version of the recipe building this package"></span>
117 </dt> 117 </dt>
118 <dd>{{package.recipe.version}}</dd> 118 <dd>{{package.recipe.version}}</dd>
119 119
120 <dt> 120 <dt>
121 Layer 121 Layer
122 <i class="icon-question-sign get-help" title="The name of the layer providing the recipe that builds this package"></i> 122 <span class="glyphicon glyphicon-question-sign get-help" title="The name of the layer providing the recipe that builds this package"></span>
123 </dt> 123 </dt>
124 <dd> 124 <dd>
125 {{package.recipe.layer_version.layer.name}} 125 {{package.recipe.layer_version.layer.name}}
@@ -136,13 +136,13 @@
136 {% if package.recipe.layer_version.branch %} 136 {% if package.recipe.layer_version.branch %}
137 <dt> 137 <dt>
138 Layer branch 138 Layer branch
139 <i class="icon-question-sign get-help" title="The Git branch of the layer providing the recipe that builds this package"></i> 139 <span class="glyphicon glyphicon-question-sign get-help" title="The Git branch of the layer providing the recipe that builds this package"></span>
140 </dt> 140 </dt>
141 <dd>{{package.recipe.layer_version.branch}}</dd> 141 <dd>{{package.recipe.layer_version.branch}}</dd>
142 {% endif %} 142 {% endif %}
143 <dt> 143 <dt>
144 Layer commit 144 Layer commit
145 <i class="icon-question-sign get-help" title="The Git commit of the layer providing the recipe that builds this package"></i> 145 <span class="glyphicon glyphicon-question-sign get-help" title="The Git commit of the layer providing the recipe that builds this package"></span>
146 </dt> 146 </dt>
147 147
148 <dd class="iscommit">{{package.recipe.layer_version.commit}}</dd> 148 <dd class="iscommit">{{package.recipe.layer_version.commit}}</dd>