summaryrefslogtreecommitdiffstats
path: root/awall-listpolicies-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'awall-listpolicies-html.lsp')
-rw-r--r--awall-listpolicies-html.lsp12
1 files changed, 6 insertions, 6 deletions
diff --git a/awall-listpolicies-html.lsp b/awall-listpolicies-html.lsp
index 1d807e9..25a94d0 100644
--- a/awall-listpolicies-html.lsp
+++ b/awall-listpolicies-html.lsp
@@ -1,5 +1,5 @@
<% local form, viewlibrary, page_info, session = ...
-require("htmlviewfunctions")
+require("viewfunctions")
html = require("acf.html")
%>
@@ -11,8 +11,8 @@ html = require("acf.html")
});
</script>
-<% htmlviewfunctions.displaycommandresults({"deletepolicy", "editpolicy", "viewpolicy", "enablepolicy", "disablepolicy", "startstop"}, session) %>
-<% htmlviewfunctions.displaycommandresults({"createpolicy"}, session, true) %>
+<% displaycommandresults({"deletepolicy", "editpolicy", "viewpolicy", "enablepolicy", "disablepolicy", "startstop"}, session) %>
+<% displaycommandresults({"createpolicy"}, session, true) %>
<h1>Policies</h1>
<DL>
@@ -28,11 +28,11 @@ html = require("acf.html")
<TR>
<TD style="padding-right:20px;white-space:nowrap;">
<%
- if viewlibrary.check_permission("deletepolicy") and pol.editable and pol.status ~= "enabled" and pol.status ~= "required" then io.write(html.link{value = "deletepolicy?submit=true&filename=" .. pol.filename, label="Delete ", class="deletepolicy" }) end
+ if viewlibrary.check_permission("deletepolicy") and pol.editable and pol.status ~= "enabled" and pol.status ~= "required" then io.write(html.link{value = "deletepolicy?Delete=true&filename=" .. pol.filename, label="Delete ", class="deletepolicy" }) end
if viewlibrary.check_permission("editpolicy") and pol.editable then io.write(html.link{value = "editpolicy?filename=" .. pol.filename.."&redir="..page_info.orig_action, label="Edit " }) end
if viewlibrary.check_permission("viewpolicy") and not pol.editable and pol.filename then io.write(html.link{value = "viewpolicy?filename=" .. pol.filename.."&redir="..page_info.orig_action, label="View " }) end
- if viewlibrary.check_permission("enablepolicy") and (pol.status == "disabled" or pol.status == "required") then io.write(html.link{value = "enablepolicy?submit=true&name=" .. pol.name, label="Enable " }) end
- if viewlibrary.check_permission("disablepolicy") and pol.status == "enabled" then io.write(html.link{value = "disablepolicy?submit=true&name=" .. pol.name, label="Disable " }) end
+ if viewlibrary.check_permission("enablepolicy") and (pol.status == "disabled" or pol.status == "required") then io.write(html.link{value = "enablepolicy?Enable=true&name=" .. pol.name, label="Enable " }) end
+ if viewlibrary.check_permission("disablepolicy") and pol.status == "enabled" then io.write(html.link{value = "disablepolicy?Disable=true&name=" .. pol.name, label="Disable " }) end
%>
</TD>
<TD style="white-space:nowrap;" width="90%"><%= html.html_escape(string.gsub(pol.status or "", "^%l", string.upper)) %></TD>