summaryrefslogtreecommitdiff
path: root/web-app/static/index.html
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2015-05-28 12:23:49 -0400
committerClark Laughlin <clark.laughlin@linaro.org>2015-05-28 12:23:49 -0400
commit770a53049991589b49a4353d7d91c7f12fa77540 (patch)
tree3e13086bd1135cf2823185ed9a605ccd9f67a45d /web-app/static/index.html
parent71b031e33051a99c861044dc4f3d574cba3d46be (diff)
support for device
Diffstat (limited to 'web-app/static/index.html')
-rw-r--r--web-app/static/index.html30
1 files changed, 17 insertions, 13 deletions
diff --git a/web-app/static/index.html b/web-app/static/index.html
index 191d20b..390580f 100644
--- a/web-app/static/index.html
+++ b/web-app/static/index.html
@@ -34,8 +34,9 @@ $(function() {
"autowidth" : false,
"ajax": { "dataSrc" : "", "url" : "/results/tempest/summary" },
"columns": [
- { "title" : "OS Distro / Version", "data" : "OS_Name" },
{ "title" : "Branch", "data" : "Branch" },
+ { "title" : "OS Distro / Version", "data" : "OS_Name" },
+ { "title" : "Device", "data" : "Device" },
{ "title" : "# Of Test Runs", "data" : "Number_Of_Runs" },
{ "title" : "Average Passing (%)", "data" : "Average_Pct_Passing" },
{ "title" : "Average Failing (%)", "data" : "Average_Pct_Failing" },
@@ -48,19 +49,22 @@ $(function() {
$.getJSON("/results/all-categorization", function(data) {
data['Branch'].forEach(function(value, index) {
var branch = value['n.name'];
- data['OS'].forEach(function(value, index) {
- var distro = value['n.distro'];
- var version = value['n.version'];
- var div_name = branch + ":" + distro + ":" + version;
+ data['Device'].forEach(function(value, index) {
+ var device = value['n.name'];
+ data['OS'].forEach(function(value, index) {
+ var distro = value['n.distro'];
+ var version = value['n.version'];
+ var div_name = branch + ":" + device + ":" + distro + ":" + version;
- $("<div>", {
- 'id': div_name,
- css: { "height": "450px", "width": "90%" }
- }).appendTo($("#chartContainer"));
- $("<br>").appendTo($("#chartContainer"));
-
- // generate a chart for the combination
- create_chart(div_name, branch, distro, version, 60, handle_chart_click);
+ $("<div>", {
+ 'id': div_name,
+ css: { "height": "450px", "width": "90%" }
+ }).appendTo($("#chartContainer"));
+ $("<br>").appendTo($("#chartContainer"));
+
+ // generate a chart for the combination
+ create_chart(div_name, branch, device, distro, version, 60, handle_chart_click);
+ });
});
});
});