You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by sr...@apache.org on 2015/11/05 03:44:05 UTC

tez git commit: TEZ-2915. Tez UI: Getting back to the DAG details page is difficult (sree)

Repository: tez
Updated Branches:
  refs/heads/master 0e7f54c9b -> 3d856ef69


TEZ-2915. Tez UI: Getting back to the DAG details page is difficult (sree)


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

Branch: refs/heads/master
Commit: 3d856ef69d5410de205d6dc5a7e75afcfa56d968
Parents: 0e7f54c
Author: Sreenath Somarajapuram <sr...@apache.org>
Authored: Thu Nov 5 08:13:39 2015 +0530
Committer: Sreenath Somarajapuram <sr...@apache.org>
Committed: Thu Nov 5 08:13:39 2015 +0530

----------------------------------------------------------------------
 CHANGES.txt                                           | 1 +
 tez-ui/src/main/webapp/app/templates/task.hbs         | 4 ++--
 tez-ui/src/main/webapp/app/templates/task_attempt.hbs | 6 +++---
 tez-ui/src/main/webapp/app/templates/tasks.hbs        | 2 +-
 tez-ui/src/main/webapp/app/templates/vertex.hbs       | 2 +-
 5 files changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/3d856ef6/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 29a8151..bc94af5 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES
   TEZ-2679. Admin forms of launch env settings
 
 ALL CHANGES:
+  TEZ-2915. Tez UI: Getting back to the DAG details page is difficult
   TEZ-2895. Tez UI: Add option to enable and disable in-progress
   TEZ-2894. Tez UI: Disable sorting for few columns while in progress. Display an alert on trying to sort them
   TEZ-2893. Tez UI: Retain vertex info displayed in DAG details page even after completion

http://git-wip-us.apache.org/repos/asf/tez/blob/3d856ef6/tez-ui/src/main/webapp/app/templates/task.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/task.hbs b/tez-ui/src/main/webapp/app/templates/task.hbs
index 965e731..655ace1 100644
--- a/tez-ui/src/main/webapp/app/templates/task.hbs
+++ b/tez-ui/src/main/webapp/app/templates/task.hbs
@@ -18,8 +18,8 @@
 
 <ul class="breadcrumb">
   <li>{{#link-to 'application'}}<i class="fa fa-home"> All DAGs</i>{{/link-to}} <span class="divider"></span></li>
-  <li>{{#link-to 'dag.vertices' dagID}}DAG [ {{dagName}} ]{{/link-to}} <span class="divider"></span></li>
-  <li>{{#link-to 'vertex.tasks' vertexID}}Vertex [ {{vertexName}} ] {{/link-to}} <span class="divider"></span></li>
+  <li>{{#link-to 'dag' dagID}}DAG [ {{dagName}} ]{{/link-to}} <span class="divider"></span></li>
+  <li>{{#link-to 'vertex' vertexID}}Vertex [ {{vertexName}} ] {{/link-to}} <span class="divider"></span></li>
   <li class="active">Task [ {{index}} ]</li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/tez/blob/3d856ef6/tez-ui/src/main/webapp/app/templates/task_attempt.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/task_attempt.hbs b/tez-ui/src/main/webapp/app/templates/task_attempt.hbs
index 758e66f..518348e 100644
--- a/tez-ui/src/main/webapp/app/templates/task_attempt.hbs
+++ b/tez-ui/src/main/webapp/app/templates/task_attempt.hbs
@@ -18,9 +18,9 @@
 
 <ul class="breadcrumb">
   <li>{{#link-to 'application'}}<i class="fa fa-home"> All DAGs</i>{{/link-to}} <span class="divider"></span></li>
-  <li>{{#link-to 'dag.vertices' dagID}}DAG [ {{dagName}} ] {{/link-to}} <span class="divider"></span></li>
-  <li>{{#link-to 'vertex.tasks' vertexID}}Vertex [ {{vertexName}} ] {{/link-to}} <span class="divider"></span></li>
-  <li>{{#link-to 'task.attempts' taskID}}Task [ {{taskIndex}} ] {{/link-to}} <span class="divider"></span></li>
+  <li>{{#link-to 'dag' dagID}}DAG [ {{dagName}} ] {{/link-to}} <span class="divider"></span></li>
+  <li>{{#link-to 'vertex' vertexID}}Vertex [ {{vertexName}} ] {{/link-to}} <span class="divider"></span></li>
+  <li>{{#link-to 'task' taskID}}Task [ {{taskIndex}} ] {{/link-to}} <span class="divider"></span></li>
   <li class="active">Task Attempt [ {{index}} ]</li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/tez/blob/3d856ef6/tez-ui/src/main/webapp/app/templates/tasks.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/tasks.hbs b/tez-ui/src/main/webapp/app/templates/tasks.hbs
index 70d299f..350b4e3 100644
--- a/tez-ui/src/main/webapp/app/templates/tasks.hbs
+++ b/tez-ui/src/main/webapp/app/templates/tasks.hbs
@@ -18,7 +18,7 @@
 
 <ul class="breadcrumb">
   <li>{{#link-to 'application'}}<i class="fa fa-home"> All DAGs</i>{{/link-to}} <span class="divider"></span></li>
-  <li>{{#link-to 'dag.index' parentID}}DAG [ {{parentName}} ]{{/link-to}} <span class="divider"></span></li>
+  <li>{{#link-to 'dag' parentID}}DAG [ {{parentName}} ]{{/link-to}} <span class="divider"></span></li>
   <li class="active">Tasks</li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/tez/blob/3d856ef6/tez-ui/src/main/webapp/app/templates/vertex.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/vertex.hbs b/tez-ui/src/main/webapp/app/templates/vertex.hbs
index da68219..251bb16 100644
--- a/tez-ui/src/main/webapp/app/templates/vertex.hbs
+++ b/tez-ui/src/main/webapp/app/templates/vertex.hbs
@@ -18,7 +18,7 @@
 
 <ul class="breadcrumb">
   <li>{{#link-to 'application'}}<i class="fa fa-home"> All DAGs</i>{{/link-to}} <span class="divider"></span></li>
-  <li>{{#link-to 'dag.vertices' dagID}}DAG [ {{dag.name}}  ] {{/link-to}} <span class="divider"></span></li>
+  <li>{{#link-to 'dag' dagID}}DAG [ {{dag.name}}  ] {{/link-to}} <span class="divider"></span></li>
   <li class="active">Vertex [ {{name}} ]</li>
 </ul>