summaryrefslogtreecommitdiffstats
path: root/tinydns-model.lua
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2011-04-13 10:42:50 +0300
committerTimo Teräs <timo.teras@iki.fi>2011-04-13 10:43:26 +0300
commit2c9c96fda37226d9c2d4b93c9d0a24d109ec769f (patch)
tree264b1086e5deec1c884bf7bbc92fffaf0cb752bf /tinydns-model.lua
parent641bc85a72e6ae6ba5efdfa54f4a829799302a40 (diff)
downloadacf-tinydns-2c9c96fda37226d9c2d4b93c9d0a24d109ec769f.tar.bz2
acf-tinydns-2c9c96fda37226d9c2d4b93c9d0a24d109ec769f.tar.xz
Standalone A-entry should not be called 'Alias'. 'Alias' is generally
used for CNAME records so that would be confusing.
Diffstat (limited to 'tinydns-model.lua')
-rw-r--r--tinydns-model.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/tinydns-model.lua b/tinydns-model.lua
index 8c6faaa..a9d27a1 100644
--- a/tinydns-model.lua
+++ b/tinydns-model.lua
@@ -20,8 +20,8 @@ local descr = {
prefix={
['.']="Name server for your domain (NS + A + SOA)",
['&']="Delegate subdomain (NS + A)",
- ['=']="Host (A + PTR)",
- ['+']="Alias (A, no PTR)",
+ ['=']="Host and reverse record (A + PTR)",
+ ['+']="Host record (A, no PTR)",
['@']="Mail exchanger (MX)",
["'"]="Text record (TXT)",
['^']="Reverse record (PTR)",
@@ -35,8 +35,8 @@ local descr = {
fieldlabels={
['.']={"Domain", "IP address", "Name server", "Time to live", "Timestamp", "Location", },
['&']={"Domain", "IP address", "Name server", "Time to live", "Timestamp", "Location", },
- ['=']={"Host", "IP address", "Time to live", "Timestamp", "Location", },
- ['+']={"Alias", "IP address", "Time to live", "Timestamp", "Location", },
+ ['=']={"Host", "IP address", "Time to live", "Timestamp", "Location", },
+ ['+']={"Host", "IP address", "Time to live", "Timestamp", "Location", },
['@']={"Domain", "IP address", "Mail exchanger", "Distance", "Time to live", "Timestamp", "Location", },
['\'']={"Domain", "Text Record", "Time to live", "Timestamp", "Location", },
['^']={"PTR", "Domain name", "Time to live", "Timestamp", "Location", },