diff options
Diffstat (limited to 'squid-authentication-html.lsp')
-rw-r--r-- | squid-authentication-html.lsp | 40 |
1 files changed, 7 insertions, 33 deletions
diff --git a/squid-authentication-html.lsp b/squid-authentication-html.lsp index 3071134..7e662a7 100644 --- a/squid-authentication-html.lsp +++ b/squid-authentication-html.lsp @@ -1,34 +1,14 @@ <% require("viewfunctions") - local form = ... - local data = form.option - local service = form.service + local form, viewlibrary = ... local config = form.service.config - local srv1fill = "" - local srv2fill = "disabled" - if form.info.status.value == "Enabled" then - srv1fill = "disabled" - srv2fill = "" - end - - local ifthen = function( variable, value, result ) - if variable == value then - io.write( result ) - end - end - %> -<H1>SYSTEM INFO</H1> -<DL> -<% -local myform = form.info -local tags = { "status", "version", "autostart", } -displayinfo(myform,tags,"viewonly") -%> -</DL> +<% if viewlibrary and viewlibrary.dispatch_component then + viewlibrary.dispatch_component("status") +end %> <h1>Configuration</h1> <h2>Authentication Scheme</h2> @@ -100,12 +80,6 @@ the changes will not be <i>applied</i> until you restart the service.</dd> </DL> </form> -<h1>MANAGEMENT</h1> -<form action="" method="POST"> -<dl> -<DT>Daemon control</DT><dd><input class="submit" type="submit" name="srvcmd" value="start" <% io.write( srv1fill ) %>> -<input class="submit" type="submit" name="srvcmd" value="stop" <% io.write( srv2fill ) %>> -<input class="submit" type="submit" name="srvcmd" value="restart" <% io.write( srv2fill ) %>> -<% if (service.message) and (service.message.descr) and (#service.message.descr > 0) then %><pre><% io.write( service.message.descr ) %></pre><% end %></dd> -</dl> -</form> +<% if viewlibrary and viewlibrary.dispatch_component then + viewlibrary.dispatch_component("startstop") +end %> |