##// END OF EJS Templates
nix: Move shell hook: default.nix -> shell.nix and set custom prompt....
nix: Move shell hook: default.nix -> shell.nix and set custom prompt. When using multiple dev envs with nix-shell it's good to have a unique shell propt to distinguish them.

File last commit:

r1129:97341a21 default
r1130:328807b4 default
Show More
validators.py
25 lines | 619 B | text/x-python | PythonLexer
import os
import re
import ipaddress
import colander
from rhodecode.translation import _
from rhodecode.lib.utils2 import glob2re
def ip_addr_validator(node, value):
try:
# this raises an ValueError if address is not IpV4 or IpV6
ipaddress.ip_network(value, strict=False)
except ValueError:
msg = _(u'Please enter a valid IPv4 or IpV6 address')
raise colander.Invalid(node, msg)
def glob_validator(node, value):
try:
re.compile('^' + glob2re(value) + '$')
except Exception:
msg = _(u'Invalid glob pattern')
raise colander.Invalid(node, msg)