##// END OF EJS Templates
svn-support: Use utf-8 to encode mod_dav_svn configuration before writing to disk....
svn-support: Use utf-8 to encode mod_dav_svn configuration before writing to disk. Repository or group names may contain non ASCII characters. Therfore we have to encode the configuration before writing it to the file.

File last commit:

r821:618c046d default
r830:7ca2d1db default
Show More
validators.py
26 lines | 633 B | text/x-python | PythonLexer
gists: use colander schema to validate input data....
r523 import os
dan
reviewers: add repo review rule models and expose default...
r821 import re
gists: use colander schema to validate input data....
r523
import ipaddress
import colander
from rhodecode.translation import _
dan
reviewers: add repo review rule models and expose default...
r821 from rhodecode.lib.utils2 import glob2re
gists: use colander schema to validate input data....
r523
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)
dan
reviewers: add repo review rule models and expose default...
r821
def glob_validator(node, value):
try:
re.compile('^' + glob2re(value) + '$')
except Exception:
raise
msg = _(u'Invalid glob pattern')
raise colander.Invalid(node, msg)