Bug 20449

Summary: Please add a tooltip for the password weakness icon
Product: Mageia Reporter: Marja Van Waes <marja11>
Component: RPM PackagesAssignee: Mageia tools maintainers <mageiatools>
Status: RESOLVED FIXED QA Contact:
Severity: enhancement    
Priority: Normal    
Version: Cauldron   
Target Milestone: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Source RPM: userdrake, drakxtools CVE:
Status comment:

Description Marja Van Waes 2017-03-11 11:32:27 CET
It seems we did, at some time, intend to have a tooltip for detected password strength in one or more of our tools: 

http://gitweb.mageia.org/software/drakx/tree/perl-install/mygtk3.pm#n1643

(which is right below the "sub _get_weakness_icon" section)

sub _get_weakness_tooltip {
    my ($password_weakness) = @_;
    my %weakness_tooltip = (
        1 => N("Password is trivial to guess"),
        2 => N("Password is trivial to guess"),
        3 => N("Password should be resistant to basic attacks"),
        4 => N("Password seems secure"),
        5 => N("Password seems secure"));
    my $weakness_tooltip = $weakness_tooltip{$password_weakness} || return undef;
    return $weakness_tooltip;
}


However, there's no such tooltip in userdrake.

It would be nice to have a tooltip for the different colours of the shield icon when entering or changing a password there.
Comment 1 Marja Van Waes 2017-03-11 11:40:26 CET
There's no such tooltip in adduserdrake, either
Comment 2 Marja Van Waes 2019-02-20 07:49:00 CET
The tooltip works again in userdrake and adduserdrake, at least in cauldron.

Closing

Resolution: (none) => FIXED
Status: NEW => RESOLVED