Skip to content

Commit

Permalink
See meese-os/meeseOS@ca34729 from refs/heads/master
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmeese7 committed Sep 26, 2023
1 parent 2011f15 commit 98e3217
Show file tree
Hide file tree
Showing 37 changed files with 20,212 additions and 20,412 deletions.
6,216 changes: 3,081 additions & 3,135 deletions src/api/client/ast/source/config.js.json

Large diffs are not rendered by default.

15,692 changes: 7,846 additions & 7,846 deletions src/api/client/ast/source/core.js.json

Large diffs are not rendered by default.

2,830 changes: 1,415 additions & 1,415 deletions src/api/client/ast/source/providers/core.js.json

Large diffs are not rendered by default.

2,634 changes: 1,317 additions & 1,317 deletions src/api/client/ast/source/utils/preloader.js.json

Large diffs are not rendered by default.

1,318 changes: 659 additions & 659 deletions src/api/client/ast/source/utils/url.js.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions src/api/client/class/src/utils/preloader.js~Preloader.html
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ <h1 data-ice="name">Preloader</h1>



<div class="description" data-ice="description"><p>The Preloader loads styles and scripts</p>
<div class="description" data-ice="description"><p>The Preloader loads styles and scripts.</p>
</div>


Expand Down Expand Up @@ -274,7 +274,7 @@ <h1 data-ice="name">Preloader</h1>
<div>


<div data-ice="description"><p>A list of cached preloads</p>
<div data-ice="description"><p>A list of cached preloads.</p>
</div>
</div>
</td>
Expand Down Expand Up @@ -310,7 +310,7 @@ <h1 data-ice="name">Preloader</h1>
<div>


<div data-ice="description"><p>Loads all resources required for a package</p>
<div data-ice="description"><p>Loads all resources required for a package.</p>
</div>
</div>
</td>
Expand Down Expand Up @@ -345,7 +345,7 @@ <h1 data-ice="name">Preloader</h1>
<div>


<div data-ice="description"><p>Checks the loaded list</p>
<div data-ice="description"><p>Checks the loaded list.</p>
</div>
</div>
</td>
Expand Down Expand Up @@ -427,7 +427,7 @@ <h3 data-ice="anchor" id="instance-member-loaded">



<div data-ice="description"><p>A list of cached preloads</p>
<div data-ice="description"><p>A list of cached preloads.</p>
</div>


Expand Down Expand Up @@ -474,7 +474,7 @@ <h3 data-ice="anchor" id="instance-method-load">



<div data-ice="description"><p>Loads all resources required for a package</p>
<div data-ice="description"><p>Loads all resources required for a package.</p>
</div>


Expand Down Expand Up @@ -558,7 +558,7 @@ <h3 data-ice="anchor" id="instance-method-_load">



<div data-ice="description"><p>Checks the loaded list</p>
<div data-ice="description"><p>Checks the loaded list.</p>
</div>


Expand Down
2 changes: 1 addition & 1 deletion src/api/client/file/src/config.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@

const pathname = createUri(window.location.pathname);
const href = createUri(window.location.href);
const development = !(process.env.NODE_ENV || &quot;&quot;).match(/^prod/i);
const development = !/^prod/i.test(process.env.NODE_ENV || &quot;&quot;);

export const defaultConfiguration = {
development: development,
Expand Down
4 changes: 2 additions & 2 deletions src/api/client/file/src/core.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@
this.options.classNames.forEach((n) =&gt; this.$root.classList.add(n));

const { uri } = this.configuration.ws;
if (!uri.match(/^wss?:/)) {
if (!/^wss?:/.test(uri)) {
const { protocol, host } = window.location;

this.configuration.ws.uri =
Expand Down Expand Up @@ -667,7 +667,7 @@
);
}

if (!url.match(/^((http|ws|ftp)s?:)/i)) {
if (!/^((http|ws|ftp)s?:)/i.test(url)) {
url = this.url(url);

options = merge(
Expand Down
2 changes: 1 addition & 1 deletion src/api/client/file/src/providers/core.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@
resource: soundResource,
play: (src, options = {}) =&gt; {
if (soundsEnabled()) {
const absoluteSrc = src.match(/^(\/|https?:)/)
const absoluteSrc = /^(\/|https?:)/.test(src)
? src
: soundResource(src);

Expand Down
10 changes: 5 additions & 5 deletions src/api/client/file/src/utils/preloader.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,12 +232,12 @@
*/

/**
* The Preloader loads styles and scripts
* The Preloader loads styles and scripts.
*/
export default class Preloader {
constructor(root) {
/**
* A list of cached preloads
* A list of cached preloads.
* @type {String[]}
*/
this.loaded = [];
Expand All @@ -253,7 +253,7 @@
}

/**
* Loads all resources required for a package
* Loads all resources required for a package.
* @param {String[]} list A list of resources
* @param {Boolean} [force=false] Force loading even though previously cached
* @returns {Promise&lt;PreloaderResult&gt;} A list of failed resources
Expand All @@ -267,7 +267,7 @@
.map((entry) =&gt; {
logger.debug(&quot;Packages::preload()&quot;, entry);

const p = entry.match(/\.js$/)
const p = /\.js$/.test(entry)
? script(this.$root, entry)
: style(this.$root, entry);

Expand All @@ -280,7 +280,7 @@
}

/**
* Checks the loaded list
* Checks the loaded list.
* @private
* @param {Object[]} results Preload results
* @param {String[]} cached Already cached preloads
Expand Down
2 changes: 1 addition & 1 deletion src/api/client/file/src/utils/url.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
return (endpoint = &quot;/&quot;, options = {}, metadata = {}) =&gt; {
if (typeof endpoint !== &quot;string&quot;) {
return http.public;
} else if (endpoint.match(/^(http|ws|ftp)s?:/i)) {
} else if (/^(http|ws|ftp)s?:/i.test(endpoint)) {
return endpoint;
}

Expand Down
2 changes: 1 addition & 1 deletion src/api/client/identifiers.html
Original file line number Diff line number Diff line change
Expand Up @@ -3296,7 +3296,7 @@ <h2 data-ice="dirPath" id="utils">utils</h2>
<div>


<div data-ice="description"><p>The Preloader loads styles and scripts</p>
<div data-ice="description"><p>The Preloader loads styles and scripts.</p>
</div>
</div>
</td>
Expand Down
20 changes: 10 additions & 10 deletions src/api/client/index.json

Large diffs are not rendered by default.

104 changes: 52 additions & 52 deletions src/api/client/source.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/api/common/source.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,31 +56,31 @@
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">4729 byte</td>
<td style="display: none;" data-ice="lines">170</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/esdoc.js.html">src/esdoc.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">169 byte</td>
<td style="display: none;" data-ice="lines">5</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/service-provider.js.html">src/service-provider.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/service-provider.js~ServiceProvider.html">ServiceProvider</a></span></td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">2315 byte</td>
<td style="display: none;" data-ice="lines">82</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/utils.js.html">src/utils.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">4469 byte</td>
<td style="display: none;" data-ice="lines">166</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
</tbody>
</table>
Expand Down
6 changes: 3 additions & 3 deletions src/api/dialogs/source.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,23 +65,23 @@
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">3390 byte</td>
<td style="display: none;" data-ice="lines">115</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/dialogs/confirm.js.html">src/dialogs/confirm.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/dialogs/confirm.js~ConfirmDialog.html">ConfirmDialog</a></span></td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">2941 byte</td>
<td style="display: none;" data-ice="lines">96</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/dialogs/progress.js.html">src/dialogs/progress.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/dialogs/progress.js~ProgressDialog.html">ProgressDialog</a></span></td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">3603 byte</td>
<td style="display: none;" data-ice="lines">122</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
</tbody>
</table>
Expand Down
2 changes: 1 addition & 1 deletion src/api/event-emitter/source.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">437 byte</td>
<td style="display: none;" data-ice="lines">26</td>
<td style="display: none;" data-ice="updated">2023-09-03 16:03:18 (UTC)</td>
<td style="display: none;" data-ice="updated">2023-09-03 20:20:07 (UTC)</td>
</tr>
</tbody>
</table>
Expand Down
Loading

0 comments on commit 98e3217

Please sign in to comment.