diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-29 21:34:45 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-29 21:34:45 +0000 |
commit | 8ffb0e9925281eb32d525196a81c68232518665e (patch) | |
tree | c8cadf010221e3a36f318e4cfac9985c66eb24e6 /applications/luci-ddns/luasrc/model/cbi/ddns/ddnsmini.lua | |
parent | dce144a2f43c6f39f66af023d88a65f10ce0d034 (diff) |
applications/luci-ddns: merge mini and full models, read services from /usr/lib/ddns/services, patch by joda (#99)
Diffstat (limited to 'applications/luci-ddns/luasrc/model/cbi/ddns/ddnsmini.lua')
-rw-r--r-- | applications/luci-ddns/luasrc/model/cbi/ddns/ddnsmini.lua | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/applications/luci-ddns/luasrc/model/cbi/ddns/ddnsmini.lua b/applications/luci-ddns/luasrc/model/cbi/ddns/ddnsmini.lua deleted file mode 100644 index 886053b1b7..0000000000 --- a/applications/luci-ddns/luasrc/model/cbi/ddns/ddnsmini.lua +++ /dev/null @@ -1,52 +0,0 @@ ---[[ -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$ -]]-- -m = Map("ddns", translate("Dynamic DNS"), translate("Dynamic DNS allows that your router can be reached with a fixed hostname while having a dynamically changing IP-Address.")) - -s = m:section(TypedSection, "service", "") -s.addremove = true - -s:option(Flag, "enabled", translate("enable")) - -svc = s:option(ListValue, "service_name", translate("Service")) -svc.rmempty = true -svc:value("dyndns.org") -svc:value("changeip.com") -svc:value("zoneedit.com") -svc:value("no-ip.com") -svc:value("freedns.afraid.org") - -s:option(Value, "domain", translate("Hostname")).rmempty = true -s:option(Value, "username", translate("Username")).rmempty = true -pw = s:option(Value, "password", translate("Password")) -pw.rmempty = true -pw.password = true - -s.defaults.ip_source = "network" -s.defaults.ip_network = "wan" - -s:option(Value, "check_interval", translate("Check for changed IP every")).default = 10 -unit = s:option(ListValue, "check_unit", translate("Check-Time unit")) -unit.default = "minutes" -unit:value("minutes", "min") -unit:value("hours", "h") - -s:option(Value, "force_interval", translate("Force update every")).default = 72 -unit = s:option(ListValue, "force_unit", translate("Force-Time unit")) -unit.default = "hours" -unit:value("minutes", "min") -unit:value("hours", "h") - - -return m |