From commits-return-47783-archive-asf-public=cust-asf.ponee.io@qpid.apache.org Mon Feb 4 16:38:59 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 2BF3E180651 for ; Mon, 4 Feb 2019 17:38:59 +0100 (CET) Received: (qmail 51904 invoked by uid 500); 4 Feb 2019 16:38:58 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 51895 invoked by uid 99); 4 Feb 2019 16:38:58 -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; Mon, 04 Feb 2019 16:38:58 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B321786273; Mon, 4 Feb 2019 16:38:57 +0000 (UTC) Date: Mon, 04 Feb 2019 16:38:57 +0000 To: "commits@qpid.apache.org" Subject: [qpid-dispatch] branch master updated: DISPATCH-1263 Fixed the urlPrefix for sender/receiver symbols MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154929833765.25256.5630485251971707998@gitbox.apache.org> From: eallen@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: qpid-dispatch X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5ef146d159457892ddcdcca533487733c1ab4987 X-Git-Newrev: 1cbc2d7b97cc645464137bdf19b840ca7110b2ec X-Git-Rev: 1cbc2d7b97cc645464137bdf19b840ca7110b2ec X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. eallen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git The following commit(s) were added to refs/heads/master by this push: new 1cbc2d7 DISPATCH-1263 Fixed the urlPrefix for sender/receiver symbols 1cbc2d7 is described below commit 1cbc2d7b97cc645464137bdf19b840ca7110b2ec Author: Ernest Allen AuthorDate: Mon Feb 4 11:38:44 2019 -0500 DISPATCH-1263 Fixed the urlPrefix for sender/receiver symbols --- console/stand-alone/plugin/css/dispatch.css | 3 --- console/stand-alone/plugin/js/topology/qdrTopology.js | 7 ++++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/console/stand-alone/plugin/css/dispatch.css b/console/stand-alone/plugin/css/dispatch.css index 709ce43..39a7284 100644 --- a/console/stand-alone/plugin/css/dispatch.css +++ b/console/stand-alone/plugin/css/dispatch.css @@ -1064,9 +1064,6 @@ svg { circle.node.inter-router { fill: #EAEAEA; } - circle.node.normal { - fill: #FAFAFA; - } circle.node.normal.in { fill: #F0F000; } diff --git a/console/stand-alone/plugin/js/topology/qdrTopology.js b/console/stand-alone/plugin/js/topology/qdrTopology.js index 9b75668..abc932a 100644 --- a/console/stand-alone/plugin/js/topology/qdrTopology.js +++ b/console/stand-alone/plugin/js/topology/qdrTopology.js @@ -267,6 +267,7 @@ export class TopologyController { mouseover_node = null; selected_node = null; + d3.select("#SVG_ID").remove(); if (d3.select("#SVG_ID").empty()) { svg = d3 .select("#topology") @@ -623,7 +624,7 @@ export class TopologyController { ); }); - appendCircle(enterCircle) + appendCircle(enterCircle, urlPrefix) .on("mouseover", function (d) { // mouseover a circle $scope.current_node = d; @@ -795,8 +796,8 @@ export class TopologyController { function updateLegend() { // dynamically create/update the legend based on which node types are present - let lsvg = new Legend(svg); - lsvg.update(svg, QDRLog, urlPrefix); + let lsvg = new Legend(svg, QDRLog, urlPrefix); + lsvg.update(svg); } function showToolTip(title, event) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org