From d915e6e1d7421f366ca61bf081b6ca0d29945ec1 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Thu, 14 Aug 2008 17:16:56 +0000 Subject: Converted IPKG configuration to CBI model Removed abandoned code --- .../luasrc/model/cbi/admin_system/ipkg.lua | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 modules/admin-full/luasrc/model/cbi/admin_system/ipkg.lua (limited to 'modules/admin-full/luasrc/model/cbi') 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 +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$ +]]-- +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 -- cgit v1.2.3