summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorttrask <ttrask@ab2d0c66-481e-0410-8bed-d214d4d58bed>2009-03-17 20:39:56 +0000
committerttrask <ttrask@ab2d0c66-481e-0410-8bed-d214d4d58bed>2009-03-17 20:39:56 +0000
commitc700c97cb992cdc3eb62d93a52e1bf56ed5ea585 (patch)
treefb6446b8fbe31833808ab1319d845b0614047fee /app
parent5dc15abba740eae84b4202a6a7319cad163fe87c (diff)
downloadacf-core-c700c97cb992cdc3eb62d93a52e1bf56ed5ea585.tar.bz2
acf-core-c700c97cb992cdc3eb62d93a52e1bf56ed5ea585.tar.xz
Changed the way startstop works in core to add a list of allowed actions. Modified all ACFs that don't use the standard functions to work with new library method.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1730 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app')
-rw-r--r--app/startstop-html.lsp29
1 files changed, 18 insertions, 11 deletions
diff --git a/app/startstop-html.lsp b/app/startstop-html.lsp
index ab9b8ac..924f14d 100644
--- a/app/startstop-html.lsp
+++ b/app/startstop-html.lsp
@@ -1,23 +1,30 @@
<% local data, viewlibrary, page_info = ... %>
+<% local reverseactions = {}
+data.value.actions = data.value.actions or {}
+local actions = data.value.actions.value or {"start", "stop", "restart"}
+for i,act in ipairs(actions) do
+ reverseactions[act] = i
+end %>
+
<H1>Management</H1>
-<DL>
-<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action) %>" method="POST">
-<DT>Program control-panel</DT>
-<DD>
-<input class="submit" type="submit" name="action" value="Start" <% if data.value.status.value== "Running" then io.write("disabled") end %>>
-<input class="submit" type="submit" name="action" value="Stop" <% if data.value.status.value== "Stopped" then io.write("disabled") end %>>
-<input class="submit" type="submit" name="action" value="Restart" <% if data.value.status.value== "Stopped" then io.write("disabled") end %>>
-</DD>
-</form>
<% if data.value.result then %>
-<DT>Previous action result</DT>
-<DD>
+<H2>Previous action result</H2>
<% if data.value.result.value ~= "" then %>
<P CLASS='descr'><%= string.gsub(html.html_escape(data.value.result.value), "\n", "<BR>") %></P>
<% end if data.value.result.errtxt then %>
<P CLASS='error'><%= string.gsub(html.html_escape(data.value.result.errtxt), "\n", "<BR>") %></P>
<% end end %>
+
+<DL>
+<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action) %>" method="POST">
+<DT>Program control-panel</DT>
+<DD>
+<% if reverseactions.start then %><input class="submit" type="submit" name="action" value="Start" <% if data.value.status.value== "Running" then io.write("disabled") end %>><% end %>
+<% if reverseactions.stop then %><input class="submit" type="submit" name="action" value="Stop" <% if data.value.status.value== "Stopped" then io.write("disabled") end %>><% end %>
+<% if reverseactions.restart then %><input class="submit" type="submit" name="action" value="Restart" <% if data.value.status.value== "Stopped" then io.write("disabled") end %>><% end %>
+<% if reverseactions.reload then %><input class="submit" type="submit" name="action" value="Reload" <% if data.value.status.value== "Stopped" then io.write("disabled") end %>><% end %>
</DD>
+</form>
</DL>