Tidy: Sort lists

This commit is contained in:
Tom Limoncelli 2019-04-17 16:13:49 -04:00
parent e657693a32
commit b19074e6dc
3 changed files with 5 additions and 5 deletions

View file

@ -74,13 +74,13 @@ func generateFeatureMatrix() error {
fm.SetSimple("Registrar", false, func() bool { return providers.RegistrarTypes[p] != nil })
setCap("ALIAS", providers.CanUseAlias)
setCap("CAA", providers.CanUseCAA)
setCap("PTR", providers.CanUsePTR)
setCap("NAPTR", providers.CanUseNAPTR)
setCap("PTR", providers.CanUsePTR)
setCap("R53_ALIAS", providers.CanUseRoute53Alias)
setCap("SRV", providers.CanUseSRV)
setCap("SSHFP", providers.CanUseSSHFP)
setCap("TLSA", providers.CanUseTLSA)
setCap("TXTMulti", providers.CanUseTXTMulti)
setCap("R53_ALIAS", providers.CanUseRoute53Alias)
setDoc("dual host", providers.DocDualHost, false)
setDoc("create-domains", providers.DocCreateDomains, true)

View file

@ -19,9 +19,9 @@ import (
// CAA
// CNAME
// MX
// NAPTR
// NS
// PTR
// NAPTR
// SRV
// SSHFP
// TLSA

View file

@ -38,10 +38,10 @@ func (r *RecordConfig) PopulateFromString(rtype, contents, origin string) error
return r.SetTarget(contents)
case "CAA":
return r.SetTargetCAAString(contents)
case "NAPTR":
return r.SetTargetNAPTRString(contents)
case "MX":
return r.SetTargetMXString(contents)
case "NAPTR":
return r.SetTargetNAPTRString(contents)
case "SRV":
return r.SetTargetSRVString(contents)
case "SSHFP":