diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-10-02 15:09:01 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-10-02 15:09:01 +0000 |
commit | c52675a5dde0e1eb7e8483fd15fe71ba96168611 (patch) | |
tree | e4876fdc6ff7557d5695032872504bc488cc8625 | |
parent | 3a8a8759b74dd4ffc453113d7e80a992fbca1404 (diff) | |
download | acf-dhcp-c52675a5dde0e1eb7e8483fd15fe71ba96168611.tar.bz2 acf-dhcp-c52675a5dde0e1eb7e8483fd15fe71ba96168611.tar.xz |
Added require statement for html library
-rw-r--r-- | dhcp-edithost-html.lsp | 1 | ||||
-rw-r--r-- | dhcp-editsubnet-html.lsp | 1 | ||||
-rw-r--r-- | dhcp-home-html.lsp | 1 | ||||
-rw-r--r-- | dhcp-listfiles-html.lsp | 1 | ||||
-rw-r--r-- | dhcp-listhosts-html.lsp | 1 | ||||
-rw-r--r-- | dhcp-listsubnets-html.lsp | 1 | ||||
-rw-r--r-- | dhcp-settings-html.lsp | 1 |
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> <% |