[07/50] [abbrv] hadoop git commit: YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before using to access NM. Contributed by Sreenath Somarajapuram.

2018-04-10 Thread xyao
YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before 
using to access NM. Contributed by Sreenath Somarajapuram.


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

Branch: refs/heads/HDFS-7240
Commit: 42cd367c9308b944bc71de6c07b6c3f028a0d874
Parents: b779f4f
Author: Sunil G 
Authored: Wed Apr 4 22:13:14 2018 +0530
Committer: Sunil G 
Committed: Wed Apr 4 22:13:14 2018 +0530

--
 .../webapp/app/components/node-menu-panel.js| 25 
 .../webapp/app/controllers/yarn-node-app.js |  3 ++-
 .../webapp/app/controllers/yarn-node-apps.js|  3 ++-
 .../app/controllers/yarn-node-container.js  |  3 ++-
 .../app/controllers/yarn-node-containers.js |  3 ++-
 .../main/webapp/app/controllers/yarn-node.js|  3 ++-
 .../webapp/app/controllers/yarn-nodes/table.js  |  2 +-
 .../src/main/webapp/app/helpers/node-link.js|  2 +-
 .../src/main/webapp/app/initializers/loader.js  |  1 +
 .../main/webapp/app/routes/yarn-node-apps.js|  8 ---
 .../webapp/app/routes/yarn-node-containers.js   |  8 ---
 .../src/main/webapp/app/routes/yarn-node.js |  8 ---
 .../templates/components/node-menu-panel.hbs|  8 +++
 13 files changed, 57 insertions(+), 20 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
new file mode 100644
index 000..31457be
--- /dev/null
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import Ember from 'ember';
+
+export default Ember.Component.extend({
+  encodedAddr : Ember.computed("nodeAddr", function(){
+return encodeURIComponent(this.get('nodeAddr'));
+  })
+});

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
index 3dc09fc..e0d58ec 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
@@ -22,6 +22,7 @@ export default Ember.Controller.extend({
 
   breadcrumbs: Ember.computed('model.nodeInfo', function () {
 var nodeInfo = this.get('model.nodeInfo');
+var addr = encodeURIComponent(nodeInfo.addr);
 return [{
   text: "Home",
   routeName: 'application'
@@ -30,7 +31,7 @@ export default Ember.Controller.extend({
   routeName: 'yarn-nodes.table'
 }, {
   text: `Node [ ${nodeInfo.id} ]`,
-  href: `#/yarn-node/${nodeInfo.id}/${nodeInfo.addr}`,
+  href: `#/yarn-node/${nodeInfo.id}/${addr}/info`,
 }, {
   text: `Application [ ${nodeInfo.appId} ]`,
 }];

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
 

[03/50] [abbrv] hadoop git commit: YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before using to access NM. Contributed by Sreenath Somarajapuram.

2018-04-10 Thread haibochen
YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before 
using to access NM. Contributed by Sreenath Somarajapuram.


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

Branch: refs/heads/YARN-1011
Commit: 42cd367c9308b944bc71de6c07b6c3f028a0d874
Parents: b779f4f
Author: Sunil G 
Authored: Wed Apr 4 22:13:14 2018 +0530
Committer: Sunil G 
Committed: Wed Apr 4 22:13:14 2018 +0530

--
 .../webapp/app/components/node-menu-panel.js| 25 
 .../webapp/app/controllers/yarn-node-app.js |  3 ++-
 .../webapp/app/controllers/yarn-node-apps.js|  3 ++-
 .../app/controllers/yarn-node-container.js  |  3 ++-
 .../app/controllers/yarn-node-containers.js |  3 ++-
 .../main/webapp/app/controllers/yarn-node.js|  3 ++-
 .../webapp/app/controllers/yarn-nodes/table.js  |  2 +-
 .../src/main/webapp/app/helpers/node-link.js|  2 +-
 .../src/main/webapp/app/initializers/loader.js  |  1 +
 .../main/webapp/app/routes/yarn-node-apps.js|  8 ---
 .../webapp/app/routes/yarn-node-containers.js   |  8 ---
 .../src/main/webapp/app/routes/yarn-node.js |  8 ---
 .../templates/components/node-menu-panel.hbs|  8 +++
 13 files changed, 57 insertions(+), 20 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
new file mode 100644
index 000..31457be
--- /dev/null
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import Ember from 'ember';
+
+export default Ember.Component.extend({
+  encodedAddr : Ember.computed("nodeAddr", function(){
+return encodeURIComponent(this.get('nodeAddr'));
+  })
+});

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
index 3dc09fc..e0d58ec 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
@@ -22,6 +22,7 @@ export default Ember.Controller.extend({
 
   breadcrumbs: Ember.computed('model.nodeInfo', function () {
 var nodeInfo = this.get('model.nodeInfo');
+var addr = encodeURIComponent(nodeInfo.addr);
 return [{
   text: "Home",
   routeName: 'application'
@@ -30,7 +31,7 @@ export default Ember.Controller.extend({
   routeName: 'yarn-nodes.table'
 }, {
   text: `Node [ ${nodeInfo.id} ]`,
-  href: `#/yarn-node/${nodeInfo.id}/${nodeInfo.addr}`,
+  href: `#/yarn-node/${nodeInfo.id}/${addr}/info`,
 }, {
   text: `Application [ ${nodeInfo.appId} ]`,
 }];

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
 

[46/50] [abbrv] hadoop git commit: YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before using to access NM. Contributed by Sreenath Somarajapuram.

2018-04-04 Thread xkrogen
YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before 
using to access NM. Contributed by Sreenath Somarajapuram.


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

Branch: refs/heads/HDFS-12943
Commit: 42cd367c9308b944bc71de6c07b6c3f028a0d874
Parents: b779f4f
Author: Sunil G 
Authored: Wed Apr 4 22:13:14 2018 +0530
Committer: Sunil G 
Committed: Wed Apr 4 22:13:14 2018 +0530

--
 .../webapp/app/components/node-menu-panel.js| 25 
 .../webapp/app/controllers/yarn-node-app.js |  3 ++-
 .../webapp/app/controllers/yarn-node-apps.js|  3 ++-
 .../app/controllers/yarn-node-container.js  |  3 ++-
 .../app/controllers/yarn-node-containers.js |  3 ++-
 .../main/webapp/app/controllers/yarn-node.js|  3 ++-
 .../webapp/app/controllers/yarn-nodes/table.js  |  2 +-
 .../src/main/webapp/app/helpers/node-link.js|  2 +-
 .../src/main/webapp/app/initializers/loader.js  |  1 +
 .../main/webapp/app/routes/yarn-node-apps.js|  8 ---
 .../webapp/app/routes/yarn-node-containers.js   |  8 ---
 .../src/main/webapp/app/routes/yarn-node.js |  8 ---
 .../templates/components/node-menu-panel.hbs|  8 +++
 13 files changed, 57 insertions(+), 20 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
new file mode 100644
index 000..31457be
--- /dev/null
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import Ember from 'ember';
+
+export default Ember.Component.extend({
+  encodedAddr : Ember.computed("nodeAddr", function(){
+return encodeURIComponent(this.get('nodeAddr'));
+  })
+});

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
index 3dc09fc..e0d58ec 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
@@ -22,6 +22,7 @@ export default Ember.Controller.extend({
 
   breadcrumbs: Ember.computed('model.nodeInfo', function () {
 var nodeInfo = this.get('model.nodeInfo');
+var addr = encodeURIComponent(nodeInfo.addr);
 return [{
   text: "Home",
   routeName: 'application'
@@ -30,7 +31,7 @@ export default Ember.Controller.extend({
   routeName: 'yarn-nodes.table'
 }, {
   text: `Node [ ${nodeInfo.id} ]`,
-  href: `#/yarn-node/${nodeInfo.id}/${nodeInfo.addr}`,
+  href: `#/yarn-node/${nodeInfo.id}/${addr}/info`,
 }, {
   text: `Application [ ${nodeInfo.appId} ]`,
 }];

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
 

hadoop git commit: YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before using to access NM. Contributed by Sreenath Somarajapuram.

2018-04-04 Thread sunilg
Repository: hadoop
Updated Branches:
  refs/heads/branch-3.1 2f326159f -> 4db13cb94


YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before 
using to access NM. Contributed by Sreenath Somarajapuram.

(cherry picked from commit 42cd367c9308b944bc71de6c07b6c3f028a0d874)


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

Branch: refs/heads/branch-3.1
Commit: 4db13cb9442afd981f32365369bf9eec9eeca9a7
Parents: 2f32615
Author: Sunil G 
Authored: Wed Apr 4 22:13:14 2018 +0530
Committer: Sunil G 
Committed: Wed Apr 4 22:24:31 2018 +0530

--
 .../webapp/app/components/node-menu-panel.js| 25 
 .../webapp/app/controllers/yarn-node-app.js |  3 ++-
 .../webapp/app/controllers/yarn-node-apps.js|  3 ++-
 .../app/controllers/yarn-node-container.js  |  3 ++-
 .../app/controllers/yarn-node-containers.js |  3 ++-
 .../main/webapp/app/controllers/yarn-node.js|  3 ++-
 .../webapp/app/controllers/yarn-nodes/table.js  |  2 +-
 .../src/main/webapp/app/helpers/node-link.js|  2 +-
 .../src/main/webapp/app/initializers/loader.js  |  1 +
 .../main/webapp/app/routes/yarn-node-apps.js|  8 ---
 .../webapp/app/routes/yarn-node-containers.js   |  8 ---
 .../src/main/webapp/app/routes/yarn-node.js |  8 ---
 .../templates/components/node-menu-panel.hbs|  8 +++
 13 files changed, 57 insertions(+), 20 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/4db13cb9/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
new file mode 100644
index 000..31457be
--- /dev/null
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import Ember from 'ember';
+
+export default Ember.Component.extend({
+  encodedAddr : Ember.computed("nodeAddr", function(){
+return encodeURIComponent(this.get('nodeAddr'));
+  })
+});

http://git-wip-us.apache.org/repos/asf/hadoop/blob/4db13cb9/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
index 3dc09fc..e0d58ec 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
@@ -22,6 +22,7 @@ export default Ember.Controller.extend({
 
   breadcrumbs: Ember.computed('model.nodeInfo', function () {
 var nodeInfo = this.get('model.nodeInfo');
+var addr = encodeURIComponent(nodeInfo.addr);
 return [{
   text: "Home",
   routeName: 'application'
@@ -30,7 +31,7 @@ export default Ember.Controller.extend({
   routeName: 'yarn-nodes.table'
 }, {
   text: `Node [ ${nodeInfo.id} ]`,
-  href: `#/yarn-node/${nodeInfo.id}/${nodeInfo.addr}`,
+  href: `#/yarn-node/${nodeInfo.id}/${addr}/info`,
 }, {
   text: `Application [ ${nodeInfo.appId} ]`,
 }];

http://git-wip-us.apache.org/repos/asf/hadoop/blob/4db13cb9/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
--
diff --git 

hadoop git commit: YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before using to access NM. Contributed by Sreenath Somarajapuram.

2018-04-04 Thread sunilg
Repository: hadoop
Updated Branches:
  refs/heads/trunk b779f4f0f -> 42cd367c9


YARN-8115. [UI2] URL data like nodeHTTPAddress must be encoded in UI before 
using to access NM. Contributed by Sreenath Somarajapuram.


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

Branch: refs/heads/trunk
Commit: 42cd367c9308b944bc71de6c07b6c3f028a0d874
Parents: b779f4f
Author: Sunil G 
Authored: Wed Apr 4 22:13:14 2018 +0530
Committer: Sunil G 
Committed: Wed Apr 4 22:13:14 2018 +0530

--
 .../webapp/app/components/node-menu-panel.js| 25 
 .../webapp/app/controllers/yarn-node-app.js |  3 ++-
 .../webapp/app/controllers/yarn-node-apps.js|  3 ++-
 .../app/controllers/yarn-node-container.js  |  3 ++-
 .../app/controllers/yarn-node-containers.js |  3 ++-
 .../main/webapp/app/controllers/yarn-node.js|  3 ++-
 .../webapp/app/controllers/yarn-nodes/table.js  |  2 +-
 .../src/main/webapp/app/helpers/node-link.js|  2 +-
 .../src/main/webapp/app/initializers/loader.js  |  1 +
 .../main/webapp/app/routes/yarn-node-apps.js|  8 ---
 .../webapp/app/routes/yarn-node-containers.js   |  8 ---
 .../src/main/webapp/app/routes/yarn-node.js |  8 ---
 .../templates/components/node-menu-panel.hbs|  8 +++
 13 files changed, 57 insertions(+), 20 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
new file mode 100644
index 000..31457be
--- /dev/null
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/node-menu-panel.js
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import Ember from 'ember';
+
+export default Ember.Component.extend({
+  encodedAddr : Ember.computed("nodeAddr", function(){
+return encodeURIComponent(this.get('nodeAddr'));
+  })
+});

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
index 3dc09fc..e0d58ec 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-app.js
@@ -22,6 +22,7 @@ export default Ember.Controller.extend({
 
   breadcrumbs: Ember.computed('model.nodeInfo', function () {
 var nodeInfo = this.get('model.nodeInfo');
+var addr = encodeURIComponent(nodeInfo.addr);
 return [{
   text: "Home",
   routeName: 'application'
@@ -30,7 +31,7 @@ export default Ember.Controller.extend({
   routeName: 'yarn-nodes.table'
 }, {
   text: `Node [ ${nodeInfo.id} ]`,
-  href: `#/yarn-node/${nodeInfo.id}/${nodeInfo.addr}`,
+  href: `#/yarn-node/${nodeInfo.id}/${addr}/info`,
 }, {
   text: `Application [ ${nodeInfo.appId} ]`,
 }];

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42cd367c/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/controllers/yarn-node-apps.js