Bug 20449 - Please add a tooltip for the password weakness icon
Summary: Please add a tooltip for the password weakness icon
Status: RESOLVED FIXED
Alias: None
Product: Mageia
Classification: Unclassified
Component: RPM Packages (show other bugs)
Version: Cauldron
Hardware: All Linux
Priority: Normal enhancement
Target Milestone: ---
Assignee: Mageia tools maintainers
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-11 11:32 CET by Marja Van Waes
Modified: 2019-02-20 07:49 CET (History)
0 users

See Also:
Source RPM: userdrake, drakxtools
CVE:
Status comment:


Attachments

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


Note You need to log in before you can comment on or make changes to this bug.