eric7.Plugins.VcsPlugins.vcsPySvn.SvnLoginDialog

Module implementing the login dialog for pysvn.

Global Attributes

None

Classes

SvnLoginDialog Class implementing the login dialog for pysvn.

Functions

None


SvnLoginDialog

Class implementing the login dialog for pysvn.

Derived from

QDialog, Ui_SvnLoginDialog

Class Attributes

None

Class Methods

None

Methods

SvnLoginDialog Constructor
getData Public method to retrieve the login data.

Static Methods

None

SvnLoginDialog (Constructor)

SvnLoginDialog(realm, username, may_save, parent=None)

Constructor

realm (str)
name of the realm of the requested credentials
username (str)
username as supplied by subversion
may_save (bool)
flag indicating, that subversion is willing to save the answers returned
parent (QWidget)
reference to the parent widget

SvnLoginDialog.getData

getData()

Public method to retrieve the login data.

Return:
tuple containing the username, the password and a flag to save the data
Return Type:
tuple of (str, str, bool)
Up