##// END OF EJS Templates
config: Use rhodecode aslist if commas included in list settings otherwise pyramids aslist.
config: Use rhodecode aslist if commas included in list settings otherwise pyramids aslist.

File last commit:

r523:878882bd default
r604:d8ead9a9 default
Show More
validators.py
19 lines | 376 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)