You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2018/11/12 12:37:37 UTC

[ignite-teamcity-bot] 02/02: Scripts update, page titles added

This is an automated email from the ASF dual-hosted git repository.

dpavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-teamcity-bot.git

commit a7c61fe8529ffc3406b4f062cb2545e0a27f94c6
Author: Dmitriy Pavlov <dp...@apache.org>
AuthorDate: Mon Nov 12 15:37:24 2018 +0300

    Scripts update, page titles added
---
 ignite-tc-helper-web/src/main/webapp/js/common-1.6.js      | 14 +++++++-------
 .../src/main/webapp/js/long_running-1.0.js                 | 10 +++++-----
 ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js   |  4 ++--
 3 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js b/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js
index 8fab111..97149be 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js
@@ -130,13 +130,13 @@ function showMenu(menuData) {
     } else {
         res += "<div class=\"navbar\">";
         res += "<a href=\"/\">Home</a>";
-        res += "<a href=\"/prs.html\">PR/Branch check</a>";
-        res += "<a href=\"/guard.html\">Test status</a>";
-        res += "<a href=\"/comparison.html\">Master Trends</a>";
-        res += "<a href=\"/compare.html\">Compare builds</a>";
-        res += "<a href=\"/issues.html\">Issues history</a>";
-        //uncomment when Visa history is merged:
-        res += "<a href=\"/visas.html\">Visas history</a>";
+        res += "<a href=\"/prs.html\" title='PR or branch check'>PR Check</a>";
+        res += "<a href=\"/guard.html\" title='Monitoring: Current test failures in tracked Branches'>Test Status</a>";
+        res += "<a href=\"/comparison.html\" title='Monitoring: Test failures trends and graphs'>Master Trends</a>";
+        res += "<a href=\"/longRunningTestsReport.html\" title='Monitoring: Long running tests report''>Test Durations</a>";
+        res += "<a href=\"/compare.html\" title='Compare builds tests test'>Compare builds</a>";
+        res += "<a href=\"/issues.html\" title='Detected issues list'>Issues history</a>";
+        res += "<a href=\"/visas.html\" title='Issued TC Bot Visa history'>Visas history</a>";
 
 
         res += "<div class='topnav-right'>";
diff --git a/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js b/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js
index 635abc8..925fb02 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js
@@ -1,5 +1,5 @@
 function showLongRunningTestsSummary(result) {
-    var res = "<table>"
+    var res = "<table>";
 
     for (var i = 0; i < result.suiteSummaries.length; i++) {
         var summary = result.suiteSummaries[i];
@@ -7,8 +7,8 @@ function showLongRunningTestsSummary(result) {
         res += "<tr>";
 
         res += "<td>";
-        res += "<span>" + summary.name + "</span>"
-        res += "<span> [avg test duration: " + summary.testAvgTimePrintable + "] </span>"
+        res += "<span>" + summary.name + "</span>";
+        res += "<span> [avg test duration: " + summary.testAvgTimePrintable + "] </span>";
 
         res += "<span class='container'>";
         res += " <a href='javascript:void(0);' class='header'>" + more + "</a>";
@@ -28,7 +28,7 @@ function showLongRunningTestsSummary(result) {
 }
 
 function convertLRTestsList(tests) {
-    var res = "<table>"
+    var res = "<table>";
     for (var i = 0; i < tests.length; i++) {
         res += "<tr>";
         res += "<td>" + tests[i].name;
@@ -36,7 +36,7 @@ function convertLRTestsList(tests) {
         res += tests[i].timePrintable;
         res += "</td></tr>";
     }
-    res += "</table>"
+    res += "</table>";
 
     return res;
 }
diff --git a/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js b/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js
index e74dded..e31fa3d 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js
@@ -102,9 +102,9 @@ function showChainCurrentStatusData(server, settings) {
     res += "] ";
     res += "[";
     res += "<a href='longRunningTestsReport.html'>";
-    res += "long running tests report"
+    res += "long running tests report";
     res += "</a>";
-    res += "]"
+    res += "]";
     res += "</b>";
 
     var mInfo = "";