summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full/luasrc/model
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-08-14 17:16:56 +0000
committerSteven Barth <steven@midlink.org>2008-08-14 17:16:56 +0000
commitd915e6e1d7421f366ca61bf081b6ca0d29945ec1 (patch)
treecbf7b67aafa6e191669d1eff71f1925499c8b5f8 /modules/admin-full/luasrc/model
parentf5ea976058f1de8d8ddb1eb1fcf3d12c8b6fa846 (diff)
Converted IPKG configuration to CBI model
Removed abandoned code
Diffstat (limited to 'modules/admin-full/luasrc/model')
-rw-r--r--modules/admin-full/luasrc/model/cbi/admin_system/ipkg.lua36
1 files changed, 36 insertions, 0 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/ipkg.lua b/modules/admin-full/luasrc/model/cbi/admin_system/ipkg.lua
new file mode 100644
index 0000000000..4e864df28d
--- /dev/null
+++ b/modules/admin-full/luasrc/model/cbi/admin_system/ipkg.lua
@@ -0,0 +1,36 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+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$
+]]--
+local ipkgfile = "/etc/ipkg.conf"
+
+f = SimpleForm("ipkgconf", translate("a_s_p_ipkg"))
+
+t = f:field(TextValue, "lines")
+t.rows = 10
+function t.cfgvalue()
+ return luci.fs.readfile(ipkgfile) or ""
+end
+
+f:append(Template("admin_system/ipkg"))
+
+function f.handle(self, state, data)
+ if state == FORM_VALID then
+ if (luci.fs.readfile(ipkgfile) or "") ~= data.lines then
+ luci.fs.writefile(ipkgfile, data.keys)
+ end
+ end
+ return true
+end
+
+return f