public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Matthias Fischer <matthias.fischer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH v2] WebUI: print more information on used nameservers
Date: Sun, 17 Sep 2017 09:39:37 +0200	[thread overview]
Message-ID: <21e80198-bf62-b9b7-3650-6cecd20e5fc3@ipfire.org> (raw)
In-Reply-To: <20170908195822.6af0659b.peter.mueller@link38.eu>

[-- Attachment #1: Type: text/plain, Size: 2734 bytes --]

Hi,

Working on some 'cosmetics', I would suggest to add a few
"align="center=" (Looks somehow better - please see below):

On 08.09.2017 19:58, Peter Müller wrote:
> Show rDNS/PTR entry and country flag of the used nameservers on the
> nameserver status list at "netexternal.cgi".
> 
> These information might be useful for debugging, or are just "nice to
> have" and do not harm anything. :-)
> 
> Changes since v1: Corrected file link to country.cgi and added title to flag.
> Please disregard the first version of this patch.
> 
> Signed-off-by: Peter Müller <peter.mueller(a)link38.eu>
> ---
> diff --git a/html/cgi-bin/netexternal.cgi b/html/cgi-bin/netexternal.cgi
> index 299612d4c..6fe0cc7d6 100644
> --- a/html/cgi-bin/netexternal.cgi
> +++ b/html/cgi-bin/netexternal.cgi
> @@ -25,9 +25,13 @@ use strict;
>  #use warnings;
>  #use CGI::Carp 'fatalsToBrowser';
>  
> +use IO::Socket;
> +use Geo::IP::PurePerl;
> +
>  require '/var/ipfire/general-functions.pl';
>  require "${General::swroot}/lang.pl";
>  require "${General::swroot}/header.pl";
> +require "${General::swroot}/geoip-functions.pl";
>  require "${General::swroot}/graphs.pl";
>  
>  my %color = ();
> @@ -99,6 +103,12 @@ if ( $querry[0] ne~ ""){
>  						<strong>$Lang::tr{'nameserver'}</strong>
>  					</th>
>  					<th align="center">
> +						<strong>$Lang::tr{'flag'}</strong>
> +					</th>
> +					<th align="center">
> +						<strong>$Lang::tr{'rdns'}</strong>
> +					</th>
> +					<th align="center">
>  						<strong>$Lang::tr{'status'}</strong>
>  					</th>
>  				</tr>
> @@ -139,9 +149,22 @@ END
>  
>  		my $table_colour = ($id++ % 2) ? $color{'color22'} : $color{'color20'};
>  
> +		# Get rDNS entry for nameserver (might be useful)
> +		my $iaddr = inet_aton($nameserver);
> +		my $rdns = gethostbyaddr($iaddr, AF_INET);
> +	        if (!$rdns) { $rdns = $Lang::tr{'lookup failed'}; }
> +		
> +		# Get country flag for the nameserver (might be useful)
> +		my $gi = Geo::IP::PurePerl->new();
> +	        my $ccode = $gi->country_code_by_name($nameserver);
> +       		my $fcode = lc($ccode);
> +	        my $flag_icon = &GeoIP::get_flag_icon($fcode);
> +
>  		print <<END;
>  			<tr bgcolor="$table_colour">
>  				<td>$nameserver</td>

Changed to: <td align="center">$nameserver</td>

> +				<td align="center"><a href="country.cgi#$fcode"><img src="$flag_icon" border="0" align="absmiddle" alt="$ccode" title="$ccode"></a></td>	
> +				<td>$rdns</td>

Changed to: <td align="center">$rdns</td>

>  				<td bgcolor="$bgcolour" align="center">
>  					<font color="$colour"><strong>$message</strong></font>
>  				</td>
> ...
...

Jm2C! ;-)

Best,
Matthias

      parent reply	other threads:[~2017-09-17  7:39 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-08 17:58 Peter Müller
2017-09-09 10:37 ` Matthias Fischer
2017-09-12  4:38   ` Peter Müller
2017-09-12 16:26     ` Matthias Fischer
2017-09-14 20:41       ` Michael Tremer
2017-09-15 15:05         ` Matthias Fischer
2017-09-15 20:26           ` CA and HTTPS usage on *.ipfire.org (was: Re: [PATCH v2] WebUI: print more information on used nameservers) Peter Müller
2017-09-24 22:00             ` Michael Tremer
2017-09-25 15:48               ` Peter Müller
2017-10-25 14:25                 ` CA and HTTPS usage on *.ipfire.org Michael Tremer
2017-10-25 20:12                   ` Peter Müller
2017-10-26 10:31                     ` Michael Tremer
2017-10-26 19:24                       ` Peter Müller
2017-10-27 14:44                         ` Michael Tremer
2018-01-29 12:14                           ` Michael Tremer
2018-01-29 14:17                             ` Jeffrey Walton
2017-09-17  7:39 ` Matthias Fischer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=21e80198-bf62-b9b7-3650-6cecd20e5fc3@ipfire.org \
    --to=matthias.fischer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox