##// END OF EJS Templates
Added tag v4.4.2 for changeset d2514226abc8
Added tag v4.4.2 for changeset d2514226abc8

File last commit:

r821:618c046d default
r998:f2f014dc stable
Show More
validators.py
15 lines | 372 B | text/x-python | PythonLexer
import os
import ipaddress
import colander
from rhodecode.translation import _
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)