Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 49953200CC9 for ; Mon, 17 Jul 2017 19:58:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 47ED11655E4; Mon, 17 Jul 2017 17:58:17 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9154A1655C3 for ; Mon, 17 Jul 2017 19:58:16 +0200 (CEST) Received: (qmail 80131 invoked by uid 500); 17 Jul 2017 17:58:10 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 68835 invoked by uid 99); 17 Jul 2017 17:57:56 -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; Mon, 17 Jul 2017 17:57:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id ECC1FF555B; Mon, 17 Jul 2017 17:57:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: appy@apache.org To: commits@hbase.apache.org Date: Mon, 17 Jul 2017 17:58:59 -0000 Message-Id: In-Reply-To: <7015d67bb4404c3487d0d943c7817331@git.apache.org> References: <7015d67bb4404c3487d0d943c7817331@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [66/94] [abbrv] hbase git commit: HBASE-18341 (addendum) Replace '.' in test names with '_' when using them as html ids since dot have special significance in CSS selectors. Without it, we weren't able to select elements and add svg (trends columns) to t archived-at: Mon, 17 Jul 2017 17:58:17 -0000 HBASE-18341 (addendum) Replace '.' in test names with '_' when using them as html ids since dot have special significance in CSS selectors. Without it, we weren't able to select elements and add svg (trends columns) to them. Change-Id: Ia63ff0851f0a2fad0789a24edf2f0ad00060d578 Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7d08c781 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7d08c781 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7d08c781 Branch: refs/heads/HBASE-14070.HLC Commit: 7d08c78103792e599b0676c318da1aca54501289 Parents: 7d007ea Author: Apekshit Sharma Authored: Mon Jul 10 12:01:02 2017 -0700 Committer: Apekshit Sharma Committed: Mon Jul 10 12:04:05 2017 -0700 ---------------------------------------------------------------------- dev-support/flaky-dashboard-template.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/7d08c781/dev-support/flaky-dashboard-template.html ---------------------------------------------------------------------- diff --git a/dev-support/flaky-dashboard-template.html b/dev-support/flaky-dashboard-template.html index 49ab9b0..f37c7d5 100644 --- a/dev-support/flaky-dashboard-template.html +++ b/dev-support/flaky-dashboard-template.html @@ -156,7 +156,8 @@ Legend : green: success, red: failed, yellow: timeout, blue: hanging {{ failed|length }} / {{ timeout|length }} / {{ hanging|length }} - {% set sparkline_id = "sparkline_" ~ test ~ "_" ~ url_counter %} + {# Replace '.' in test names with '_' because dots are part of css selectors. #} + {% set sparkline_id = "sparkline_" ~ test|replace(".","_") ~ "_" ~ url_counter %}