Auto commit by GitHub Actions Workflow

This commit is contained in:
MooseBotter
2023-11-25 17:31:34 +00:00
parent e62aada689
commit dd6ce4c479
24 changed files with 1061 additions and 556 deletions

View File

@@ -2133,6 +2133,12 @@
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(UTILS).CombineTimeStrings">UTILS.CombineTimeStrings(time_string_01, time_string_02)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Combines two time strings to give you a new time.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(UTILS).DecimalToOctal">UTILS.DecimalToOctal(Number)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Convert a decimal to octal</p>
</td>
</tr>
<tr class="w3-border">
@@ -2528,6 +2534,12 @@
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(UTILS).NMToMeters">UTILS.NMToMeters(NM)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(UTILS).OctalToDecimal">UTILS.OctalToDecimal(Number)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Convert an octal to decimal</p>
</td>
</tr>
<tr class="w3-border">
@@ -2551,7 +2563,7 @@
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(UTILS).PrintTableToLog">UTILS.PrintTableToLog(table, indent)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Print a table to log in a nice format</p>
</td>
</tr>
<tr class="w3-border">
@@ -3924,6 +3936,50 @@ use negative idp for rounding ahead of decimal place, positive for rounding afte
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(UTILS).DecimalToOctal" ><strong>UTILS.DecimalToOctal(Number)</strong></a></h2>
</div>
<p>Convert a decimal to octal</p>
<div id= "#Functions##DecimalToOctal" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
<h2><strong>Defined in:</strong></h2>
<div class="w3-margin-left">
<p>UTILS</p>
</div>
<h2><strong>Parameter:</strong></h2>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>Number</strong></strong>
</p>
</div>
<div class="w3-half">
<p>the number to convert</p>
</div>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p>#number:</p>
</div>
<div class="w3-half">
<p>Octal</p>
</div>
</div>
</div>
</div>
</div>
@@ -7152,6 +7208,50 @@ Returns nil when file cannot be read.</p>
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(UTILS).OctalToDecimal" ><strong>UTILS.OctalToDecimal(Number)</strong></a></h2>
</div>
<p>Convert an octal to decimal</p>
<div id= "#Functions##OctalToDecimal" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
<h2><strong>Defined in:</strong></h2>
<div class="w3-margin-left">
<p>UTILS</p>
</div>
<h2><strong>Parameter:</strong></h2>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>Number</strong></strong>
</p>
</div>
<div class="w3-half">
<p>the number to convert</p>
</div>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p>#number:</p>
</div>
<div class="w3-half">
<p>Decimal</p>
</div>
</div>
</div>
</div>
</div>
@@ -7398,7 +7498,7 @@ Returns nil when file cannot be read.</p>
<h2><a id="#(UTILS).PrintTableToLog" ><strong>UTILS.PrintTableToLog(table, indent)</strong></a></h2>
</div>
<p>Print a table to log in a nice format</p>
<div id= "#Functions##PrintTableToLog" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -7410,21 +7510,27 @@ Returns nil when file cannot be read.</p>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#table
<strong><strong>table</strong></strong>
</p>
</div>
<div class="w3-half">
<p></p>
<p>The table to print</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>indent</strong></strong>
</p>
</div>
<div class="w3-half">
<p></p>
<p>Number of idents</p>
</div>
</div>
</div>