You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2017/02/22 19:23:28 UTC

[1/6] accumulo git commit: ACCUMULO-4590 Use JSON.parse instead of eval

Repository: accumulo
Updated Branches:
  refs/heads/1.7 a9bf10fff -> c3a0d1d5e
  refs/heads/1.8 e86fabb87 -> 3430da2d6
  refs/heads/master 6494a829b -> d5d18dda3


ACCUMULO-4590 Use JSON.parse instead of eval


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/c3a0d1d5
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/c3a0d1d5
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/c3a0d1d5

Branch: refs/heads/1.7
Commit: c3a0d1d5e2f810ebcda346977009ab0fd1bd34f7
Parents: a9bf10f
Author: Christopher Tubbs <ct...@apache.org>
Authored: Wed Feb 22 14:19:57 2017 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Wed Feb 22 14:19:57 2017 -0500

----------------------------------------------------------------------
 server/monitor/src/main/resources/web/vis.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/c3a0d1d5/server/monitor/src/main/resources/web/vis.js
----------------------------------------------------------------------
diff --git a/server/monitor/src/main/resources/web/vis.js b/server/monitor/src/main/resources/web/vis.js
index c0f8b3f..8f2bc20 100644
--- a/server/monitor/src/main/resources/web/vis.js
+++ b/server/monitor/src/main/resources/web/vis.js
@@ -82,7 +82,7 @@ function handleNewData() {
     xmlReturned = true;
     return;
   }
-  var newstats = eval('(' + xmlhttp.responseText + ')');
+  var newstats = JSON.parse(xmlhttp.responseText);
   for (var i in newstats.servers) {
     for (var s in statNames) {
       if (statNames[s])


[3/6] accumulo git commit: ACCUMULO-4590 Use JSON.parse instead of eval

Posted by ct...@apache.org.
ACCUMULO-4590 Use JSON.parse instead of eval


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/c3a0d1d5
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/c3a0d1d5
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/c3a0d1d5

Branch: refs/heads/master
Commit: c3a0d1d5e2f810ebcda346977009ab0fd1bd34f7
Parents: a9bf10f
Author: Christopher Tubbs <ct...@apache.org>
Authored: Wed Feb 22 14:19:57 2017 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Wed Feb 22 14:19:57 2017 -0500

----------------------------------------------------------------------
 server/monitor/src/main/resources/web/vis.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/c3a0d1d5/server/monitor/src/main/resources/web/vis.js
----------------------------------------------------------------------
diff --git a/server/monitor/src/main/resources/web/vis.js b/server/monitor/src/main/resources/web/vis.js
index c0f8b3f..8f2bc20 100644
--- a/server/monitor/src/main/resources/web/vis.js
+++ b/server/monitor/src/main/resources/web/vis.js
@@ -82,7 +82,7 @@ function handleNewData() {
     xmlReturned = true;
     return;
   }
-  var newstats = eval('(' + xmlhttp.responseText + ')');
+  var newstats = JSON.parse(xmlhttp.responseText);
   for (var i in newstats.servers) {
     for (var s in statNames) {
       if (statNames[s])


[5/6] accumulo git commit: Merge branch '1.7' into 1.8

Posted by ct...@apache.org.
Merge branch '1.7' into 1.8


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/3430da2d
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/3430da2d
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/3430da2d

Branch: refs/heads/1.8
Commit: 3430da2d6cd50c1dce150c235f8f80620f7fbcc5
Parents: e86fabb c3a0d1d
Author: Christopher Tubbs <ct...@apache.org>
Authored: Wed Feb 22 14:21:34 2017 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Wed Feb 22 14:21:34 2017 -0500

----------------------------------------------------------------------
 server/monitor/src/main/resources/web/vis.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[2/6] accumulo git commit: ACCUMULO-4590 Use JSON.parse instead of eval

Posted by ct...@apache.org.
ACCUMULO-4590 Use JSON.parse instead of eval


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/c3a0d1d5
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/c3a0d1d5
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/c3a0d1d5

Branch: refs/heads/1.8
Commit: c3a0d1d5e2f810ebcda346977009ab0fd1bd34f7
Parents: a9bf10f
Author: Christopher Tubbs <ct...@apache.org>
Authored: Wed Feb 22 14:19:57 2017 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Wed Feb 22 14:19:57 2017 -0500

----------------------------------------------------------------------
 server/monitor/src/main/resources/web/vis.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/c3a0d1d5/server/monitor/src/main/resources/web/vis.js
----------------------------------------------------------------------
diff --git a/server/monitor/src/main/resources/web/vis.js b/server/monitor/src/main/resources/web/vis.js
index c0f8b3f..8f2bc20 100644
--- a/server/monitor/src/main/resources/web/vis.js
+++ b/server/monitor/src/main/resources/web/vis.js
@@ -82,7 +82,7 @@ function handleNewData() {
     xmlReturned = true;
     return;
   }
-  var newstats = eval('(' + xmlhttp.responseText + ')');
+  var newstats = JSON.parse(xmlhttp.responseText);
   for (var i in newstats.servers) {
     for (var s in statNames) {
       if (statNames[s])


[4/6] accumulo git commit: Merge branch '1.7' into 1.8

Posted by ct...@apache.org.
Merge branch '1.7' into 1.8


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/3430da2d
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/3430da2d
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/3430da2d

Branch: refs/heads/master
Commit: 3430da2d6cd50c1dce150c235f8f80620f7fbcc5
Parents: e86fabb c3a0d1d
Author: Christopher Tubbs <ct...@apache.org>
Authored: Wed Feb 22 14:21:34 2017 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Wed Feb 22 14:21:34 2017 -0500

----------------------------------------------------------------------
 server/monitor/src/main/resources/web/vis.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[6/6] accumulo git commit: Merge branch '1.8'

Posted by ct...@apache.org.
Merge branch '1.8'


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/d5d18dda
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/d5d18dda
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/d5d18dda

Branch: refs/heads/master
Commit: d5d18dda38af19a810bc1b894f6448286ad35e03
Parents: 6494a82 3430da2
Author: Christopher Tubbs <ct...@apache.org>
Authored: Wed Feb 22 14:22:25 2017 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Wed Feb 22 14:22:25 2017 -0500

----------------------------------------------------------------------
 server/monitor/src/main/resources/web/vis.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------