Skip to content
Snippets Groups Projects
Commit ee2e5b30 authored by inso's avatar inso
Browse files

Add validator on account name ( #331 )

parent bb152ba9
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,8 @@ from ..models.communities import CommunitiesListModel ...@@ -13,6 +13,8 @@ from ..models.communities import CommunitiesListModel
from ..tools.exceptions import KeyAlreadyUsed, Error, NoPeerAvailable from ..tools.exceptions import KeyAlreadyUsed, Error, NoPeerAvailable
from PyQt5.QtWidgets import QDialog, QMessageBox from PyQt5.QtWidgets import QDialog, QMessageBox
from PyQt5.QtCore import QRegExp
from PyQt5.QtGui import QRegExpValidator
class Step(): class Step():
...@@ -144,6 +146,9 @@ class ProcessConfigureAccount(QDialog, Ui_AccountConfigurationDialog): ...@@ -144,6 +146,9 @@ class ProcessConfigureAccount(QDialog, Ui_AccountConfigurationDialog):
# Set up the user interface from Designer. # Set up the user interface from Designer.
super().__init__() super().__init__()
self.setupUi(self) self.setupUi(self)
regexp = QRegExp('^([ a-zA-Z0-9-_:/;*?\[\]\(\)\\\?!^+=@&~#{}|<>%.]{0,255})$')
validator = QRegExpValidator(regexp)
self.edit_account_name.setValidator(validator)
self.account = account self.account = account
self.password_asker = None self.password_asker = None
self.app = app self.app = app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment