##// END OF EJS Templates
packaging: Use a recent bower2nix to have fetch-bower...
packaging: Use a recent bower2nix to have fetch-bower Recent versions of bower2nix provide "fetch-bower" as a separate command. This command is needed for the backported bower related utilities.

File last commit:

r665:a92da8f2 default
r726:5b2d844f default
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)