mirror of
https://github.com/openwrt/luci.git
synced 2025-12-21 19:14:34 +04:00
deploy: 1635bbfad4
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# HowTo: Write Modules
|
||||
# HowTo: Write Lua based Modules (deprecated for client side modules)
|
||||
|
||||
See [online wiki](https://github.com/openwrt/luci/wiki/ModulesHowTo) for latest version.
|
||||
|
||||
@@ -7,34 +7,34 @@ See [online wiki](https://github.com/openwrt/luci/wiki/ModulesHowTo) for latest
|
||||
This tutorial describes how to write your own modules for the LuCI WebUI.
|
||||
For this tutorial we refer to your LuCI installation directory as `lucidir` (`/usr/lib/lua/luci` on your OpenWRT device) and assume your LuCI installation is reachable through your webserver via `http://192.168.1.1/cgi-bin/luci`.
|
||||
|
||||
The recommended way to set up development environment:
|
||||
The recommended way to set up a development environment:
|
||||
|
||||
Install OpenWRT on your router/device (You could use a QEMU or VirtualBox image instead)
|
||||
- Install OpenWRT on your router/device (You could use a QEMU or VirtualBox image instead)
|
||||
|
||||
Install SSHFS on your host
|
||||
- Install SSHFS on your host
|
||||
|
||||
Mount your routers' root (/) someplace on your development host (eg. /mnt/router)
|
||||
- Mount your routers' root (`/`) someplace on your development host (eg. `/mnt/router`)
|
||||
|
||||
Then open /mnt/router/(lucidir) in your favorite development studio
|
||||
- Then open `/mnt/router/(lucidir)` in your favorite development studio
|
||||
|
||||
Extra: Add configurations to your dev studio which will delete the luci cache (detailed below) and then open a browser window to your routers' configuration page in order to see your module/application.
|
||||
Extra:
|
||||
- Add configurations to your dev studio which will delete the luci cache (detailed below) and then open a browser window to your routers' configuration page in order to see your module/application.
|
||||
|
||||
|
||||
When testing, if you have edited index files, be sure to remove the folder `/tmp/luci-modulecache/*` and the file(s) `/tmp/luci-indexcache*`, then refresh the LUCI page to see your edits.
|
||||
|
||||
## Show me the way (The dispatching process)
|
||||
To write a module you need to understand the basics of the dispatching process in LuCI.
|
||||
LuCI uses a dispatching tree that will be built by executing the index-Function of every available controller.
|
||||
## The dispatching process
|
||||
LuCI uses a dispatching tree that is built by executing the index-Function of every available controller.
|
||||
The CGI-environment variable `PATH_INFO` will be used as the path in this dispatching tree, e.g.: `/cgi-bin/luci/foo/bar/baz`
|
||||
will be resolved to `foo.bar.baz`
|
||||
resolves to `foo.bar.baz`.
|
||||
|
||||
To register a function in the dispatching tree, you can use the `entry`-function of `luci.dispatcher`. It takes 4 arguments (2 are optional):
|
||||
To register a function in the dispatching tree, use the `entry`-function of `luci.dispatcher`. It takes 4 arguments (2 are optional):
|
||||
```lua
|
||||
entry(path, target, title=nil, order=nil)
|
||||
```
|
||||
|
||||
* `path` is a table that describes the position in the dispatching tree: For example a path of `{"foo", "bar", "baz"}` would insert your node in `foo.bar.baz`.
|
||||
* `target` describes the action that will be taken when a user requests the node. There are several predefined ones of which the 3 most important (call, template, cbi) are described later on this page
|
||||
* `target` describes the action that will be taken when a user requests the node. There are several predefined actions, of which the 3 most important (call, template, cbi) are described later on this page
|
||||
* `title` defines the title that will be visible to the user in the menu (optional)
|
||||
* `order` is a number with which nodes on the same level will be sorted in the menu (optional)
|
||||
|
||||
@@ -46,8 +46,8 @@ You can assign more attributes by manipulating the node table returned by the en
|
||||
* `sysauth` requires the user to authenticate with a given system user account
|
||||
|
||||
|
||||
# It's all about names (Naming and the module file)
|
||||
Now that you know the basics about dispatching, we can start writing modules. Now, choose the category and name of your new digital child.
|
||||
# Naming and the module file
|
||||
Now we can start writing modules. Choose the category and name of your new digital child.
|
||||
|
||||
Let's assume you want to create a new application `myapp` with a module `mymodule`.
|
||||
|
||||
|
||||
20
README.md
20
README.md
@@ -4,5 +4,21 @@ See Wiki [LuCI Technical Reference](https://openwrt.org/docs/techref/luci)
|
||||
|
||||
## API Reference
|
||||
|
||||
- [Client side JavaScript APIs](jsapi/)
|
||||
- [Server side Lua APIs](api/index.html)
|
||||
- [Client side JavaScript APIs](jsapi/)
|
||||
- [How to i18n your module](i18n): internationalization via \*.po and \*.pot files
|
||||
- [How to make LuCI JS Modules](https://github.com/openwrt/luci/tree/master/applications/luci-app-example): see the luci-app-example in the repo
|
||||
- [How to use the JSON-RPC](JsonRpcHowTo)
|
||||
- [How to make themes](ThemesHowTo)
|
||||
- [LuCI Modules Reference](Modules): can be JS based or Lua (deprecated)
|
||||
|
||||
## Deprecated API Reference (older Lua based APIs)
|
||||
|
||||
- [CBI models reference](CBI):CBI models are Lua files describing the structure of an UCI config file and the resulting HTML form to be evaluated by the CBI parser
|
||||
- [How to make LuCI Lua Modules](ModulesHowTo): No new Lua modules for client side display are accepted, but some server side things are still done in Lua
|
||||
- [LMO - Lua Machine Objects](LMO): to pack language strings into a more efficient form for Lua
|
||||
- [Server side Lua APIs](api/index.html)
|
||||
- [Templates](Templates): template processor which parses HTML-files to Lua functions and allows to store precompiled template files
|
||||
|
||||
## Archived
|
||||
|
||||
- [LuCI-0.10](LuCI-0.10): No longer used, but useful reference if you encounter older LuCI versions.
|
||||
18
i18n.md
18
i18n.md
@@ -6,7 +6,7 @@ See [online wiki](https://github.com/openwrt/luci/wiki/i18n) for latest version.
|
||||
|
||||
### Translations in JavaScript
|
||||
|
||||
Wrap translatable strings with `_()` e.g. `_('string to translate')` and the `i18n-scan.pl` and friends will correctly identify these strings as they do with all the existing translations.
|
||||
Wrap translatable strings with `_()` e.g. `_('string to translate')` and the `i18n-scan.pl` and friends will correctly identify these strings for translation.
|
||||
|
||||
If you have multi line strings you can split them with concatenation:
|
||||
```js
|
||||
@@ -23,25 +23,19 @@ var mystr = _('this string will translate \
|
||||
a multi line string');
|
||||
```
|
||||
|
||||
Usually if you have multiple sentences you may need to use a line break then use the `<br />` HTML tag:
|
||||
```js
|
||||
var mystr = _('Port number.<br />' +
|
||||
'E.g. 80 for HTTP');
|
||||
```
|
||||
|
||||
To simplify a job for translators it may be better to split into separate keys without the `<br />`:
|
||||
Usually if you have multiple sentences you may need to use a line break. Use the `<br />` HTML tag like so:
|
||||
```js
|
||||
var mystr = _('Port number.') + '<br />' +
|
||||
_('E.g. 80 for HTTP');
|
||||
```
|
||||
Please use `<br />` and **not** `<br>` or `<br/>`.
|
||||
Use `<br />` and **not** `<br>` or `<br/>`.
|
||||
|
||||
If you have a link inside a translation then try to move its attributes out of a translation key like:
|
||||
If you have a link inside a translation, move its attributes out of a translation key:
|
||||
```js
|
||||
var mystr = _('For further information <a %s>check the wiki</a>')
|
||||
.format('href="https://openwrt.org/docs/" target="_blank" rel="noreferrer"')
|
||||
```
|
||||
This will generate a full link with HTML `For further information <a href="https://openwrt.org/docs/" target="_blank" rel="noreferrer">check the wiki</a>`. The `noreferrer` is important when making a link that is opened in a new tab (`target="_blank"`).
|
||||
This will generate a full link with HTML `For further information <a href="https://openwrt.org/docs/" target="_blank" rel="noreferrer">check the wiki</a>`. The `noreferrer` is important so that it is opened in a new tab (`target="_blank"`).
|
||||
|
||||
### Translations in LuCI lua+html templates
|
||||
Use the `<%: text to translate %>` as documented on [Templates](./Templates.md)
|
||||
@@ -54,7 +48,7 @@ In most controller contexts, this is already available for you, but if necessary
|
||||
## Translation files
|
||||
Translations are saved in the folder `po/` within each individual LuCI component directory, e.g. `applications/luci-app-acl/po/`.
|
||||
The template is in `po/templates/<package>.pot`.
|
||||
The actual translation files can be found at `po/[lang]/[package].po`.
|
||||
The individual language translation files can be found at `po/[lang]/[package].po`.
|
||||
|
||||
In order to use the commands below you need to have the `gettext` utilities (`msgcat`, `msgfmt`, `msgmerge`) installed on your system.
|
||||
On Debian/Ubuntu, install them with `sudo apt install gettext`.
|
||||
|
||||
@@ -4758,7 +4758,7 @@ and the values extracted from the <code>args</code> array beginning with
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6316,7 +6316,7 @@ ignored, else not.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4305,7 +4305,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6204,7 +6204,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7262,7 +7262,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7585,7 +7585,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7571,7 +7571,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7422,7 +7422,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7633,7 +7633,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7613,7 +7613,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6964,7 +6964,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7426,7 +7426,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5884,7 +5884,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7571,7 +7571,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5863,7 +5863,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7522,7 +7522,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6468,7 +6468,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7453,7 +7453,7 @@ its <code>write()</code> implementation is a no-op.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6936,7 +6936,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7469,7 +7469,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6625,7 +6625,7 @@ was neither a string nor a function.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7528,7 +7528,7 @@ before it is written.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -3726,7 +3726,7 @@ m.render().then(function(node) {
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5915,7 +5915,7 @@ the failure reason.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -3931,7 +3931,7 @@ Note: Header-Names are case-insensitive.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8338,7 +8338,7 @@ else <code>null</code>.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6296,7 +6296,7 @@ when it is down or absent.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4857,7 +4857,7 @@ is used as hint.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8087,7 +8087,7 @@ configuration.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5228,7 +5228,7 @@ configuration.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7818,7 +7818,7 @@ configuration.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -9666,7 +9666,7 @@ conjunction with <code>quality</code> to calculate a quality percentage.</p></td
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4314,7 +4314,7 @@ run to begin with.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5249,7 +5249,7 @@ instances as sole argument during the HTTP request transfer.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4433,7 +4433,7 @@ else <code>null</code>.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4391,7 +4391,7 @@ using <code>String()</code> and treated as response text.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5722,7 +5722,7 @@ to the <code>expect</code> and <code>filter</code> declarations.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4161,7 +4161,7 @@ being put in the session store.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7209,7 +7209,7 @@ associated name as arguments.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5265,7 +5265,7 @@ and are displayed in a slightly faded style.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5379,7 +5379,7 @@ it is required for HTML based form submissions.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5409,7 +5409,7 @@ choice value as second argument.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5312,7 +5312,7 @@ forcibly set to <code>true</code>.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6110,7 +6110,7 @@ expression. Only applicable when <code>create</code> is <code>true</code>.</p></
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5487,7 +5487,7 @@ it to remain unselected.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5336,7 +5336,7 @@ ACL setup for the current session.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5090,7 +5090,7 @@ trigger validation runs, e.g. when programmatically altering values.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5442,7 +5442,7 @@ selected yet. Only applicable to the <code>select</code> widget type.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5388,7 +5388,7 @@ contents.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5316,7 +5316,7 @@ corresponding <code><input></code> element is empty.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4168,7 +4168,7 @@ is removed.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6264,7 +6264,7 @@ cancelled by the user.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4215,7 +4215,7 @@ internal root node if omitted.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -3915,7 +3915,7 @@ DOM node.</p></td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4519,7 +4519,7 @@ to a <code>Node</code> value.</td>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4483,7 +4483,7 @@ when invoked.</p>
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:49 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8345,7 +8345,7 @@ return baseclass.extend(/** @lends LuCI.form.prototype */ {
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -3957,7 +3957,7 @@ return FileSystem;
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -3544,7 +3544,7 @@ is the central <a target="_blank" href="https://openwrt.github.io/luci/jsapi/LuC
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6990,7 +6990,7 @@
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -7914,7 +7914,7 @@ return Network;
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4013,7 +4013,7 @@ return baseclass.extend(/** @lends LuCI.rpc.prototype */ {
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4516,7 +4516,7 @@ return baseclass.extend(/** @lends LuCI.uci.prototype */ {
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8486,7 +8486,7 @@ return UI;
|
||||
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 03:12:48 GMT+0000 (Coordinated Universal Time)
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Thu Feb 15 2024 17:46:10 GMT+0000 (Coordinated Universal Time)
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user