[18/50] [abbrv] hadoop git commit: HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode UI is broken. Contributed by Shawna Martell.

2017-09-18 Thread aengineer
HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode 
UI is broken. Contributed by Shawna Martell.


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

Branch: refs/heads/HDFS-7240
Commit: 78bdf10ae40300a5f2f3b95491d280802edc1df2
Parents: 08b9814
Author: Kihwal Lee 
Authored: Fri Sep 15 09:27:51 2017 -0500
Committer: Kihwal Lee 
Committed: Fri Sep 15 09:28:31 2017 -0500

--
 .../hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js  | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/78bdf10a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
--
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
index b785274..de62622 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
@@ -331,12 +331,12 @@
 'columns': [
   { 'orderDataType': 'ng-value', 'searchable': true },
   { 'orderDataType': 'ng-value', 'searchable': true },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderData': 3, 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric'},
-  { 'orderData': 5 }
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num'},
+  { 'type': 'string' }
 ]});
   renderHistogram(data);
   $('#ui-tabs a[href="#tab-datanode"]').tab('show');


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



hadoop git commit: HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode UI is broken. Contributed by Shawna Martell.

2017-09-15 Thread kihwal
Repository: hadoop
Updated Branches:
  refs/heads/branch-2.8 584cd134e -> 9e9e36fa7


HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode 
UI is broken. Contributed by Shawna Martell.


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

Branch: refs/heads/branch-2.8
Commit: 9e9e36fa702dbaf364fb85a34d27177769615322
Parents: 584cd13
Author: Kihwal Lee 
Authored: Fri Sep 15 13:16:43 2017 -0500
Committer: Kihwal Lee 
Committed: Fri Sep 15 13:16:43 2017 -0500

--
 .../hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js| 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/9e9e36fa/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
--
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
index f2b8ac3..6c495bc 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
@@ -324,11 +324,11 @@
 'columns': [
   { 'orderDataType': 'ng-value', 'searchable': true },
   { 'orderDataType': 'ng-value', 'searchable': true },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderData': 3, 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric'},
-  { 'orderData': 5 }
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num'},
+  { 'type': 'string' }
 ]});
   renderHistogram(data);
   $('#ui-tabs a[href="#tab-datanode"]').tab('show');


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



[36/50] [abbrv] hadoop git commit: HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode UI is broken. Contributed by Shawna Martell.

2017-09-15 Thread haibochen
HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode 
UI is broken. Contributed by Shawna Martell.


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

Branch: refs/heads/YARN-1011
Commit: 78bdf10ae40300a5f2f3b95491d280802edc1df2
Parents: 08b9814
Author: Kihwal Lee 
Authored: Fri Sep 15 09:27:51 2017 -0500
Committer: Kihwal Lee 
Committed: Fri Sep 15 09:28:31 2017 -0500

--
 .../hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js  | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/78bdf10a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
--
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
index b785274..de62622 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
@@ -331,12 +331,12 @@
 'columns': [
   { 'orderDataType': 'ng-value', 'searchable': true },
   { 'orderDataType': 'ng-value', 'searchable': true },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderData': 3, 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric'},
-  { 'orderData': 5 }
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num'},
+  { 'type': 'string' }
 ]});
   renderHistogram(data);
   $('#ui-tabs a[href="#tab-datanode"]').tab('show');


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



hadoop git commit: HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode UI is broken. Contributed by Shawna Martell.

2017-09-15 Thread kihwal
Repository: hadoop
Updated Branches:
  refs/heads/branch-2 317af87ad -> 07dee7fd6


HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode 
UI is broken. Contributed by Shawna Martell.

(cherry picked from commit 78bdf10ae40300a5f2f3b95491d280802edc1df2)


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

Branch: refs/heads/branch-2
Commit: 07dee7fd6340069133502d8aef79b2e7ccc7a36b
Parents: 317af87
Author: Kihwal Lee 
Authored: Fri Sep 15 09:55:59 2017 -0500
Committer: Kihwal Lee 
Committed: Fri Sep 15 09:55:59 2017 -0500

--
 .../hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js  | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/07dee7fd/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
--
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
index b785274..de62622 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
@@ -331,12 +331,12 @@
 'columns': [
   { 'orderDataType': 'ng-value', 'searchable': true },
   { 'orderDataType': 'ng-value', 'searchable': true },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderData': 3, 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric'},
-  { 'orderData': 5 }
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num'},
+  { 'type': 'string' }
 ]});
   renderHistogram(data);
   $('#ui-tabs a[href="#tab-datanode"]').tab('show');


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



hadoop git commit: HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode UI is broken. Contributed by Shawna Martell.

2017-09-15 Thread kihwal
Repository: hadoop
Updated Branches:
  refs/heads/branch-3.0 8e23929ad -> ba26097ea


HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode 
UI is broken. Contributed by Shawna Martell.

(cherry picked from commit 78bdf10ae40300a5f2f3b95491d280802edc1df2)


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

Branch: refs/heads/branch-3.0
Commit: ba26097ea776c0a00f43917b18a102eaf7b2f433
Parents: 8e23929
Author: Kihwal Lee 
Authored: Fri Sep 15 09:55:04 2017 -0500
Committer: Kihwal Lee 
Committed: Fri Sep 15 09:55:04 2017 -0500

--
 .../hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js  | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/ba26097e/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
--
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
index b785274..de62622 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
@@ -331,12 +331,12 @@
 'columns': [
   { 'orderDataType': 'ng-value', 'searchable': true },
   { 'orderDataType': 'ng-value', 'searchable': true },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderData': 3, 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric'},
-  { 'orderData': 5 }
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num'},
+  { 'type': 'string' }
 ]});
   renderHistogram(data);
   $('#ui-tabs a[href="#tab-datanode"]').tab('show');


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



hadoop git commit: HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode UI is broken. Contributed by Shawna Martell.

2017-09-15 Thread kihwal
Repository: hadoop
Updated Branches:
  refs/heads/trunk 08b98149e -> 78bdf10ae


HDFS-12424. Datatable sorting on the Datanode Information page in the Namenode 
UI is broken. Contributed by Shawna Martell.


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

Branch: refs/heads/trunk
Commit: 78bdf10ae40300a5f2f3b95491d280802edc1df2
Parents: 08b9814
Author: Kihwal Lee 
Authored: Fri Sep 15 09:27:51 2017 -0500
Committer: Kihwal Lee 
Committed: Fri Sep 15 09:28:31 2017 -0500

--
 .../hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js  | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/78bdf10a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
--
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
index b785274..de62622 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/dfshealth.js
@@ -331,12 +331,12 @@
 'columns': [
   { 'orderDataType': 'ng-value', 'searchable': true },
   { 'orderDataType': 'ng-value', 'searchable': true },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric' },
-  { 'orderData': 3, 'type': 'numeric' },
-  { 'orderDataType': 'ng-value', 'type': 'numeric'},
-  { 'orderData': 5 }
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num' },
+  { 'type': 'num' },
+  { 'orderDataType': 'ng-value', 'type': 'num'},
+  { 'type': 'string' }
 ]});
   renderHistogram(data);
   $('#ui-tabs a[href="#tab-datanode"]').tab('show');


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org