summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrun
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-11-12 12:25:11 +0900
committerkali <kali@leap.se>2012-11-12 12:25:11 +0900
commitfe16e62fa83c24d2ef379a3f9e102d336e527656 (patch)
tree53baa59579c2ba15820ae342c693a97518a872ef /src/leap/gui/firstrun
parent13c4bd9087e4caaf9e440efa210d5762b8aca875 (diff)
cleanup errors on page init and on field change
Diffstat (limited to 'src/leap/gui/firstrun')
-rw-r--r--src/leap/gui/firstrun/providerinfo.py3
-rw-r--r--src/leap/gui/firstrun/providerselect.py18
-rw-r--r--src/leap/gui/firstrun/register.py18
3 files changed, 34 insertions, 5 deletions
diff --git a/src/leap/gui/firstrun/providerinfo.py b/src/leap/gui/firstrun/providerinfo.py
index 0c557d66..ef3b32c1 100644
--- a/src/leap/gui/firstrun/providerinfo.py
+++ b/src/leap/gui/firstrun/providerinfo.py
@@ -31,6 +31,9 @@ class ProviderInfoPage(ValidationPage):
QtGui.QWizard.LogoPixmap,
QtGui.QPixmap(APP_LOGO))
+ self.prev_page = "providerselection"
+ #self.current_page = "providerinfo"
+
def create_info_panel(self):
# Use stacked widget instead
# of reparenting the layout.
diff --git a/src/leap/gui/firstrun/providerselect.py b/src/leap/gui/firstrun/providerselect.py
index a20f40b3..3fb76557 100644
--- a/src/leap/gui/firstrun/providerselect.py
+++ b/src/leap/gui/firstrun/providerselect.py
@@ -153,13 +153,27 @@ class SelectProviderPage(QtGui.QWizardPage):
def populateErrors(self):
# XXX could move this to ValidationMixin
+ # with some defaults for the validating fields
+ # (now it only allows one field, manually specified)
#logger.debug('getting errors')
errors = self.wizard().get_validation_error(
self.current_page)
if errors:
- #logger.debug('errors! -> %s', errors)
- self.validationMsg.setText(errors)
+ bad_str = getattr(self, 'bad_string', None)
+ cur_str = self.providerNameEdit.text()
+ showerr = self.validationMsg.setText
+ if bad_str is None:
+ # first time we fall here.
+ # save the current bad_string value
+ self.bad_string = cur_str
+ showerr(errors)
+ else:
+ # not the first time
+ if cur_str == bad_str:
+ showerr(errors)
+ else:
+ showerr('')
def paintEvent(self, event):
"""
diff --git a/src/leap/gui/firstrun/register.py b/src/leap/gui/firstrun/register.py
index 0a7ba34b..6d15c156 100644
--- a/src/leap/gui/firstrun/register.py
+++ b/src/leap/gui/firstrun/register.py
@@ -87,13 +87,25 @@ class RegisterUserPage(QtGui.QWizardPage, UserFormMixIn):
def populateErrors(self):
# XXX could move this to ValidationMixin
+ # used in providerselect too
- #logger.debug('getting errors')
errors = self.wizard().get_validation_error(
self.current_page)
if errors:
- #logger.debug('errors! -> %s', errors)
- self.validationMsg.setText(errors)
+ bad_str = getattr(self, 'bad_string', None)
+ cur_str = self.userNameLineEdit.text()
+ showerr = self.validationMsg.setText
+ if bad_str is None:
+ # first time we fall here.
+ # save the current bad_string value
+ self.bad_string = cur_str
+ showerr(errors)
+ else:
+ # not the first time
+ if cur_str == bad_str:
+ showerr(errors)
+ else:
+ showerr('')
def paintEvent(self, event):
"""