luci-base: comment fixes (sp)

Signed-off-by: Paul Donald <newtwen@gmail.com>
This commit is contained in:
Paul Donald 2023-12-23 14:33:16 +00:00
parent e61b507c5c
commit 5355b7b576

View file

@ -647,7 +647,7 @@ var Hosts, Network, Protocol, Device, WifiDevice, WifiNetwork;
* @hideconstructor * @hideconstructor
* @classdesc * @classdesc
* *
* The `LuCI.network` class combines data from multiple `ubus` apis to * The `LuCI.network` class combines data from multiple `ubus` APIs to
* provide an abstraction of the current network configuration state. * provide an abstraction of the current network configuration state.
* *
* It provides methods to enumerate interfaces and devices, to query * It provides methods to enumerate interfaces and devices, to query
@ -759,11 +759,11 @@ Network = baseclass.extend(/** @lends LuCI.network.prototype */ {
}, },
/** /**
* Instantiates the given {@link LuCI.network.Protocol Protocol} backend, * Instantiates the given {@link LuCI.network.Protocol Protocol} back-end,
* optionally using the given network name. * optionally using the given network name.
* *
* @param {string} protoname * @param {string} protoname
* The protocol backend to use, e.g. `static` or `dhcp`. * The protocol back-end to use, e.g. `static` or `dhcp`.
* *
* @param {string} [netname=__dummy__] * @param {string} [netname=__dummy__]
* The network name to use for the instantiated protocol. This should be * The network name to use for the instantiated protocol. This should be
@ -772,7 +772,7 @@ Network = baseclass.extend(/** @lends LuCI.network.prototype */ {
* without the need for an existing interface. * without the need for an existing interface.
* *
* @returns {null|LuCI.network.Protocol} * @returns {null|LuCI.network.Protocol}
* Returns the instantiated protocol backend class or `null` if the given * Returns the instantiated protocol back-end class or `null` if the given
* protocol isn't known. * protocol isn't known.
*/ */
getProtocol: function(protoname, netname) { getProtocol: function(protoname, netname) {
@ -785,7 +785,7 @@ Network = baseclass.extend(/** @lends LuCI.network.prototype */ {
/** /**
* Obtains instances of all known {@link LuCI.network.Protocol Protocol} * Obtains instances of all known {@link LuCI.network.Protocol Protocol}
* backend classes. * back-end classes.
* *
* @returns {Array<LuCI.network.Protocol>} * @returns {Array<LuCI.network.Protocol>}
* Returns an array of protocol class instances. * Returns an array of protocol class instances.
@ -2254,7 +2254,7 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
* *
* @returns {string[]} * @returns {string[]}
* Returns an array of IPv4 DNS servers registered by the remote * Returns an array of IPv4 DNS servers registered by the remote
* protocol backend. * protocol back-end.
*/ */
getDNSAddrs: function() { getDNSAddrs: function() {
var addrs = this._ubus('dns-server'), var addrs = this._ubus('dns-server'),
@ -2342,7 +2342,7 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
* *
* @returns {string[]} * @returns {string[]}
* Returns an array of IPv6 DNS servers registered by the remote * Returns an array of IPv6 DNS servers registered by the remote
* protocol backend. * protocol back-end.
*/ */
getDNS6Addrs: function() { getDNS6Addrs: function() {
var addrs = this._ubus('dns-server'), var addrs = this._ubus('dns-server'),
@ -2433,7 +2433,7 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
}, },
/** /**
* Check function for the protocol handler if a new interface is createable. * Check function for the protocol handler if a new interface is creatable.
* *
* This function should be overwritten by protocol specific subclasses. * This function should be overwritten by protocol specific subclasses.
* *
@ -2443,7 +2443,7 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
* The name of the interface to be created. * The name of the interface to be created.
* *
* @returns {Promise<void>} * @returns {Promise<void>}
* Returns a promise resolving if new interface is createable, else * Returns a promise resolving if new interface is creatable, else
* rejects with an error message string. * rejects with an error message string.
*/ */
isCreateable: function(ifname) { isCreateable: function(ifname) {
@ -2548,7 +2548,7 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
}, },
/** /**
* Checks whether this logical interface is "empty", meaning that ut * Checks whether this logical interface is "empty", where empty means that it
* has no network devices attached. * has no network devices attached.
* *
* @returns {boolean} * @returns {boolean}
@ -2673,7 +2673,7 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
}, },
/** /**
* Returns the layer 2 linux network device currently associated * Returns the layer 2 Linux network device currently associated
* with this logical interface. * with this logical interface.
* *
* @returns {LuCI.network.Device} * @returns {LuCI.network.Device}
@ -2686,7 +2686,7 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
}, },
/** /**
* Returns the layer 3 linux network device currently associated * Returns the layer 3 Linux network device currently associated
* with this logical interface. * with this logical interface.
* *
* @returns {LuCI.network.Device} * @returns {LuCI.network.Device}
@ -2871,7 +2871,7 @@ Device = baseclass.extend(/** @lends LuCI.network.Device.prototype */ {
* *
* @returns {null|string} * @returns {null|string}
* Returns the MAC address of the device or `null` if not applicable, * Returns the MAC address of the device or `null` if not applicable,
* e.g. for non-ethernet tunnel devices. * e.g. for non-Ethernet tunnel devices.
*/ */
getMAC: function() { getMAC: function() {
var mac = this._devstate('macaddr'); var mac = this._devstate('macaddr');
@ -2948,8 +2948,8 @@ Device = baseclass.extend(/** @lends LuCI.network.Device.prototype */ {
* Get a short description string for the device. * Get a short description string for the device.
* *
* @returns {string} * @returns {string}
* Returns the device name for non-wifi devices or a string containing * Returns the device name for non-WiFi devices or a string containing
* the operation mode and SSID for wifi devices. * the operation mode and SSID for WiFi devices.
*/ */
getShortName: function() { getShortName: function() {
if (this.wif != null) if (this.wif != null)
@ -2963,7 +2963,7 @@ Device = baseclass.extend(/** @lends LuCI.network.Device.prototype */ {
* *
* @returns {string} * @returns {string}
* Returns a string containing the type description and device name * Returns a string containing the type description and device name
* for non-wifi devices or operation mode and ssid for wifi ones. * for non-WiFi devices or operation mode and SSID for WiFi ones.
*/ */
getI18n: function() { getI18n: function() {
if (this.wif != null) { if (this.wif != null) {
@ -3143,7 +3143,7 @@ Device = baseclass.extend(/** @lends LuCI.network.Device.prototype */ {
* *
* @returns {boolean} * @returns {boolean}
* Returns true if the device has a carrier, e.g. when a cable is * Returns true if the device has a carrier, e.g. when a cable is
* inserted into an ethernet port of false if there is none. * inserted into an Ethernet port of false if there is none.
*/ */
getCarrier: function() { getCarrier: function() {
var link = this._devstate('link'); var link = this._devstate('link');
@ -3155,8 +3155,8 @@ Device = baseclass.extend(/** @lends LuCI.network.Device.prototype */ {
* *
* @returns {number|null} * @returns {number|null}
* Returns the current speed of the network device in Mbps. If the * Returns the current speed of the network device in Mbps. If the
* device supports no ethernet speed levels, null is returned. * device supports no Ethernet speed levels, null is returned.
* If the device supports ethernet speeds but has no carrier, -1 is * If the device supports Ethernet speeds but has no carrier, -1 is
* returned. * returned.
*/ */
getSpeed: function() { getSpeed: function() {
@ -3771,7 +3771,7 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */
}, },
/** /**
* Get the name of the corresponding wifi radio device. * Get the name of the corresponding WiFi radio device.
* *
* @returns {null|string} * @returns {null|string}
* Returns the name of the radio device this network is configured on * Returns the name of the radio device this network is configured on
@ -3782,11 +3782,11 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */
}, },
/** /**
* Get the corresponding wifi radio device. * Get the corresponding WiFi radio device.
* *
* @returns {null|LuCI.network.WifiDevice} * @returns {null|LuCI.network.WifiDevice}
* Returns a `Network.WifiDevice` instance representing the corresponding * Returns a `Network.WifiDevice` instance representing the corresponding
* wifi radio device or `null` if the related radio device could not be * WiFi radio device or `null` if the related radio device could not be
* found. * found.
*/ */
getWifiDevice: function() { getWifiDevice: function() {
@ -4125,7 +4125,7 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */
}, },
/** /**
* Query the current average bitrate of all peers associated to this * Query the current average bit-rate of all peers associated to this
* wireless network. * wireless network.
* *
* @returns {null|number} * @returns {null|number}
@ -4333,10 +4333,10 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */
}, },
/** /**
* Check whether this wifi network supports de-authenticating clients. * Check whether this WiFi network supports de-authenticating clients.
* *
* @returns {boolean} * @returns {boolean}
* Returns `true` when this wifi network instance supports forcibly * Returns `true` when this WiFi network instance supports forcibly
* de-authenticating clients, otherwise `false`. * de-authenticating clients, otherwise `false`.
*/ */
isClientDisconnectSupported: function() { isClientDisconnectSupported: function() {