From: Florian Eckert Date: Tue, 10 Oct 2023 05:57:59 +0000 (+0200) Subject: Merge pull request #6626 from oskarirauta/luci-cni-protocol X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=57e19b865fe303aabcdc20690d8fd3443dd40ccb;p=project%2Fluci.git Merge pull request #6626 from oskarirauta/luci-cni-protocol luci-proto-cni: protocol update (cherry picked from commit 88d1893b9c21ce716d9bec4c40f6c9720becf220) --- diff --git a/protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js b/protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js index 7e22398485..273067fd43 100644 --- a/protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js +++ b/protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js @@ -1,8 +1,42 @@ 'use strict'; +'require form'; 'require network'; return network.registerProtocol('cni', { getI18n: function () { return _('CNI (Externally managed interface)'); + }, + + getOpkgPackage: function() { + return "cni-protocol"; + }, + + isFloating: function() { + return true; + }, + + isVirtual: function() { + return true; + }, + + getDevices: function() { + return null; + }, + + renderFormOptions: function(s) { + var o; + + o = s.taboption('general', form.Value, '_device', _('Device')); + o.ucioption = 'device'; + o.optional = false; + o.rmempty = false; + + o = s.taboption('general', form.Value, '_delay', _('Delay'), _('Afer making changes to network using CNI protocol, network must be manually restarted.')); + o.ucioption = 'delay'; + o.placeholder = '10'; + o.datatype = 'min(1)'; + o.optional = true; + o.rmempty = true; } + });