From 65cde96c5b05e04c24b0f272b577df67193d7c0b Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Wed, 16 Jul 2008 10:48:39 +0000 Subject: Several small cleanups and improvements modules/admin-mini: Added reboot page --- .../admin-mini/luasrc/controller/mini/system.lua | 32 +++++++++++++++++++++ modules/admin-mini/luasrc/view/mini/reboot.htm | 33 ++++++++++++++++++++++ .../admin-mini/luasrc/view/mini/uci_changes.htm | 4 +-- 3 files changed, 67 insertions(+), 2 deletions(-) create mode 100644 modules/admin-mini/luasrc/controller/mini/system.lua create mode 100644 modules/admin-mini/luasrc/view/mini/reboot.htm (limited to 'modules/admin-mini/luasrc') diff --git a/modules/admin-mini/luasrc/controller/mini/system.lua b/modules/admin-mini/luasrc/controller/mini/system.lua new file mode 100644 index 0000000000..7b13e20c62 --- /dev/null +++ b/modules/admin-mini/luasrc/controller/mini/system.lua @@ -0,0 +1,32 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Steven Barth +Copyright 2008 Jo-Philipp Wich + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- + +module("luci.controller.mini.system", package.seeall) + +function index() + luci.i18n.loadc("admin-core") + local i18n = luci.i18n.translate + + entry({"mini", "system"}, call("action_reboot"), i18n("system")) + entry({"mini", "system", "reboot"}, call("action_reboot"), i18n("reboot"), 10) +end + +function action_reboot() + local reboot = luci.http.formvalue("reboot") + luci.template.render("mini/reboot", {reboot=reboot}) + if reboot then + luci.sys.reboot() + end +end \ No newline at end of file diff --git a/modules/admin-mini/luasrc/view/mini/reboot.htm b/modules/admin-mini/luasrc/view/mini/reboot.htm new file mode 100644 index 0000000000..600da36fcb --- /dev/null +++ b/modules/admin-mini/luasrc/view/mini/reboot.htm @@ -0,0 +1,33 @@ +<%# +LuCI - Lua Configuration Interface +Copyright 2008 Steven Barth +Copyright 2008 Jo-Philipp Wich + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ + +-%> +<%+header%> +

<%:system%>

+

<%:reboot%>

+

<%:a_s_reboot1%>

+<%- +local c = require("luci.model.uci").changes() +if c and next(c) then +-%> +

<%:a_s_reboot_u%>

+<%- +end +if not reboot then +-%> +

<%:a_s_reboot_do%>

+<%- else -%> +

<%:a_s_reboot_running%>

+ +<%- end -%> +<%+footer%> \ No newline at end of file diff --git a/modules/admin-mini/luasrc/view/mini/uci_changes.htm b/modules/admin-mini/luasrc/view/mini/uci_changes.htm index 09d8d3e7ee..ae601aa1f6 100644 --- a/modules/admin-mini/luasrc/view/mini/uci_changes.htm +++ b/modules/admin-mini/luasrc/view/mini/uci_changes.htm @@ -17,10 +17,10 @@ $Id$

<%:changes%>

<%=changes%>

-
+
-
+
<%+footer%> -- cgit v1.2.3