예제 #1
0
파일: config.py 프로젝트: molodiuc/luci-py
def validate_settings_config(config, context):
    if config.HasField('mp_server'):
        if not validation.is_valid_secure_url(config.mp_server):
            context.error(
                'mp_server must start with "https://" or "http://localhost"')
예제 #2
0
def _validate_url(ctx, value):
  if not value:
    ctx.error('is not set')
  elif not validation.is_valid_secure_url(value):
    ctx.error('must start with "https://" or "http://localhost"')