summaryrefslogtreecommitdiff
path: root/src/leap/gui
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-10-19 11:02:44 +0900
committerkali <kali@leap.se>2012-10-19 11:02:44 +0900
commitb0be517ed8b2fb9dd0a38dad5b5c06741b6b9b09 (patch)
tree8a34804d2b4023ec8c94f5251691518ed29873fe /src/leap/gui
parentc45e6d34b1beb44d4eb7cecd6426f6c762249484 (diff)
add bug number in log for #638 cases (domain name mismatch)
Diffstat (limited to 'src/leap/gui')
-rwxr-xr-xsrc/leap/gui/firstrunwizard.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/leap/gui/firstrunwizard.py b/src/leap/gui/firstrunwizard.py
index 55338090..8bb40cdc 100755
--- a/src/leap/gui/firstrunwizard.py
+++ b/src/leap/gui/firstrunwizard.py
@@ -713,14 +713,11 @@ class LogInPage(QtGui.QWizardPage, UserFormMixIn):
validationMsg = QtGui.QLabel("")
validationMsg.setStyleSheet(ErrorLabelStyleSheet)
-
self.validationMsg = validationMsg
layout.addWidget(validationMsg, 0, 3)
-
layout.addWidget(userNameLabel, 1, 0)
layout.addWidget(self.userNameLineEdit, 1, 3)
-
layout.addWidget(userPasswordLabel, 2, 0)
layout.addWidget(self.userPasswordLineEdit, 2, 3)
@@ -788,13 +785,10 @@ class RegisterUserPage(QtGui.QWizardPage, UserFormMixIn):
self.validationMsg = validationMsg
layout.addWidget(validationMsg, 0, 3)
-
layout.addWidget(userNameLabel, 1, 0)
layout.addWidget(self.userNameLineEdit, 1, 3)
-
layout.addWidget(userPasswordLabel, 2, 0)
layout.addWidget(self.userPasswordLineEdit, 2, 3)
-
layout.addWidget(rememberPasswordCheckBox, 3, 3, 3, 4)
self.setLayout(layout)
@@ -834,9 +828,11 @@ class RegisterUserPage(QtGui.QWizardPage, UserFormMixIn):
# XXX enforce https
# and pass a verify value
+ domain = self.field('provider_domain')
+
signup = LeapSRPRegister(
schema="http",
- provider="springbok",
+ provider=domain,
# debug -----
#provider="localhost",
@@ -942,6 +938,6 @@ if __name__ == '__main__':
logger.setLevel(logging.DEBUG)
app = QtGui.QApplication(sys.argv)
- wizard = FirstRunWizard(providers=('springbok',))
+ wizard = FirstRunWizard() # providers=('springbok',))
wizard.show()
sys.exit(app.exec_())