]> git.mxchange.org Git - friendica.git/commitdiff
spelling: javascript
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Tue, 21 Mar 2023 03:16:32 +0000 (23:16 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 20:13:07 +0000 (16:13 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
13 files changed:
CHANGELOG
doc/Addons.md
doc/themes.md
mods/bookmarklet-share2friendica/README.md
src/App/Page.php
src/Module/HTTPException/PageNotFound.php
src/Module/Media/Attachment/Upload.php
src/Module/Media/Photo/Upload.php
src/Navigation/Notifications/ValueObject/FormattedNavNotification.php
view/theme/frio/js/mod_admin.js
view/theme/frio/js/mod_display.js
view/theme/frio/js/mod_notifications.js
view/theme/frio/theme.php

index 49d55d11194fc69b564f1837e283913c20f7afcc..f4631b346add783da8d74bb07fe4ca01961e4785 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1968,7 +1968,7 @@ Version 3.4.1 (2015-07-06)
        Implement server-to-server encryption (RINO) using php-encryption library as "RINO 2", deprecate "RINO 1" (issue #1655) (fabrixxm)
        Fix connection with Diaspora "freelove" account (issue #1572) (annando)
        Various SQL speedups (annando)
-       Port of Javascript DatePicker input from RedMatrix (rabuzarus)
+       Port of JavaScript DatePicker input from RedMatrix (rabuzarus)
        Port of RedMatrix archive widget (rabuzarus)
        Load profile owner settings for theme on profile page (rabuzarus)
        Move HTML code from php into templates (rabuzarus)
index dbb2c501fe34d11b4de6b6d1a44eab385d4bdc52..df18ea62f207f11848299fb4977b8af6818c886c 100644 (file)
@@ -124,7 +124,7 @@ function <addon>_footer()
 ### JavaScript hooks
 
 The main Friendica script provides hooks via events dispatched on the `document` property.
-In your Javascript file included as described above, add your event listener like this:
+In your JavaScript file included as described above, add your event listener like this:
 
 ```js
 document.addEventListener(name, callback);
@@ -133,7 +133,7 @@ document.addEventListener(name, callback);
 - *name* is the name of the hook and corresponds to a known Friendica JavaScript hook.
 - *callback* is a JavaScript anonymous function to execute.
 
-More info about Javascript event listeners: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
+More info about JavaScript event listeners: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
 
 #### Current JavaScript hooks
 
@@ -425,7 +425,7 @@ Called after HTML content functions have completed.
 
 ### footer
 Called after HTML content functions have completed.
-Deferred Javascript files should be registered using this hook.
+Deferred JavaScript files should be registered using this hook.
 `$b` is (string) HTML of footer div/element.
 
 ### avatar_lookup
index 79b0d06ddb24ee5630d06da80a39acf12aa34217..8d85dce2a9d02382bcc48ee9ee7fec348a7ea8ea 100644 (file)
@@ -50,7 +50,7 @@ if you want to override any template within your theme create your version of th
 
 any template that exists there will be used instead of the default one.
 
-### Javascript
+### JavaScript
 
 The same rule applies to the JavaScript files found in
 
index 4d67bc4e0eb321d90583b1eaf56b12d4e5335cad..b6b1b19a1636ad24dfb032f2f9915d0acfcc4059 100644 (file)
@@ -1,6 +1,6 @@
 # Bookmarklet-share2friendica
 
-Javascript bookmarklet to share websites with your friendica account
+JavaScript bookmarklet to share websites with your friendica account
 
 ## Getting Started
 
index 1a083522e3a94704079e2001cad4962555a4f486..8bb60fa24298fac60508d1c42e41f2c4cd063296 100644 (file)
@@ -291,7 +291,7 @@ class Page implements ArrayAccess
         * Initializes Page->page['footer'].
         *
         * Includes:
-        * - Javascript homebase
+        * - JavaScript homebase
         * - Mobile toggle link
         * - Registered footer scripts (through App->registerFooterScript())
         * - footer.tpl template
index 5818f87598fac82582f7d8eb456dd294abacb14d..4956bfcdc19c9d92e9b7a9994b32011200c2e4c1 100644 (file)
@@ -61,7 +61,7 @@ class PageNotFound extends BaseModule
                 * Otherwise we are going to emit a 404 not found.
                 */
                $queryString = $this->server['QUERY_STRING'];
-               // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
+               // Stupid browser tried to pre-fetch our JavaScript img template. Don't log the event or return anything - just quietly exit.
                if (!empty($queryString) && preg_match('/{[0-9]}/', $queryString) !== 0) {
                        System::exit();
                }
index b837b8df7b62f41fad14778c8980a7fb34f6827c..50c20b36410237415ca24e75331c249e93137075 100644 (file)
@@ -38,7 +38,7 @@ use Psr\Log\LoggerInterface;
 /**
  * Asynchronous attachment upload module
  *
- * Only used as the target action of the AjaxUpload Javascript library
+ * Only used as the target action of the AjaxUpload JavaScript library
  */
 class Upload extends \Friendica\BaseModule
 {
index 8b56540f43cc373c86e3ec63a4babdbd9939be85..1283b7cf342d90afe84ce29fce38be93bc466faa 100644 (file)
@@ -40,7 +40,7 @@ use Psr\Log\LoggerInterface;
 /**
  * Asynchronous photo upload module
  *
- * Only used as the target action of the AjaxUpload Javascript library
+ * Only used as the target action of the AjaxUpload JavaScript library
  */
 class Upload extends \Friendica\BaseModule
 {
index 493fdb811255fefe36c306355b27a621c5f75cfe..8f64bf25adf563c0f1ebb8141ab5721ebd3b0f1e 100644 (file)
@@ -53,7 +53,7 @@ class FormattedNavNotification extends BaseEntity
         */
        public function __construct(string $contact_name, string $contact_url, string $contact_photo, string $timestamp, string $plaintext, string $html, string $href, bool $seen)
        {
-               // Properties differ from constructor because this structure is used in the "nav-update" Javascript event listener
+               // Properties differ from constructor because this structure is used in the "nav-update" JavaScript event listener
                $this->contact = [
                        'name'  => $contact_name,
                        'url'   => $contact_url,
index 1ea087c2cace9e2b96f4537a7cf94e1412ae5cf3..b782df30dbdf252ac9b4cf4b9262c4da243aa8c9 100644 (file)
@@ -1,6 +1,6 @@
 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
 /**
- * Javascript for the admin module
+ * JavaScript for the admin module
  */
 $(function () {
        let $body = $("body");
index 907b0fa7ea1e0c0764fa4568fb37580a3404bf2b..16dfc7730ef78f3de202bdc7948d7a17f59bf558 100644 (file)
@@ -1,6 +1,6 @@
 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
 /**
- * Javascript for the display module
+ * JavaScript for the display module
  */
 
 // Catch the GUID from the URL
index 8ab1bccb759d9474fd720674fa53b9850ec73bf9..c724995e88ff023470de166b035249d11e49431a 100644 (file)
@@ -1,7 +1,7 @@
 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
 
 /**
- * Javascript for the notifications module
+ * JavaScript for the notifications module
  */
 
 // Catch the intro ID from the URL
index e7b18ea7708a7c346716e71fbd28504d017c7a22..db48d3d7fade4d0cc5df00cabb4e616a32e028ee 100644 (file)
@@ -18,7 +18,7 @@
  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  *
  * Name: frio
- * Description: Responsive theme based on a modern HTML/CSS/Javascript framework.
+ * Description: Responsive theme based on a modern HTML/CSS/JavaScript framework.
  * Version: V.1.0
  * Author: Rabuzarus <https://friendica.kommune4.de/profile/rabuzarus>
  * Maintainer: Hypolite Petovan <https://friendica.mrpetovan.com/profile/hypolite>