deploy: 6644f90e9c2f7efe72fcd1a31a6355013ac248fc
authorsystemcrash <systemcrash@users.noreply.github.com>
Thu, 15 Feb 2024 03:12:51 +0000 (03:12 +0000)
committersystemcrash <systemcrash@users.noreply.github.com>
Thu, 15 Feb 2024 03:12:51 +0000 (03:12 +0000)
67 files changed:
LMO.md
ThemesHowTo.md
i18n.md
jsapi/LuCI.baseclass.html
jsapi/LuCI.dom.html
jsapi/LuCI.form.AbstractElement.html
jsapi/LuCI.form.AbstractSection.html
jsapi/LuCI.form.AbstractValue.html
jsapi/LuCI.form.ButtonValue.html
jsapi/LuCI.form.DummyValue.html
jsapi/LuCI.form.DynamicList.html
jsapi/LuCI.form.FileUpload.html
jsapi/LuCI.form.FlagValue.html
jsapi/LuCI.form.GridSection.html
jsapi/LuCI.form.HiddenValue.html
jsapi/LuCI.form.JSONMap.html
jsapi/LuCI.form.ListValue.html
jsapi/LuCI.form.Map.html
jsapi/LuCI.form.MultiValue.html
jsapi/LuCI.form.NamedSection.html
jsapi/LuCI.form.SectionValue.html
jsapi/LuCI.form.TableSection.html
jsapi/LuCI.form.TextValue.html
jsapi/LuCI.form.TypedSection.html
jsapi/LuCI.form.Value.html
jsapi/LuCI.form.html
jsapi/LuCI.fs.html
jsapi/LuCI.headers.html
jsapi/LuCI.html
jsapi/LuCI.network.Device.html
jsapi/LuCI.network.Hosts.html
jsapi/LuCI.network.Protocol.html
jsapi/LuCI.network.WifiDevice.html
jsapi/LuCI.network.WifiNetwork.html
jsapi/LuCI.network.html
jsapi/LuCI.poll.html
jsapi/LuCI.request.html
jsapi/LuCI.request.poll.html
jsapi/LuCI.response.html
jsapi/LuCI.rpc.html
jsapi/LuCI.session.html
jsapi/LuCI.uci.html
jsapi/LuCI.ui.AbstractElement.html
jsapi/LuCI.ui.Checkbox.html
jsapi/LuCI.ui.ComboButton.html
jsapi/LuCI.ui.Combobox.html
jsapi/LuCI.ui.Dropdown.html
jsapi/LuCI.ui.DynamicList.html
jsapi/LuCI.ui.FileUpload.html
jsapi/LuCI.ui.Hiddenfield.html
jsapi/LuCI.ui.Select.html
jsapi/LuCI.ui.Textarea.html
jsapi/LuCI.ui.Textfield.html
jsapi/LuCI.ui.changes.html
jsapi/LuCI.ui.html
jsapi/LuCI.ui.menu.html
jsapi/LuCI.ui.tabs.html
jsapi/LuCI.view.html
jsapi/LuCI.xhr.html
jsapi/form.js.html
jsapi/fs.js.html
jsapi/index.html
jsapi/luci.js.html
jsapi/network.js.html
jsapi/rpc.js.html
jsapi/uci.js.html
jsapi/ui.js.html

diff --git a/LMO.md b/LMO.md
index 3b7b5f92aefccf9554ae4eb624c95d78297f49a2..6402849dbb407c24159758081caa712fa3f9252c 100644 (file)
--- a/LMO.md
+++ b/LMO.md
@@ -3,8 +3,8 @@
 See [online wiki](https://github.com/openwrt/luci/wiki/LMO) for latest version.
 
 LMO is a simple binary format to pack language strings into a more efficient form.
-Although it's suitable to store any kind of key-value table, it's only used for the LuCI *.po based translation system at the moment.
-The abbreviation "LMO" stands for "Lua Machine Objects" in the style of the GNU gettext *.mo format.
+Although it's suitable to store any kind of key-value table, it's only used for the LuCI \*.po based translation system at the moment.
+The abbreviation "LMO" stands for "Lua Machine Objects" in the style of the GNU gettext \*.mo format.
 
 ## Format Specification
 
@@ -83,7 +83,7 @@ In order to process a LMO file, an implementation would have to do the following
 
 ## Hash Function
 
-The current LuCI-LMO implementation uses the "Super Fast Hash" function which was kindly put in the public domain by it's original author. See http://www.azillionmonkeys.com/qed/hash.html for details. Below is the C-Implementation of this function:
+The current LuCI-LMO implementation uses the "Super Fast Hash" function which was kindly put in the public domain by its original author. See http://www.azillionmonkeys.com/qed/hash.html for details. Below is the C-Implementation of this function:
 
 ```c
 #if (defined(__GNUC__) && defined(__i386__))
index 0cc8f15b3c9576e674a0cee35e805951fc8ea226..62a11b17457427e869ca2917c3bd40ba98258306 100644 (file)
@@ -1,8 +1,8 @@
 # HowTo: Create Themes
-**Note:** You should read the [Module Reference](./Modules.md) and the [Template Reference](./Templates.md) before.
+**Note:** You have already read the [Module Reference](./Modules.md) and the [Template Reference](./Templates.md).
 
 We assume you want to call your new theme `mytheme`.
-Make sure you replace this by your module name everytime this is mentionend in this Howto.
+Replace `mytheme` with your module name every time this is mentioned in this Howto.
 
 ## Creating the structure
 At first create a new theme directory `themes/luci-theme-mytheme`.
@@ -36,7 +36,7 @@ Create two LuCI HTML-Templates named `header.htm` and `footer.htm` under `luasrc
 The `header.htm` will be included at the beginning of each rendered page and the `footer.htm` at the end.
 So your `header.htm` will probably contain a DOCTYPE description, headers,
 the menu and layout of the page and the `footer.htm` will close all remaining open tags and may add a footer bar.
-But hey that's your choice you are the designer ;-).
+But hey that's your choice: you are the designer ;-).
 
 Just make sure your `header.htm` begins with the following lines:
 ```
@@ -45,12 +45,12 @@ require("luci.http").prepare_content("text/html")
 -%>
 ```
 
-This makes sure your content will be sent to the client with the right content type.
+This ensures your content is sent to the client with the right content type.
 Of course you can adapt `text/html` to your needs.
 
 
 Put any stylesheets, Javascripts, images, ... into `htdocs/luci-static/mytheme`.
-You should refer to this directory in your header and footer templates as: `<%=media%>`.
+Refer to this directory in your header and footer templates as: `<%=media%>`.
 That means for a stylesheet `htdocs/luci-static/mytheme/cascade.css` you would write:
 ```html
 <link rel="stylesheet" type="text/css" href="<%=media%>/cascade.css" />
@@ -58,7 +58,7 @@ That means for a stylesheet `htdocs/luci-static/mytheme/cascade.css` you would w
 
 ## Making the theme selectable
 If you are done with your work there are two last steps to do.
-To make your theme OpenWrt-capable and selectable on the settings page you should now create a file `root/etc/uci-defaults/luci-theme-mytheme` with the following contents:
+To make your theme OpenWrt-capable and selectable on the settings page, create a file `root/etc/uci-defaults/luci-theme-mytheme` with the following contents:
 ```sh
 #!/bin/sh
 uci batch <<-EOF
@@ -76,6 +76,6 @@ and another file `ipkg/postinst` with the following content:
 }
 ```
 
-This is some OpenWrt magic to correctly register the template with LuCI when it gets installed.
+This correctly registers the template with LuCI when it gets installed.
 
 That's all. Now send your theme to the LuCI developers to get it into the development repository - if you like.
diff --git a/i18n.md b/i18n.md
index 471eb88f1eb72ec1648397a9e2454bf3a096afc9..c91f29e63dfe68b501b8431be8a4bc4c6e7fbfe1 100644 (file)
--- a/i18n.md
+++ b/i18n.md
@@ -47,58 +47,66 @@ This will generate a full link with HTML `For further information <a href="https
 Use the `<%: text to translate %>` as documented on [Templates](./Templates.md)
 
 ### Translations in Lua controller code and Lua CBIs
-As hinted at in the Templates doc, the `%:` is actually invoking a `translate()` function.
+As hinted at in the Templates doc, the `%:` invokes a `translate()` function.
 In most controller contexts, this is already available for you, but if necessary, is available for include in `luci.i18n.translate`
 
 
 ## Translation files
 Translations are saved in the folder `po/` within each individual LuCI component directory, e.g. `applications/luci-app-acl/po/`.
-You find the reference in `po/templates/<package>.pot`.
+The template is in `po/templates/<package>.pot`.
 The actual 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 you can install with `sudo apt install gettext`.
+On Debian/Ubuntu, install them with `sudo apt install gettext`.
 
 ### Initialize po files
 
-When you add or update an app, simply run from your app folder:
+When you add or update an app, run from your `applications/luci-app-acl/` app folder:
 
     ../../build/i18n-add-language.sh
 
-This creates the skeleton po files for all existing languages open for translation for your app.
+This creates the skeleton .po files for all available languages open for translation for your app.
 
 Or from the luci repo root:
 
     ./build/i18n-add-language.sh
 
-This creates the skeleton po files for all existing languages open for translation for all sub-folders.
+This creates the skeleton .po files for all existing languages open for translation for all sub-folders.
 
-### Rebuild po files
-If you want to rebuild the translations after you made changes to a package this is an easy way:
+### Rebuild po files (for existing languages)
+After you make changes to a package, run:
 
-    ./build/i18n-scan.pl applications/[application] > applications/[application]/po/templates/[application_basename].pot
-    ./build/i18n-update.pl applications/[application]/po
+    ./build/i18n-sync.sh applications/[application]
 
 Example:
 
-    ./build/i18n-scan.pl applications/luci-app-acl > applications/luci-app-acl/po/templates/acl.pot
-    ./build/i18n-update.pl applications/luci-app-acl/po
+    ./build/i18n-sync.sh applications/luci-app-acl
 
-Note that the directory argument can be omitted for `i18n-update.pl` to update all apps.
+This only updates those language .po files that already exist in `applications/luci-app-acl/po/`. See the previous step to add a new language.
 
-Some packages share translation files, in this case you need to scan through all their folders.
-The first command from above should then be:
+Note: the directory argument can be omitted to update all po template and po files.
+
+
+Some packages share translation files, in this case you need to scan through all their folders:
 
     ./build/i18n-scan.pl applications/[package-1] applications/[package-2] applications/[package-n] > [location of shared template]/[application].pot
 
-*Note:* The translation catalog for the base system covers multiple components, use the following commands to update it:
+This is what the `mkbasepot.sh` script does for the `luci-base` module:
+
+    ./build/i18n-scan.pl \
+        modules/luci-base modules/luci-compat modules/luci-lua-runtime \
+        modules/luci-mod-network modules/luci-mod-status modules/luci-mod-system \
+        protocols themes \
+    > modules/luci-base/po/templates/base.pot
+
+*Note:* The translation catalog for the base system covers multiple components. Use the following commands to update it:
 
     ./build/mkbasepot.sh
     ./build/i18n-update.pl
 
 ### LMO files
 The `*.po` files are big so Luci needs them in a compact compiled [LMO format](./LMO.md).
-Luci reads `*.lmo` translations from `/usr/lib/lua/luci/i18n/` folder.
+Luci reads `*.lmo` translations from the `/usr/lib/lua/luci/i18n/` folder.
 E.g. `luci-app-acl` has an Arabic translation in `luci-i18n-acl-ar` package that installs `/usr/lib/lua/luci/i18n/acl.ar.lmo` file.
 
 In order to quickly convert a single `.po` file to `.lmo` file for testing on the target system use the `po2lmo` utility.
@@ -109,9 +117,9 @@ You will need to compile it from the `luci-base` module:
      $ ./po2lmo
      Usage: ./po2lmo input.po output.lmo
 
-Now you can compile and upload translation:
+Now you can compile and upload the translation:
 
      ./po2lmo ../../../applications/luci-app-acl/po/ar/acl.po ./acl.ar.lmo
      scp ./acl.ar.lmo root@192.168.1.1:/usr/lib/lua/luci/i18n/
 
-You can change language in [System /Language and Style](http://192.168.1.1/cgi-bin/luci/admin/system/system) and check the translation.
\ No newline at end of file
+You can change languages in [System /Language and Style](http://192.168.1.1/cgi-bin/luci/admin/system/system) and check the translation.
index d05de045199b75abceabb500acceaba051c25f77..c739612e42fc6cd5fc306b32d2761cade0d2af7f 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index bf9bed6c50808138c730cdaaca85e1cd62e5f082..e52af890be7609c0b3de57fe161cf53e424bc791 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 65944ea7c01d115af850e664d85c4ff829215702..27cd1c7b5534bf1f9986b8e694d9a7153a93aad2 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 5d9b60303a78276bbc25e61ead459588d625c7c2..47315ccaf9214ecb6e477dbaa4ac0aef02648019 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index ddf826c6a737d2137119d02753026e35fa02d8e4..2e9117ee7a0bc2c7c8a394caf72fd3c2041bd667 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 0c05a69764084f777209fcf5af9d31aafab01ccc..882dcb257ecd2057ddff8d2c8b3dbfd2a59c04b7 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index fe14115181617582e08c20576d23c67fd3888136..be66b7d3c5b124a6263cc33c7534ecb1ecda5ce1 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 74dc30dc3b6ab928894e251603a6f608190e8870..d6b4868621d6c8aed5adc8493903070565da064f 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index f8e030064da0e9ee77fc1a996c0688ad6ae5cd13..3bd64f37097d63c1a719bbd4c126f35e748ebdfa 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index f2c5ae31c64f8be1596a6dc20709b3a850797f58..021fa8ae4cb45ac49ea0d3d18f3f86ece75ca880 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 0aecaaf295e1ef3791ea3497bd3fcc1bbec4a0d6..379fca0be7a4220ac270e25ffd4f7bcc377643db 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 5b472e50c0d57f5196534f8117078328ef2a68f5..9bfbcb52fe77a56eeb80792ec6be06eabe5ef896 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index b32e52a775f5277b5ec663f363102dc91249366d..c986893ee93969e2a29918716e0a6cc8c476a5a4 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 9bf413f20d6fd9afc34232e3d2e3d43c0e7e40e1..d1864e7ea92b35c6a98715736af32ca8354197f7 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 0e14b86830aab7f631a5bc9bf22b23919bf44e76..49a735a0d98b3421903860e99020760c9f40c6f3 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index d373c977a3cd69a481b6309196c4a123fdb02d0b..d37cac93bcd4632e3739ba7bce863ab5b6dfca61 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 52059985d282772edbf729b1505cea84a824ed1a..210dacfdc1b040cec6cafba764943a1037e3948b 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 16fd2f59a8bb95feae97469cf7239f233f3b3f6d..69bd67c41b8d8dce0128d32798cd0e20cf2ed079 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 2fbaf4b0250c1fb7467e14849c49d3960b572894..f7c2482abb67bdef3bd4710bf22887db9f3b6f7f 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 195854ea9db08b85a7c8b92c470ccaebc5f6c64a..fb2d68a133b07820b7ff0407f473717be5c31f00 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index d3a0eaf30f5b0e5ff887917fc41560af57a241e3..019fb98987540e419526c37c5c3b1398555dd7d0 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 08e20816901dd03cb5022bf5dd65dc97dd131e1c..393ec9fada21f81284cd74bc353f0166510e71c4 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 5b7c2b69177a02279121a5b540e3ef04c95b6ca3..87afb44ed69f99efb2cc769ee6521b257c3a11e6 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index f025761b903769ada432d00dfc44a57440b7d334..d146158155ab5b727445d8da7df1010f6ea494d1 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 057b019c4345a9788af7c61da10c12999d5d6c04..0f26fab72023f3bb9d56bd0e6009abc1c6d51ff0 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index be3d03af49404f60263f8083466f8163b1696848..8b35bc18dcf2aa99f884202926cfad576558a351 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index d03f4f35642a656598480b44693178ea6b520c15..29bfe819fd894a095044c857b1ea584b5816de54 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index a3deea81d38fca820a81cb959a9820eb668673e9..0313f2715c7c9c51a5d2499a0177263c296c9a0b 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index f5b72a6d4c4cc8c3a8f8a661a4882518e3f7f26f..a2e42e0a1a03e8b748a967edbf6a9e9f8dddd1b7 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 4c07e9233be48c82958454a31d05bbdcf4afae95..051d8d3244c1691bf542d03d13cb8e14dac0727e 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index ea701230a70dad33dbaf3ecc10fcf35bfddf5ff5..eea570dc24cfd249099fe576b73fe4dba10c303b 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index de6e2f12c50688380cd3dcc6d4c6153d152b14b2..74884eb9b609daf0a1846017cae7f30b48ff08ac 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 1a80efec1605048958b2ca2df66dbe3402faabbd..593ccdfb3f0db4a5cb10da2eb0ca4ed48674ae99 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 3a20e34956305cdf501a9ed00aa817d09ef2d9ea..75588084d965c11917c204a2b525a98f75b2a8a0 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index ef89ba253732c5bf33e25b0ef4bbb958b7e83ced..1bef9670b6624d5f3a4605e94f388fbbae7a17ab 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 7ea48bc24dd512b4f1fca8758f1f7da38b14142c..4110a221849255ce3a9aa71e8c2e7a652aa95dad 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index e5de91611aefea7bf6cc8856a6dda6abe18958d9..d2b19218514a765a3af9251ca0075565e087b630 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index e14354ced756968038f62b13ed7d9257dd29a1a9..cfebad0ef9f8599eb6cc38befa67e3556b10c8ba 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 1b05e7ed593073c6e3dae7263066bf20dad4bc70..c307de482e52c788b2763f1dd618252d366c329c 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 407786333a1a090ae1ce0065705c73a4b75c327d..b15d0cdd7098be34e02611f51cf495bc1d3c8eed 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 8993fcc7e62bf9e0321cdea060b1454af4bcc008..bc2d949aefa884b955fca6fe581656bd6e5f9605 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index b830d1b20e1f6fe38bdc0179392f55b0f49eb302..e659461fcbe39e07e29f59384f01c8aa62f1705a 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 4b36484923c66909af78559e4b6cd7a6a2c60bec..fd3af71df8d8fe8ac6420fc6d1528cd4027863f8 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 6cd418b3f1352fcd868d73638467c55868363ad6..f043c8a651c10f0f87f7f16c7d3ca081ae2ac482 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 75d1bce6866a9dfedbadf52fe242bd5a57a1e556..a997e1d9d8aadd76bb6b0b7124b148123fc85a49 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 037af4984131fd8fdf16838c7da2a092498ef4e2..2c9513902f8db893827f3d6b21ac6e763a9f89f3 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index cc5dcf740b13a816e5813b1f9679ab9674e107bc..5c920c9b9b0d5e09d26c19fd68fe440e4f9f93cf 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index d2a1cd23965a38ef42d3a5dac9106168e2c029b4..d0c8e46f2c5448f8d0ea1ed6d4588fb199408a21 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index bab3f3ddf6d0bec86980c0f12729add963a20a19..a7a7ea757fff0cff49fc09d6a09bde70b409902c 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 99ee9e7ae51a3bfacd98784025975f2c93526c50..aa636a5be8355fbbc19ad8bf3cfb0cb576c064d5 100644 (file)
@@ -5316,7 +5316,7 @@ corresponding <code>&lt;input&gt;</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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index f9ecd87a48caaac6d602e14216b13c6974ceba75..937cbec6980c3c8bd61e76d9841f5a341966be69 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index e6e7fd21e2fea7bc2ac106790e6c807e05285e2c..227b20a7d270bf59a0bff7299e14d4e8cf4ac748 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 1a5e4961c520a8650822269eee502539dfb66bf2..2cd9cff04f14caf5a009224512d26168fa65d069 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 5c02861cbbd2d0097a9126859c99d803d218f25b..da6e42c13077b50f39123ff79f5aac35c3ccb958 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 5a757575d30b89c3c75024e792cfe6bc3ceb8902..4fd94cc852f2e4c3f66ee73d2216372b2883ff65 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index ef5e5d70e9330650753c7ca334e273b54092bec8..ffdda697bb31742379ba385c285d9e7b09c3126c 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:49 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 25f3e26167c0da6991863e2dc3207cce246e6881..70cce1e31c9aa772cbf71e1ab1b6897044c6710f 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 63e5a911caf64a0f218cdac9bd456a911d462aa2..71b09067a8e65b442bcae0b7b228410dd876489b 100644 (file)
@@ -3957,7 +3957,7 @@ return FileSystem;
         
 
         <footer>
-            Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 2eaf1bea20d2a737d4bdec5017fda85ad673e837..73945dcd1608f15ca90ce9332af75e7438225e2a 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index e2901ef242e1917f8ded8f47b2a1fd3f3f2b0918..a06a1fe9ca70e6e509c6e3089024d64a7e7cc03c 100644 (file)
         
 
         <footer>
-            Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 6996f6cde7b4710627a094807ba5eaca6851d550..2bc62f8ccbb636d27a4d6633b7ad8761e4aadbb8 100644 (file)
@@ -7914,7 +7914,7 @@ return Network;
         
 
         <footer>
-            Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index c3ff0380c4e7b470cac157cc4ec368945e15d8f7..28b5e6612de3c8e822353c612d6814ba35c1aa9c 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index eee5c80c1a2606187037bcb1cc582591253026b5..6de975431b890af09342f3b234db1d22827b0488 100644 (file)
@@ -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 Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>
index 3507da31fa463689198255b9b1a5611e8ff95a8e..9be765ffef699a65cf253765693e3a85a81b1963 100644 (file)
@@ -8486,7 +8486,7 @@ return UI;
         
 
         <footer>
-            Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Wed Jan 31 2024 02:40:09 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 03:12:48 GMT+0000 (Coordinated Universal Time)
         </footer>
     </div>
 </div>