0
0
mirror of https://github.com/openwrt/luci.git synced 2025-03-14 11:17:23 +00:00

luci-base, luci-proto-*: rename getOpkgPackage -> getPackageName

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
This commit is contained in:
Paul Donald
2024-12-15 20:11:23 +01:00
parent 500ce17e7a
commit 8d13ea410d
44 changed files with 48 additions and 46 deletions
modules/luci-base/htdocs/luci-static/resources
protocols
luci-proto-3g/htdocs/luci-static/resources/protocol
luci-proto-autoip/htdocs/luci-static/resources/protocol
luci-proto-batman-adv/htdocs/luci-static/resources/protocol
luci-proto-bonding/htdocs/luci-static/resources/protocol
luci-proto-external/htdocs/luci-static/resources/protocol
luci-proto-gre/htdocs/luci-static/resources/protocol
luci-proto-hnet/htdocs/luci-static/resources/protocol
luci-proto-ipip/htdocs/luci-static/resources/protocol
luci-proto-ipv6/htdocs/luci-static/resources/protocol
luci-proto-mbim/htdocs/luci-static/resources/protocol
luci-proto-modemmanager/htdocs/luci-static/resources/protocol
luci-proto-ncm/htdocs/luci-static/resources/protocol
luci-proto-nebula/htdocs/luci-static/resources/protocol
luci-proto-openconnect/htdocs/luci-static/resources/protocol
luci-proto-openfortivpn/htdocs/luci-static/resources/protocol
luci-proto-ppp/htdocs/luci-static/resources/protocol
luci-proto-pppossh/htdocs/luci-static/resources/protocol
luci-proto-qmi/htdocs/luci-static/resources/protocol
luci-proto-relay/htdocs/luci-static/resources/protocol
luci-proto-sstp/htdocs/luci-static/resources/protocol
luci-proto-unet/htdocs/luci-static/resources/protocol
luci-proto-vpnc/htdocs/luci-static/resources/protocol
luci-proto-vti/htdocs/luci-static/resources/protocol
luci-proto-vxlan/htdocs/luci-static/resources/protocol
luci-proto-wireguard/htdocs/luci-static/resources/protocol
luci-proto-xfrm/htdocs/luci-static/resources/protocol
luci-proto-yggdrasil/htdocs/luci-static/resources/protocol

@ -2452,17 +2452,19 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
},
/**
* Get the name of the opkg package providing the protocol functionality.
* Gets the name of the package providing the protocol functionality. The
* package is available via the system default package manager. This is used
* when a config refers to a protocol handler which is not yet installed.
*
* This function should be overwritten by protocol specific subclasses.
*
* @abstract
*
* @returns {string}
* Returns the name of the opkg package required for the protocol to
* Returns the name of the package to download, required for the protocol to
* function, e.g. `odhcp6c` for the `dhcpv6` protocol.
*/
getOpkgPackage: function() {
getPackageName: function() {
return null;
},

@ -47,7 +47,7 @@ return network.registerProtocol('3g', {
return this._ubus('l3_device') || '3g-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'comgt';
},

@ -6,7 +6,7 @@ return network.registerProtocol('autoip', {
return _('Avahi IPv4LL');
},
getOpkgPackage: function() {
getPackageName: function() {
return 'avahi-autoipd';
},

@ -14,7 +14,7 @@ return network.registerProtocol('batadv', {
return this._ubus('l3_device') || this.sid;
},
getOpkgPackage: function() {
getPackageName: function() {
return 'kmod-batman-adv';
},

@ -14,7 +14,7 @@ return network.registerProtocol('batadv_hardif', {
return this._ubus('l3_device') || this.sid;
},
getOpkgPackage: function() {
getPackageName: function() {
return 'kmod-batman-adv';
},

@ -132,7 +132,7 @@ return network.registerProtocol('bonding', {
return null;
},
getOpkgPackage: function() {
getPackageName: function() {
return 'bonding';
},

@ -7,7 +7,7 @@ return network.registerProtocol('external', {
return _('Externally managed interface');
},
getOpkgPackage: function() {
getPackageName: function() {
return "external-protocol";
},

@ -14,7 +14,7 @@ return network.registerProtocol('gre', {
return this._ubus('l3_device') || 'gre4-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'gre';
},

@ -14,7 +14,7 @@ return network.registerProtocol('gretap', {
return this._ubus('l3_device') || 'gre4t-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'gre';
},

@ -14,7 +14,7 @@ return network.registerProtocol('grev6', {
return this._ubus('l3_device') || 'gre6-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'gre';
},

@ -14,7 +14,7 @@ return network.registerProtocol('grev6tap', {
return this._ubus('l3_device') || 'gre6t-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'gre';
},

@ -7,7 +7,7 @@ return network.registerProtocol('hnet', {
return _('Automatic Homenet (HNCP)');
},
getOpkgPackage: function() {
getPackageName: function() {
return 'hnet-full';
},

@ -14,7 +14,7 @@ return network.registerProtocol('ipip', {
return this._ubus('l3_device') || 'ipip-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'ipip';
},

@ -15,7 +15,7 @@ return network.registerProtocol('464xlat', {
return this._ubus('l3_device') || '464-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return '464xlat';
},

@ -14,7 +14,7 @@ return network.registerProtocol('6in4', {
return this._ubus('l3_device') || '6in4-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return '6in4';
},

@ -13,7 +13,7 @@ return network.registerProtocol('6rd', {
return this._ubus('l3_device') || '6rd-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return '6rd';
},

@ -13,7 +13,7 @@ return network.registerProtocol('6to4', {
return this._ubus('l3_device') || '6to4-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return '6rd';
},

@ -7,7 +7,7 @@ return network.registerProtocol('dhcpv6', {
return _('DHCPv6 client');
},
getOpkgPackage: function() {
getPackageName: function() {
return 'odhcp6c';
},

@ -15,7 +15,7 @@ return network.registerProtocol('dslite', {
return this._ubus('l3_device') || 'ds-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'ds-lite';
},

@ -14,7 +14,7 @@ return network.registerProtocol('ipip6', {
return this._ubus('l3_device') || 'ipip6-%s'.format(this.sid);
},
getOpkgPackage: function () {
getPackageName: function () {
return 'ds-lite';
},

@ -17,7 +17,7 @@ return network.registerProtocol('map', {
return this._ubus('l3_device') || 'map-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'map-t';
},

@ -28,7 +28,7 @@ return network.registerProtocol('mbim', {
return this._ubus('l3_device') || 'mbim-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'umbim';
},

@ -25,7 +25,7 @@ return network.registerProtocol('modemmanager', {
return this._ubus('l3_device') || 'modemmanager-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'modemmanager';
},

@ -39,7 +39,7 @@ return network.registerProtocol('ncm', {
return this._ubus('l3_device') || 'wan';
},
getOpkgPackage: function() {
getPackageName: function() {
return 'comgt-ncm';
},

@ -14,7 +14,7 @@ return network.registerProtocol('nebula', {
return this._ubus('l3_device') || this.sid;
},
getOpkgPackage: function () {
getPackageName: function () {
return 'nebula';
},

@ -69,7 +69,7 @@ return network.registerProtocol('openconnect', {
return this._ubus('l3_device') || 'vpn-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'openconnect';
},

@ -67,7 +67,7 @@ return network.registerProtocol('openfortivpn', {
return this._ubus('l3_device') || 'vpn-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'openfortivpn';
},

@ -14,7 +14,7 @@ return network.registerProtocol('l2tp', {
return this._ubus('l3_device') || 'l2tp-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'xl2tpd';
},

@ -47,7 +47,7 @@ return network.registerProtocol('ppp', {
return this._ubus('l3_device') || 'ppp-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'ppp';
},

@ -32,7 +32,7 @@ return network.registerProtocol('pppoa', {
return this._ubus('l3_device') || 'pppoa-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'ppp-mod-pppoa';
},

@ -32,7 +32,7 @@ return network.registerProtocol('pppoe', {
return this._ubus('l3_device') || 'pppoe-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'ppp-mod-pppoe';
},

@ -32,7 +32,7 @@ return network.registerProtocol('pptp', {
return this._ubus('l3_device') || 'pptp-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'ppp-mod-pptp';
},

@ -32,7 +32,7 @@ return network.registerProtocol('pppossh', {
return this._ubus('l3_device') || 'pppossh-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'pppossh';
},

@ -31,7 +31,7 @@ return network.registerProtocol('qmi', {
return this._ubus('l3_device') || 'qmi-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'uqmi';
},

@ -68,7 +68,7 @@ return network.registerProtocol('relay', {
return 'relay-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'relayd';
},

@ -13,7 +13,7 @@ return network.registerProtocol('sstp', {
return this._ubus('l3_device') || 'sstp-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'sstp-client';
},

@ -12,7 +12,7 @@ return network.registerProtocol('unet', {
return this._ubus('l3_device') || this.sid;
},
getOpkgPackage: function() {
getPackageName: function() {
return 'unetd';
},

@ -13,7 +13,7 @@ return network.registerProtocol('vpnc', {
return this._ubus('l3_device') || 'vpn-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'vpnc';
},

@ -14,7 +14,7 @@ return network.registerProtocol('vti', {
return this._ubus('l3_device') || 'vti-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'vti';
},

@ -15,7 +15,7 @@ return network.registerProtocol('vxlan', {
return this._ubus('l3_device') || 'vxlan-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'vxlan';
},

@ -15,7 +15,7 @@ return network.registerProtocol('vxlan6', {
return this._ubus('l3_device') || 'vxlan-%s'.format(this.sid);
},
getOpkgPackage: function() {
getPackageName: function() {
return 'vxlan';
},

@ -109,7 +109,7 @@ return network.registerProtocol('wireguard', {
return this._ubus('l3_device') || this.sid;
},
getOpkgPackage: function() {
getPackageName: function() {
return 'wireguard-tools';
},

@ -13,7 +13,7 @@ return network.registerProtocol('xfrm', {
return this._ubus('l3_device') || this.sid;
},
getOpkgPackage: function() {
getPackageName: function() {
return 'xfrm';
},

@ -210,7 +210,7 @@ return network.registerProtocol('yggdrasil',
getType: function() {
return "tunnel";
},
getOpkgPackage: function() {
getPackageName: function() {
return 'yggdrasil';
},
isFloating: function() {