From bfd25ab70613a5c5087d30a9469d0d3241ea4609 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Thu, 17 Oct 2019 05:01:27 -0500 Subject: [PATCH] removed web password from details and fixed python powered image --- onionr/onionrcommands/onionrstatistics.py | 3 +-- static-data/www/private/main.css | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/onionr/onionrcommands/onionrstatistics.py b/onionr/onionrcommands/onionrstatistics.py index 303aa8f8..53d0b980 100755 --- a/onionr/onionrcommands/onionrstatistics.py +++ b/onionr/onionrcommands/onionrstatistics.py @@ -88,7 +88,6 @@ def show_stats(): def show_details(): details = { 'Node Address' : gethostname.get_hostname(), - 'Web Password' : config.get('client.webpassword'), 'Public Key' : onionrcrypto.pub_key.replace('=', ''), 'Human-readable Public Key' : mnemonickeys.get_human_readable_ID() } @@ -96,5 +95,5 @@ def show_details(): for detail in details: logger.info('%s%s: \n%s%s\n' % (logger.colors.fg.lightgreen, detail, logger.colors.fg.green, details[detail]), terminal = True) -show_details.onionr_help = "Shows relevant information for your Onionr install: note address, web password and active public key." +show_details.onionr_help = "Shows relevant information for your Onionr install: node address, and active public key." show_stats.onionr_help = "Shows statistics for your Onionr node. Slow if Onionr is not running" diff --git a/static-data/www/private/main.css b/static-data/www/private/main.css index 059f0273..7a1a0d3b 100755 --- a/static-data/www/private/main.css +++ b/static-data/www/private/main.css @@ -25,3 +25,7 @@ margin-right: 1em; margin-bottom: 1em; } + +.modal img{ + border-radius: 5px; +} \ No newline at end of file