9 |
9 |
10 from PyQt4.QtGui import QDialog, QStyle |
10 from PyQt4.QtGui import QDialog, QStyle |
11 |
11 |
12 from .Ui_AuthenticationDialog import Ui_AuthenticationDialog |
12 from .Ui_AuthenticationDialog import Ui_AuthenticationDialog |
13 |
13 |
|
14 |
14 class AuthenticationDialog(QDialog, Ui_AuthenticationDialog): |
15 class AuthenticationDialog(QDialog, Ui_AuthenticationDialog): |
15 """ |
16 """ |
16 Class implementing the authentication dialog for the help browser. |
17 Class implementing the authentication dialog for the help browser. |
17 """ |
18 """ |
18 def __init__(self, info, username, showSave = False, saveIt = False, parent = None): |
19 def __init__(self, info, username, showSave=False, saveIt=False, parent=None): |
19 """ |
20 """ |
20 Constructor |
21 Constructor |
21 |
22 |
22 @param info information to be shown (string) |
23 @param info information to be shown (string) |
23 @param username username as supplied by subversion (string) |
24 @param username username as supplied by subversion (string) |