# HG changeset patch # User Chris Cannam # Date 1309350967 -3600 # Node ID 568abb6780731c63d3a41cf943029c40506cc9b4 # Parent f778dfb6a42fea4d5a89474d627746811ab0a94a Remember username as well as password diff -r f778dfb6a42f -r 568abb678073 easyhg.py --- a/easyhg.py Wed Jun 29 13:09:01 2011 +0100 +++ b/easyhg.py Wed Jun 29 13:36:07 2011 +0100 @@ -174,9 +174,7 @@ authkey = self.ui.config('easyhg', 'authkey') authfile = self.ui.config('easyhg', 'authfile') use_authfile = (easyhg_authfile_imports_ok and authkey and authfile) - if authfile: - authfile = os.path.expanduser(authfile) - authdata = None + if authfile: authfile = os.path.expanduser(authfile) dialog = QtGui.QDialog() layout = QtGui.QGridLayout() @@ -202,21 +200,34 @@ remember_field = None remember = False + authconfig = None + authdata = None if use_authfile: + authconfig = ConfigParser.RawConfigParser() load_config(authconfig, authfile) remember = get_boolean_from_config(authconfig, 'preferences', 'remember', False) - authdata = get_from_config(authconfig, 'auth', - remote_key(short_uri, user, authkey)) - if authdata: - cachedpwd = decrypt_salted(authdata, authkey) - passwd_field.setText(cachedpwd) + + if not user: + authdata = get_from_config(authconfig, 'user', + remote_key(short_uri, '', authkey)) + if authdata: + user = decrypt_salted(authdata, authkey) + user_field.setText(user) + + if not passwd: + authdata = get_from_config(authconfig, 'auth', + remote_key(short_uri, user, authkey)) + if authdata: + passwd = decrypt_salted(authdata, authkey) + passwd_field.setText(passwd) + remember_field = QtGui.QCheckBox() remember_field.setChecked(remember) - remember_field.setText(_('Remember passwords while EasyMercurial is running')) + remember_field.setText(_('Remember these details while EasyMercurial is running')) layout.addWidget(remember_field, 3, 1) bb = QtGui.QDialogButtonBox() @@ -236,6 +247,8 @@ user_field.setFocus(True) elif not passwd: passwd_field.setFocus(True) + else: + ok.setFocus(True) dialog.raise_() ok = dialog.exec_() @@ -249,7 +262,13 @@ remember = remember_field.isChecked() set_to_config(authconfig, 'preferences', 'remember', remember) if user: - if passwd and remember: + if remember: + authdata = encrypt_salted(user, authkey) + set_to_config(authconfig, 'user', remote_key(short_uri, '', authkey), authdata) + else: + set_to_config(authconfig, 'user', remote_key(short_uri, '', authkey), '') + if passwd: + if remember: authdata = encrypt_salted(passwd, authkey) set_to_config(authconfig, 'auth', remote_key(short_uri, user, authkey), authdata) else: