summaryrefslogtreecommitdiff
path: root/src/leap/gui/constants.py
blob: 07077293b2e68a934440e966b306bc6f80756c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import time

APP_LOGO = ':/images/leap-color-small.png'
APP_WATERMARK = ':/images/watermark.png'

# bare is the username portion of a JID
# full includes the "at" and some extra chars
# that can be allowed for fqdn

BARE_USERNAME_REGEX = r"^[A-Za-z\d_]+$"
FULL_USERNAME_REGEX = r"^[A-Za-z\d_@.-]+$"

GUI_PAUSE_FOR_USER_SECONDS = 1
pause_for_user = lambda: time.sleep(GUI_PAUSE_FOR_USER_SECONDS)