summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dhcp-edithost-html.lsp1
-rw-r--r--dhcp-editsubnet-html.lsp1
-rw-r--r--dhcp-home-html.lsp1
-rw-r--r--dhcp-listfiles-html.lsp1
-rw-r--r--dhcp-listhosts-html.lsp1
-rw-r--r--dhcp-listsubnets-html.lsp1
-rw-r--r--dhcp-settings-html.lsp1
7 files changed, 7 insertions, 0 deletions
diff --git a/dhcp-edithost-html.lsp b/dhcp-edithost-html.lsp
index 289bcdc..ce679f2 100644
--- a/dhcp-edithost-html.lsp
+++ b/dhcp-edithost-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<H1><%= html.html_escape(form.label) %></H1>
diff --git a/dhcp-editsubnet-html.lsp b/dhcp-editsubnet-html.lsp
index b9135b3..8654069 100644
--- a/dhcp-editsubnet-html.lsp
+++ b/dhcp-editsubnet-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<H1><%= html.html_escape(form.label) %></H1>
diff --git a/dhcp-home-html.lsp b/dhcp-home-html.lsp
index 65c4fbf..4f11fae 100644
--- a/dhcp-home-html.lsp
+++ b/dhcp-home-html.lsp
@@ -1,5 +1,6 @@
<% local view, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"settings", "edithost", "delhost", "createhost", "editsubnet", "delsubnet", "createsubnet"}, session) %>
diff --git a/dhcp-listfiles-html.lsp b/dhcp-listfiles-html.lsp
index 5e100c0..a2716c2 100644
--- a/dhcp-listfiles-html.lsp
+++ b/dhcp-listfiles-html.lsp
@@ -1,5 +1,6 @@
<% local data, viewlibrary, page_info, session = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<% htmlviewfunctions.displaycommandresults({"expert"}, session) %>
diff --git a/dhcp-listhosts-html.lsp b/dhcp-listhosts-html.lsp
index 0e3a4b9..140f296 100644
--- a/dhcp-listhosts-html.lsp
+++ b/dhcp-listhosts-html.lsp
@@ -1,5 +1,6 @@
<% local view, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"edithost", "delhost", "createhost"}, session) %>
diff --git a/dhcp-listsubnets-html.lsp b/dhcp-listsubnets-html.lsp
index fae85be..2062951 100644
--- a/dhcp-listsubnets-html.lsp
+++ b/dhcp-listsubnets-html.lsp
@@ -1,5 +1,6 @@
<% local view, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"editsubnet", "delsubnet", "createsubnet"}, session) %>
diff --git a/dhcp-settings-html.lsp b/dhcp-settings-html.lsp
index f9d97bd..5528831 100644
--- a/dhcp-settings-html.lsp
+++ b/dhcp-settings-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<h1><%= html.html_escape(form.label) %></h1>
<%