From common-commits-return-92044-archive-asf-public=cust-asf.ponee.io@hadoop.apache.org Wed Jan 2 19:36:02 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 11740180662 for ; Wed, 2 Jan 2019 19:36:01 +0100 (CET) Received: (qmail 6844 invoked by uid 500); 2 Jan 2019 18:35:53 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 6635 invoked by uid 99); 2 Jan 2019 18:35:53 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jan 2019 18:35:53 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D69D1821C3; Wed, 2 Jan 2019 18:35:51 +0000 (UTC) Date: Wed, 02 Jan 2019 18:36:08 +0000 To: "common-commits@hadoop.apache.org" Subject: [hadoop] 18/19: HDFS-14151. RBF: Make the read-only column of Mount Table clearly understandable. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: inigoiri@apache.org In-Reply-To: <154645415090.31716.6310364697662725898@gitbox.apache.org> References: <154645415090.31716.6310364697662725898@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: hadoop X-Git-Refname: refs/heads/HDFS-13891 X-Git-Reftype: branch X-Git-Rev: fe5080609ebe438dc826ab7f5d8c23d392f36e07 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190102183551.D69D1821C3@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. inigoiri pushed a commit to branch HDFS-13891 in repository https://gitbox.apache.org/repos/asf/hadoop.git commit fe5080609ebe438dc826ab7f5d8c23d392f36e07 Author: Takanobu Asanuma AuthorDate: Tue Dec 18 19:47:36 2018 +0900 HDFS-14151. RBF: Make the read-only column of Mount Table clearly understandable. --- .../hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.html | 2 +- .../hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.js | 1 + .../hadoop-hdfs-rbf/src/main/webapps/static/rbf.css | 8 +------- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.html b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.html index 068988c..0f089fe 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.html +++ b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.html @@ -408,7 +408,7 @@ {nameserviceId} {path} {order} - + {ownerName} {groupName} {mode} diff --git a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.js b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.js index 6311a80..bb8e057 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.js +++ b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/router/federationhealth.js @@ -317,6 +317,7 @@ for (var i = 0, e = mountTable.length; i < e; ++i) { if (mountTable[i].readonly == true) { mountTable[i].readonly = "true" + mountTable[i].status = "Read only" } else { mountTable[i].readonly = "false" } diff --git a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/static/rbf.css b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/static/rbf.css index 43112af..5cdd826 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/static/rbf.css +++ b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/webapps/static/rbf.css @@ -132,12 +132,6 @@ } .mount-table-read-only-true:before { - color: #c7254e; - content: "\e033"; -} - -.mount-table-read-only-false:before { color: #5fa341; - content: "\e013"; + content: "\e033"; } - --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org