summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-06-09 17:25:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-26 09:27:31 +0100
commit2c7ed96b567386d0f57ad8c088790a515d17b7af (patch)
treef322624d303f7c46034e9813717317c84017234f /bitbake/lib/toaster/toastergui/templates
parentc362e61ee2cc97b393f7002c4592787d6573080c (diff)
downloadpoky-2c7ed96b567386d0f57ad8c088790a515d17b7af.tar.gz
bitbake: toaster: remove BuildRequest references
In the toastergui application we should not display implementation details about how the builds are run. This patch removes the references to BuildRequest on the majority of the views (except Builds page itself, as that is more complicated). (Bitbake rev: ead45a600813a1d8594e604875803ded781f83d8) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/basebuildpage.html1
-rw-r--r--bitbake/lib/toaster/toastergui/templates/configvars.html4
2 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/basebuildpage.html b/bitbake/lib/toaster/toastergui/templates/basebuildpage.html
index b7a4dd21ed..105ad85ed4 100644
--- a/bitbake/lib/toaster/toastergui/templates/basebuildpage.html
+++ b/bitbake/lib/toaster/toastergui/templates/basebuildpage.html
@@ -24,6 +24,7 @@
24 $('#breadcrumb > li').append("<span class=\"divider\">→</span>"); 24 $('#breadcrumb > li').append("<span class=\"divider\">→</span>");
25 $('#breadcrumb > li:last').addClass("active"); 25 $('#breadcrumb > li:last').addClass("active");
26 $('#breadcrumb > li:last > span').remove(); 26 $('#breadcrumb > li:last > span').remove();
27 console.log("done");
27 }); 28 });
28 </script> 29 </script>
29 </div> 30 </div>
diff --git a/bitbake/lib/toaster/toastergui/templates/configvars.html b/bitbake/lib/toaster/toastergui/templates/configvars.html
index cbe3c6876f..89576733c2 100644
--- a/bitbake/lib/toaster/toastergui/templates/configvars.html
+++ b/bitbake/lib/toaster/toastergui/templates/configvars.html
@@ -56,7 +56,7 @@
56 <td class="file"><a data-toggle="modal" href="#variable-{{variable.pk}}"> 56 <td class="file"><a data-toggle="modal" href="#variable-{{variable.pk}}">
57 {% if variable.vhistory.all %} 57 {% if variable.vhistory.all %}
58 {% for path in variable.vhistory.all|filter_setin_files:file_filter %} 58 {% for path in variable.vhistory.all|filter_setin_files:file_filter %}
59 {{path|cut_path_prefix:dirstostrip}}<br/> 59 {{path}}<br/>
60 {% endfor %} 60 {% endfor %}
61 {% endif %} 61 {% endif %}
62 </a></td> 62 </a></td>
@@ -117,7 +117,7 @@
117 <tbody> 117 <tbody>
118 {% for vh in variable.vhistory.all %} 118 {% for vh in variable.vhistory.all %}
119 <tr> 119 <tr>
120 <td>{{forloop.counter}}</td><td>{{vh.file_name|cut_path_prefix:dirstostrip}}</td><td>{{vh.operation}}</td><td>{{vh.line_number}}</td> 120 <td>{{forloop.counter}}</td><td>{{vh.file_name}}</td><td>{{vh.operation}}</td><td>{{vh.line_number}}</td>
121 </tr> 121 </tr>
122 {%endfor%} 122 {%endfor%}
123 </tbody> 123 </tbody>