GNOME Bugzilla – Bug 720239
Add a way to manage form passwords
Last modified: 2013-12-11 14:26:38 UTC
We currently don't have any way to manage saved form passwords - only http auth ones. This adds that capability.
Created attachment 263967 [details] [review] Add a new passwords dialog
Created attachment 263968 [details] [review] Add a popup menu to copy username and password
*** Bug 624638 has been marked as a duplicate of this bug. ***
Review of attachment 263967 [details] [review]: I think those two things need fixing, otherwise looks good! ::: src/passwords-dialog.c @@ +355,3 @@ + attributes = secret_item_get_attributes (item); + username = g_hash_table_lookup (attributes, USERNAME_KEY); + host = ephy_string_get_host_name (g_hash_table_lookup (attributes, URI_KEY)); This is leaked. @@ +423,3 @@ + if (host != NULL && g_strrstr (host, dialog->priv->search_text) != NULL) + visible = TRUE; + if (username != NULL && g_strrstr (username, dialog->priv->search_text) != NULL) else if?
Review of attachment 263968 [details] [review]: Looks good. I would probably refactor a bit but I don't want to stop you from pushing before you leave!
Attachment 263967 [details] pushed as 114f45f - Add a new passwords dialog Attachment 263968 [details] pushed as ffc391d - Add a popup menu to copy username and password