diff --git a/DnsServerCore/www/js/zone.js b/DnsServerCore/www/js/zone.js
index 533d7cd7..4dcaf89f 100644
--- a/DnsServerCore/www/js/zone.js
+++ b/DnsServerCore/www/js/zone.js
@@ -508,7 +508,12 @@ function showEditZone(domain) {
case "TXT":
case "AAAA":
case "ANAME":
- tableHtmlRows += "
" + htmlEncode(records[i].rData.value) + " | ";
+ tableHtmlRows += "" + htmlEncode(records[i].rData.value);
+
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + " ";
+
+ tableHtmlRows += " | ";
break;
case "NS":
@@ -522,6 +527,9 @@ function showEditZone(domain) {
additionalDataAttributes = "data-record-glue=\"\" ";
}
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + "
";
+
tableHtmlRows += "";
break;
@@ -542,6 +550,9 @@ function showEditZone(domain) {
additionalDataAttributes = "data-record-paddresses=\"\" ";
}
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + "
";
+
tableHtmlRows += "";
additionalDataAttributes += "data-record-pname=\"" + htmlEncode(records[i].rData.primaryNameServer) + "\" " +
@@ -555,7 +566,12 @@ function showEditZone(domain) {
case "MX":
tableHtmlRows += "Preference: " + htmlEncode(records[i].rData.preference) +
- " Exchange: " + htmlEncode(records[i].rData.value) + " | ";
+ "
Exchange: " + htmlEncode(records[i].rData.value);
+
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + "
";
+
+ tableHtmlRows += "";
additionalDataAttributes = "data-record-preference=\"" + htmlEncode(records[i].rData.preference) + "\" ";
break;
@@ -564,7 +580,12 @@ function showEditZone(domain) {
tableHtmlRows += "Priority: " + htmlEncode(records[i].rData.priority) +
" Weight: " + htmlEncode(records[i].rData.weight) +
" Port: " + htmlEncode(records[i].rData.port) +
- " Target: " + htmlEncode(records[i].rData.value) + " | ";
+ "
Target: " + htmlEncode(records[i].rData.value);
+
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + "
";
+
+ tableHtmlRows += "";
additionalDataAttributes = "data-record-priority=\"" + htmlEncode(records[i].rData.priority) + "\" " +
"data-record-weight=\"" + htmlEncode(records[i].rData.weight) + "\" " +
@@ -574,7 +595,12 @@ function showEditZone(domain) {
case "CAA":
tableHtmlRows += "Flags: " + htmlEncode(records[i].rData.flags) +
" Tag: " + htmlEncode(records[i].rData.tag) +
- " Authority: " + htmlEncode(records[i].rData.value) + " | ";
+ "
Authority: " + htmlEncode(records[i].rData.value);
+
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + "
";
+
+ tableHtmlRows += "";
additionalDataAttributes = "data-record-flags=\"" + htmlEncode(records[i].rData.flags) + "\" " +
"data-record-tag=\"" + htmlEncode(records[i].rData.tag) + "\" ";
@@ -582,7 +608,12 @@ function showEditZone(domain) {
case "FWD":
tableHtmlRows += "Protocol: " + htmlEncode(records[i].rData.protocol) +
- " Forwarder: " + htmlEncode(records[i].rData.value) + " | ";
+ "
Forwarder: " + htmlEncode(records[i].rData.value);
+
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + "
";
+
+ tableHtmlRows += "";
additionalDataAttributes = "data-record-protocol=\"" + htmlEncode(records[i].rData.protocol) + "\" ";
break;
@@ -590,7 +621,12 @@ function showEditZone(domain) {
case "APP":
tableHtmlRows += "App Name: " + htmlEncode(records[i].rData.value) +
" Class Path: " + htmlEncode(records[i].rData.classPath) +
- " Record Data: " + (records[i].rData.data == "" ? "" : "" + htmlEncode(records[i].rData.data) + " ") + " | ";
+ "
Record Data: " + (records[i].rData.data == "" ? "" : "" + htmlEncode(records[i].rData.data) + "
");
+
+ if ((records[i].comments != null) && (records[i].comments.length > 0))
+ tableHtmlRows += "
Comments: " + htmlEncode(records[i].comments) + "
";
+
+ tableHtmlRows += "";
additionalDataAttributes = "data-record-classpath=\"" + htmlEncode(records[i].rData.classPath) + "\" " +
"data-record-data=\"" + htmlEncode(records[i].rData.data) + "\"";
@@ -649,7 +685,7 @@ function showEditZone(domain) {
}
else {
tableHtmlRows += "";
- tableHtmlRows += "";
+ tableHtmlRows += "";
tableHtmlRows += "";
tableHtmlRows += "";
tableHtmlRows += "";
@@ -758,6 +794,8 @@ function clearAddEditForm() {
$("#divAddEditRecordOverwrite").show();
$("#chkAddEditRecordOverwrite").prop("checked", false);
+ $("#txtAddEditRecordComments").val("");
+
$("#btnAddEditRecord").button("reset");
}
@@ -963,8 +1001,9 @@ function addRecord() {
ttl = 3600;
var overwrite = $("#chkAddEditRecordOverwrite").prop('checked');
+ var comments = $("#txtAddEditRecordComments").val();
- var apiUrl = "/api/addRecord?token=" + token + "&domain=" + encodeURIComponent(domain) + "&type=" + type + "&ttl=" + ttl + "&overwrite=" + overwrite;
+ var apiUrl = "/api/addRecord?token=" + token + "&domain=" + encodeURIComponent(domain) + "&type=" + type + "&ttl=" + ttl + "&overwrite=" + overwrite + "&comments=" + encodeURIComponent(comments);
switch (type) {
case "A":
@@ -1199,6 +1238,7 @@ function showEditRecordModal(objBtn) {
var name = divData.attr("data-record-name");
var type = divData.attr("data-record-type");
var ttl = divData.attr("data-record-ttl");
+ var comments = divData.attr("data-record-comments");
if (name === zone)
name = "@";
@@ -1215,6 +1255,7 @@ function showEditRecordModal(objBtn) {
$("#txtAddEditRecordName").val(name);
$("#txtAddEditRecordTtl").val(ttl)
+ $("#txtAddEditRecordComments").val(comments);
var disableEditRecordModalFields = false;
var hideSoaRecordPrimaryAddressesField = false;
@@ -1404,8 +1445,9 @@ function updateRecord() {
var value = divData.attr("data-record-value");
var disable = (divData.attr("data-record-disabled") === "true");
+ var comments = $("#txtAddEditRecordComments").val();
- var apiUrl = "/api/updateRecord?token=" + token + "&type=" + type + "&domain=" + encodeURIComponent(domain) + "&newDomain=" + encodeURIComponent(newDomain) + "&ttl=" + ttl + "&value=" + encodeURIComponent(value) + "&disable=" + disable;
+ var apiUrl = "/api/updateRecord?token=" + token + "&type=" + type + "&domain=" + encodeURIComponent(domain) + "&newDomain=" + encodeURIComponent(newDomain) + "&ttl=" + ttl + "&value=" + encodeURIComponent(value) + "&disable=" + disable + "&comments=" + encodeURIComponent(comments);
switch (type) {
case "A":
@@ -1647,6 +1689,7 @@ function updateRecordState(objBtn, disable) {
var domain = divData.attr("data-record-name");
var ttl = divData.attr("data-record-ttl");
var value = divData.attr("data-record-value");
+ var comments = divData.attr("data-record-comments");
if (domain === "")
domain = ".";
@@ -1654,7 +1697,7 @@ function updateRecordState(objBtn, disable) {
if (disable && !confirm("Are you sure to disable the " + type + " record '" + domain + "' with value '" + value + "'?"))
return;
- var apiUrl = "/api/updateRecord?token=" + token + "&type=" + type + "&domain=" + encodeURIComponent(domain) + "&ttl=" + ttl + "&value=" + encodeURIComponent(value) + "&disable=" + disable;
+ var apiUrl = "/api/updateRecord?token=" + token + "&type=" + type + "&domain=" + encodeURIComponent(domain) + "&ttl=" + ttl + "&value=" + encodeURIComponent(value) + "&disable=" + disable + "&comments=" + encodeURIComponent(comments);
switch (type) {
case "NS":
|