diff options
author | kali <kali@leap.se> | 2012-11-06 16:26:10 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-11-06 16:26:10 +0900 |
commit | ad16a72f60ecc84524c22e8912df4eb8a48a2a42 (patch) | |
tree | 903f4fcf6fb10edcc61309fcb9b47ccbb7d70129 /src/leap/gui/constants.py | |
parent | c387a52f841e8933ed7282d198ed1ece863979fc (diff) |
split wizard into separate files
so we don't go nuts yet.
Diffstat (limited to 'src/leap/gui/constants.py')
-rw-r--r-- | src/leap/gui/constants.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/leap/gui/constants.py b/src/leap/gui/constants.py new file mode 100644 index 00000000..c874cbc9 --- /dev/null +++ b/src/leap/gui/constants.py @@ -0,0 +1,8 @@ +APP_LOGO = ':/images/leap-color-small.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_@.-]+$" |