summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/login.py
AgeCommit message (Collapse)Author
2015-09-17[style] pep8 fixesKali Kaneko
2015-06-22[feat] replace old log handler with new oneIvan Alejandro
Replace logging.getLogger with custom get_logger. Remove some unneeded dependencies and reorder other.
2015-04-09[bug] handle user cancel keyring open operationIvan Alejandro
Catch the keyring.errors.InitError exception. The automatic login sequence now stops correctly instead of freezing if the user cancel the keyring open operation. - Resolves: #6682
2015-01-28Remove all the Slot() decorators.Ivan Alejandro
This causes (on certain scenarios) the app to segfault and it is really hard to debug.
2015-01-28Enable signal connect/disconnect logic.Ivan Alejandro
Now it's working and no longer segfaults, so we can enable safely this feature again. Stop tracking the gui connections on wizard.
2014-12-19Refactor login usage.Ivan Alejandro
- factor out the signal tracking code as a helper class, - move login logic from MainWindow to LoginWidget, - add new signals to the LoginWidget to interact with MainWindow, - add login sequence docs to LoginWidget class, - improve docs for login methods, - add LoginState class to handle login states, - disable login button until data is entered, - move some properties and actions to .ui file.
2014-08-14moved provider selection popup menu to be at the top of the main windowelijah
2014-08-13Stop the services if the selected provider is changed.Ivan Alejandro
Store the last 2 indexes on a deque and improve the 'select previous provider' action.
2014-07-31Enable keyring againTomás Touceda
2014-07-24Disable user/pass remembering temporarily.Ivan Alejandro
Set the keyring to None in order to simulate an always unavailable keyring, that way we avoid the possibility of the user running into the existing keyring issues. See https://leap.se/code/issues/4190 Update comparisons to do a proper comparison with `None`. Fix login widget 'enabled' changer in order to change the 'remember' widget *only* if we have an usable keyring.
2014-05-21Update username regex to support the same as webapp.Ivan Alejandro
Rename password util to credentials and add a username check helper. Move the username regexp to the credentials module. Closes #5695.
2014-04-17Improve parameters docstrings.Ivan Alejandro
Also rename a parameter named 'param' to a more meaningful 'idx'.
2014-04-17Use consistent wording for triggers documentation.Ivan Alejandro
2014-04-17Use Slot decorator instead of SLOT docstring.Ivan Alejandro
2014-02-20Improve logout action and fix typo.Ivan Alejandro
Related to #5131. [Closes #4815]
2014-01-13Use set_status for all messages.Ivan Alejandro
Remove set_login_status since it's a remaining code after split the login in a separated widget. [Closes #4942]
2014-01-11offline modeKali Kaneko
This will skip: * srp authentication with server * remote soledad configuration * keymanager sending key to server * imap fetches. Its main goal is to help us while debugging imap accounts, by cutting almost all communication with server. It will break havoc if you use it without having local keys configured. So, basically, use with care.
2013-10-30Refactor keyring usage and fix saving problemTomás Touceda
2013-10-29Update docstrings to unicode types.Ivan Alejandro
2013-10-16Remember last domain used to login. Closes #4116.Ivan Alejandro
2013-10-08Hide login error message when editing lnUser and lnPasswordTomás Touceda
2013-10-03Disable EIP on/off button and action when login required.Kali Kaneko
Also adds an explicit should_autostart flag in config.
2013-10-02Hide logout error message labelTomás Touceda
2013-10-01Hide error message label when starting a new loginTomás Touceda
2013-10-01Implement new UITomás Touceda
Also: - Remove status_panel - Add new icons - Refactor components a bit (mostly divide functionality)
2013-08-12fix imports to use new namespaceKali Kaneko
2013-08-12move everything into bitmask namespaceKali Kaneko