summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-hd_idle/luasrc/controller
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-10-02 13:52:28 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-10-02 13:52:28 +0000
commit3f372dd416348af57905e8f3ef72aefe0012a250 (patch)
tree2a597d2e8b1f10d55ec9de3a0d0efb5e29fbbcab /applications/luci-hd_idle/luasrc/controller
parentb5de7f81384b38737fbdecfe6179fe5905fa73d8 (diff)
* luci/applications: add hd-idle application, thanks Yanira
Diffstat (limited to 'applications/luci-hd_idle/luasrc/controller')
-rw-r--r--applications/luci-hd_idle/luasrc/controller/hd_idle.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/applications/luci-hd_idle/luasrc/controller/hd_idle.lua b/applications/luci-hd_idle/luasrc/controller/hd_idle.lua
new file mode 100644
index 0000000000..45d102cc1e
--- /dev/null
+++ b/applications/luci-hd_idle/luasrc/controller/hd_idle.lua
@@ -0,0 +1,28 @@
+--[[
+
+LuCI hd-idle
+(c) 2008 Yanira <forum-2008@email.de>
+
+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.hd_idle", package.seeall)
+
+function index()
+ require("luci.i18n")
+ luci.i18n.loadc("hd_idle")
+ if not luci.fs.isfile("/etc/config/hd-idle") then
+ return
+ end
+
+ local page = entry({"admin", "services", "hd_idle"}, cbi("hd_idle"), luci.i18n.translate("hd_idle", "hd-idle"), 60)
+ page.i18n = "hd_idle"
+ page.dependent = true
+end