Fix some typos (#202)

This commit is contained in:
Otto Winter 2018-10-20 15:18:12 +02:00 committed by GitHub
parent 25c66ed8ca
commit 8c5d12df51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 12 deletions

View File

@ -461,7 +461,7 @@ def parse_args(argv):
subparsers.add_parser('clean', help="Delete all temporary build files.")
dashboard = subparsers.add_parser('dashboard',
help="Create a simple webserver for a dashboard.")
help="Create a simple web server for a dashboard.")
dashboard.add_argument("--port", help="The HTTP port to open connections on.", type=int,
default=6052)
dashboard.add_argument("--password", help="The optional password to require for all requests.",

View File

@ -83,7 +83,7 @@ CONFIG_SCHEMA = vol.All(vol.Schema({
vol.Optional(CONF_MANUAL_IP): STA_MANUAL_IP_SCHEMA,
vol.Optional(CONF_AP): WIFI_NETWORK_AP,
vol.Optional(CONF_HOSTNAME): cv.hostname,
vol.Optional(CONF_DOMAIN, default='.local'): cv.domainname,
vol.Optional(CONF_DOMAIN, default='.local'): cv.domain_name,
vol.Optional(CONF_REBOOT_TIMEOUT): cv.positive_time_period_milliseconds,
vol.Optional(CONF_POWER_SAVE_MODE): vol.All(vol.Upper, cv.one_of(*WIFI_POWER_SAVE_MODES)),
}), validate)

View File

@ -440,15 +440,15 @@ def hostname(value):
return value
def domainname(value):
def domain_name(value):
value = string(value)
if not value.startswith('.'):
raise vol.Invalid("Domainname must start with .")
raise vol.Invalid("Domain name must start with .")
if value.startswith('..'):
raise vol.Invalid("Domainname must start with single .")
raise vol.Invalid("Domain name must start with single .")
for c in value:
if not (c.isalnum() or c in '._-'):
raise vol.Invalid("Domainname can only have alphanumeric characters and _ or -")
raise vol.Invalid("Domain name can only have alphanumeric characters and _ or -")
return value

View File

@ -52,12 +52,6 @@
padding-bottom: 10px;
}
.chip {
height: 26px;
font-size: 12px;
line-height: 26px;
}
.log {
background-color: #1c1c1c;
margin-top: 0;