From 3f372dd416348af57905e8f3ef72aefe0012a250 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 2 Oct 2008 13:52:28 +0000 Subject: * luci/applications: add hd-idle application, thanks Yanira --- .../luci-hd_idle/luasrc/model/cbi/hd_idle.lua | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua (limited to 'applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua') diff --git a/applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua b/applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua new file mode 100644 index 0000000000..32db2605ed --- /dev/null +++ b/applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua @@ -0,0 +1,36 @@ +--[[ + +LuCI hd-idle +(c) 2008 Yanira + +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$ + +]]-- + +m = Map("hd-idle", translate("hd_idle"), translate("hd_idle_desc")) + +s = m:section(TypedSection, "hd-idle", translate("settings")) +s.addremove = true +s.anonymous = true + +s:option(Flag, "enabled", translate("enabled", "Enable")) + +s:option(Value, "disk", translate("disk")).rmempty = true + +s:option(Value, "idle_time_interval", translate("idle_time_interval")).default = 10 +s.rmempty = true +unit = s:option(ListValue, "idle_time_unit", translate("idle_time_unit")) +unit.default = "minutes" +unit:value("minutes", "min") +unit:value("hours", "h") +unit.rmempty = true + +s:option(Flag, "enable_debug", translate("enable_debug")) + +return m -- cgit v1.2.3