summaryrefslogtreecommitdiffstats
path: root/dansguardian-general-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-10-22 18:50:22 +0000
committerTed Trask <ttrask01@yahoo.com>2008-10-22 18:50:22 +0000
commit52ad6edf74ca2e903972849b6a47a14786520449 (patch)
treed784e3a06ea3508f89c2092633960b43f3dc834c /dansguardian-general-html.lsp
parent9624824d8a8be6989e38e664553917fb6049b40a (diff)
downloadacf-dansguardian-52ad6edf74ca2e903972849b6a47a14786520449.tar.bz2
acf-dansguardian-52ad6edf74ca2e903972849b6a47a14786520449.tar.xz
Modified viewfunctions to split displayform, creating displayformstart and displayformend, to provide flexibility while still using the library. Also added support for hidden fields - including a common redir field. Removed redirectOnSuccess from controllerfunctions handle_form, and replaced it with the redir field. Removed redirectOnSuccess from controllers that used it and added handlecommandresults and redir entries to links and forms throughout many views. This will cause a redirect to the originating view when a form is successfully completed. acf_www-controller now includes orig_action in page_info to report the original action launched by the user.
git-svn-id: svn://svn.alpinelinux.org/acf/dansguardian/trunk@1560 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'dansguardian-general-html.lsp')
-rw-r--r--dansguardian-general-html.lsp13
1 files changed, 4 insertions, 9 deletions
diff --git a/dansguardian-general-html.lsp b/dansguardian-general-html.lsp
index e7bd1af..0873344 100644
--- a/dansguardian-general-html.lsp
+++ b/dansguardian-general-html.lsp
@@ -1,6 +1,6 @@
<%
require("viewfunctions")
- local form, viewlibrary = ...
+ local form, viewlibrary, page_info = ...
%>
<%
@@ -15,11 +15,10 @@ io.write("</span>")
viewlibrary.dispatch_component("status")
end %>
-<form action="" method="POST">
<h1>Configuration</h1>
<%
- if form.descr then io.write('<P CLASS="descr">' .. string.gsub(form.descr, "\n", "<BR>") .. "</P>\n") end
- if form.errtxt then io.write('<P CLASS="error">' .. string.gsub(form.errtxt, "\n", "<BR>") .. "</P>\n") end
+ form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
+ displayformstart(form)
for field,val in pairs(form.value) do
val.name = field
end
@@ -63,11 +62,7 @@ The author recommends 50 for "young children", 100 for "older children" and 160
</dl>
<h2>Save Changes</h2>
-<dl>
-<DT></DT><DD><input class="submit" type="submit" name="<%= form.option %>" value="<%= (form.submit or form.option) %>"></DD>
-</dl>
-
-</form>
+<% displayformend(form) %>
<% if viewlibrary and viewlibrary.dispatch_component then
viewlibrary.dispatch_component("startstop")