Return-Path: X-Original-To: apmail-tez-commits-archive@minotaur.apache.org Delivered-To: apmail-tez-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6357E17792 for ; Thu, 7 May 2015 12:22:22 +0000 (UTC) Received: (qmail 44414 invoked by uid 500); 7 May 2015 12:22:22 -0000 Delivered-To: apmail-tez-commits-archive@tez.apache.org Received: (qmail 44381 invoked by uid 500); 7 May 2015 12:22:22 -0000 Mailing-List: contact commits-help@tez.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tez.apache.org Delivered-To: mailing list commits@tez.apache.org Received: (qmail 44372 invoked by uid 99); 7 May 2015 12:22:22 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 May 2015 12:22:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 30DC2E441F; Thu, 7 May 2015 12:22:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: prakash@apache.org To: commits@tez.apache.org Message-Id: <435c3d923cca44b88f63fe0d492cd702@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: tez git commit: TEZ-2423. Tez UI: Remove Attempt Index column from task->attempts page (Sreenath Somarajapuram via pramachandran) Date: Thu, 7 May 2015 12:22:22 +0000 (UTC) Repository: tez Updated Branches: refs/heads/master 70cd396d2 -> a382324c2 TEZ-2423. Tez UI: Remove Attempt Index column from task->attempts page (Sreenath Somarajapuram via pramachandran) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/a382324c Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/a382324c Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/a382324c Branch: refs/heads/master Commit: a382324c24a30ef7b632ca1f003a90873ac802e3 Parents: 70cd396 Author: Prakash Ramachandran Authored: Thu May 7 17:52:00 2015 +0530 Committer: Prakash Ramachandran Committed: Thu May 7 17:52:00 2015 +0530 ---------------------------------------------------------------------- CHANGES.txt | 1 + .../controllers/task_task_attempts_controller.js | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/a382324c/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index c3d48b6..8de61b0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -20,6 +20,7 @@ INCOMPATIBLE CHANGES Default max limit increased. Should not affect existing users. ALL CHANGES: + TEZ-2423. Tez UI: Remove Attempt Index column from task->attempts page TEZ-2416. Tez UI: Make tooltips display faster. TEZ-2404. Handle DataMovementEvent before its TaskAttemptCompletedEvent TEZ-2424. Bump up max counter group name length limit to account for per_io counters. http://git-wip-us.apache.org/repos/asf/tez/blob/a382324c/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js ---------------------------------------------------------------------- diff --git a/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js b/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js index c5c9eea..d211479 100644 --- a/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js +++ b/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js @@ -62,21 +62,6 @@ App.TaskAttemptsController = App.TablePageController.extend(App.AutoCounterColum var that = this; return [ { - id: 'id', - headerCellName: 'Attempt Index', - templateName: 'components/basic-table/linked-cell', - contentPath: 'id', - getCellContent: function (row) { - var id = row.get('id'), - idPrefix = 'attempt_%@_'.fmt(row.get('dagID').substr(4)); - return { - linkTo: 'taskAttempt', - entityId: id, - displayText: id.indexOf(idPrefix) == 0 ? id.substr(idPrefix.length) : id - }; - } - }, - { id: 'attemptNo', headerCellName: 'Attempt No', templateName: 'components/basic-table/linked-cell',