Skip to content

Commit abfab98

Browse files
sapicsMylesBorins
authored andcommitted
doc: replace http to https of link urls
PR-URL: #34158 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 2e20cd4 commit abfab98

File tree

14 files changed

+29
-29
lines changed

14 files changed

+29
-29
lines changed

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1545,5 +1545,5 @@ $ node --max-old-space-size=1536 index.js
15451545
[emit_warning]: process.html#process_process_emitwarning_warning_type_code_ctor
15461546
[experimental ECMAScript Module loader]: esm.html#esm_experimental_loaders
15471547
[jitless]: https://v8.dev/blog/jitless
1548-
[libuv threadpool documentation]: http://docs.libuv.org/en/latest/threadpool.html
1548+
[libuv threadpool documentation]: https://docs.libuv.org/en/latest/threadpool.html
15491549
[remote code execution]: https://www.owasp.org/index.php/Code_Injection

doc/api/dns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ The [`dns.setServers()`][] method affects only [`dns.resolve()`][],
616616
[`dns.lookup()`][]).
617617

618618
This method works much like
619-
[resolve.conf](http://man7.org/linux/man-pages/man5/resolv.conf.5.html).
619+
[resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).
620620
That is, if attempting to resolve with the first server provided results in a
621621
`NOTFOUND` error, the `resolve()` method will *not* attempt to resolve with
622622
subsequent servers provided. Fallback DNS servers will only be used if the
@@ -1080,7 +1080,7 @@ The `dnsPromises.setServers()` method must not be called while a DNS query is in
10801080
progress.
10811081

10821082
This method works much like
1083-
[resolve.conf](http://man7.org/linux/man-pages/man5/resolv.conf.5.html).
1083+
[resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).
10841084
That is, if attempting to resolve with the first server provided results in a
10851085
`NOTFOUND` error, the `resolve()` method will *not* attempt to resolve with
10861086
subsequent servers provided. Fallback DNS servers will only be used if the

doc/api/errors.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2508,7 +2508,7 @@ closed.
25082508
[`dgram.createSocket()`]: dgram.html#dgram_dgram_createsocket_options_callback
25092509
[`dgram.disconnect()`]: dgram.html#dgram_socket_disconnect
25102510
[`dgram.remoteAddress()`]: dgram.html#dgram_socket_remoteaddress
2511-
[`errno`(3) man page]: http://man7.org/linux/man-pages/man3/errno.3.html
2511+
[`errno`(3) man page]: https://man7.org/linux/man-pages/man3/errno.3.html
25122512
[`fs.Dir`]: fs.html#fs_class_fs_dir
25132513
[`fs.readFileSync`]: fs.html#fs_fs_readfilesync_path_options
25142514
[`fs.readdir`]: fs.html#fs_fs_readdir_path_options_callback
@@ -2520,7 +2520,7 @@ closed.
25202520
[`hash.update()`]: crypto.html#crypto_hash_update_data_inputencoding
25212521
[`http`]: http.html
25222522
[`https`]: https.html
2523-
[`libuv Error handling`]: http://docs.libuv.org/en/v1.x/errors.html
2523+
[`libuv Error handling`]: https://docs.libuv.org/en/v1.x/errors.html
25242524
[`net`]: net.html
25252525
[`new URL(input)`]: url.html#url_new_url_input_base
25262526
[`new URLSearchParams(iterable)`]: url.html#url_new_urlsearchparams_iterable
@@ -2554,7 +2554,7 @@ closed.
25542554
[file descriptors]: https://en.wikipedia.org/wiki/File_descriptor
25552555
[policy]: policy.html
25562556
[stream-based]: stream.html
2557-
[syscall]: http://man7.org/linux/man-pages/man2/syscalls.2.html
2557+
[syscall]: https://man7.org/linux/man-pages/man2/syscalls.2.html
25582558
[Subresource Integrity specification]: https://www.w3.org/TR/SRI/#the-integrity-attribute
25592559
[try-catch]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch
25602560
[vm]: vm.html

doc/api/esm.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1817,11 +1817,11 @@ success!
18171817
[`module.createRequire()`]: modules.html#modules_module_createrequire_filename
18181818
[`module.syncBuiltinESMExports()`]: modules.html#modules_module_syncbuiltinesmexports
18191819
[`transformSource` hook]: #esm_code_transformsource_code_hook
1820-
[ArrayBuffer]: http://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer-constructor
1820+
[ArrayBuffer]: https://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer-constructor
18211821
[SharedArrayBuffer]: https://tc39.es/ecma262/#sec-sharedarraybuffer-constructor
1822-
[string]: http://www.ecma-international.org/ecma-262/6.0/#sec-string-constructor
1823-
[TypedArray]: http://www.ecma-international.org/ecma-262/6.0/#sec-typedarray-objects
1824-
[Uint8Array]: http://www.ecma-international.org/ecma-262/6.0/#sec-uint8array
1822+
[string]: https://www.ecma-international.org/ecma-262/6.0/#sec-string-constructor
1823+
[TypedArray]: https://www.ecma-international.org/ecma-262/6.0/#sec-typedarray-objects
1824+
[Uint8Array]: https://www.ecma-international.org/ecma-262/6.0/#sec-uint8array
18251825
[`util.TextDecoder`]: util.html#util_class_util_textdecoder
18261826
[import an ES or CommonJS module for its side effects only]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Import_a_module_for_its_side_effects_only
18271827
[special scheme]: https://url.spec.whatwg.org/#special-scheme

doc/api/fs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5909,7 +5909,7 @@ the file contents.
59095909
[`fsPromises.open()`]: #fs_fspromises_open_path_flags_mode
59105910
[`fsPromises.opendir()`]: #fs_fspromises_opendir_path_options
59115911
[`fsPromises.utimes()`]: #fs_fspromises_utimes_path_atime_mtime
5912-
[`inotify(7)`]: http://man7.org/linux/man-pages/man7/inotify.7.html
5912+
[`inotify(7)`]: https://man7.org/linux/man-pages/man7/inotify.7.html
59135913
[`kqueue(2)`]: https://www.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2
59145914
[`net.Socket`]: net.html#net_class_net_socket
59155915
[`stat()`]: fs.html#fs_fs_stat_path_options_callback

doc/api/n-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5533,8 +5533,8 @@ This API may only be called from the main thread.
55335533
[`napi_wrap`]: #n_api_napi_wrap
55345534
[`node_api.h`]: https://github.com/nodejs/node/blob/master/src/node_api.h
55355535
[`process.release`]: process.html#process_process_release
5536-
[`uv_ref`]: http://docs.libuv.org/en/v1.x/handle.html#c.uv_ref
5537-
[`uv_unref`]: http://docs.libuv.org/en/v1.x/handle.html#c.uv_unref
5536+
[`uv_ref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_ref
5537+
[`uv_unref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_unref
55385538
[async_hooks `type`]: async_hooks.html#async_hooks_type
55395539
[context-aware addons]: addons.html#addons_context_aware_addons
55405540
[docs]: https://github.com/nodejs/node-addon-api#api-documentation

doc/api/net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,7 @@ Returns `true` if input is a version 6 IP address, otherwise returns `false`.
12671267
[`server.listen(handle)`]: #net_server_listen_handle_backlog_callback
12681268
[`server.listen(options)`]: #net_server_listen_options_callback
12691269
[`server.listen(path)`]: #net_server_listen_path_backlog_callback
1270-
[`socket(7)`]: http://man7.org/linux/man-pages/man7/socket.7.html
1270+
[`socket(7)`]: https://man7.org/linux/man-pages/man7/socket.7.html
12711271
[`socket.connect()`]: #net_socket_connect
12721272
[`socket.connect(options)`]: #net_socket_connect_options_connectlistener
12731273
[`socket.connect(path)`]: #net_socket_connect_path_connectlistener

doc/api/process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2622,6 +2622,6 @@ cases:
26222622
[process_warning]: #process_event_warning
26232623
[report documentation]: report.html
26242624
[terminal raw mode]: tty.html#tty_readstream_setrawmode_mode
2625-
[uv_rusage_t]: http://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t
2625+
[uv_rusage_t]: https://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t
26262626
[wikipedia_minor_fault]: https://en.wikipedia.org/wiki/Page_fault#Minor
26272627
[wikipedia_major_fault]: https://en.wikipedia.org/wiki/Page_fault#Major

doc/changelogs/CHANGELOG_ARCHIVE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3130,8 +3130,8 @@ https://github.com/nodejs/node/commit/bb0d1e65e1671aaeb21fac186b066701da0bc33b
31303130

31313131
* Major API Changes
31323132
* Promises removed. See
3133-
http://groups.google.com/group/nodejs/msg/426f3071f3eec16b
3134-
http://groups.google.com/group/nodejs/msg/df199d233ff17efa
3133+
https://groups.google.com/group/nodejs/msg/426f3071f3eec16b
3134+
https://groups.google.com/group/nodejs/msg/df199d233ff17efa
31353135
The API for fs was
31363136
fs.readdir("/usr").addCallback(function (files) {
31373137
puts("/usr files: " + files);
@@ -3718,7 +3718,7 @@ https://github.com/nodejs/node/commit/77d407df2826b20e9177c26c0d2bb4481e497937
37183718
* Move EventEmitter.prototype.emit() completely into C++.
37193719

37203720
* Bugfix: Fix memory leak in event emitters.
3721-
http://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
3721+
https://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
37223722

37233723
* Bugfix: Had problems reading scripts with non-ascii characters.
37243724
* Bugfix: Fix Detach() in node::Server

doc/changelogs/CHANGELOG_IOJS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ See https://github.com/nodejs/io.js/labels/confirmed-bug for complete and curren
408408
* **dgram**: If an error occurs within `socket.send()` and a callback has been provided, the error is only passed as the first argument to the callback and not emitted on the `socket` object; previous behavior was to do both (Matteo Collina & Chris Dickinson) [#1796](https://github.com/nodejs/node/pull/1796)
409409
* **freelist**: Deprecate the undocumented `freelist` core module (Sakthipriyan Vairamani) [#2176](https://github.com/nodejs/node/pull/2176).
410410
* **http**:
411-
* Status codes now all use the official [IANA names](http://www.iana.org/assignments/http-status-codes) as per [RFC7231](https://tools.ietf.org/html/rfc7231), e.g. `http.STATUS_CODES[414]` now returns `'URI Too Long'` rather than `'Request-URI Too Large'` (jomo) [#1470](https://github.com/nodejs/node/pull/1470).
411+
* Status codes now all use the official [IANA names](https://www.iana.org/assignments/http-status-codes) as per [RFC7231](https://tools.ietf.org/html/rfc7231), e.g. `http.STATUS_CODES[414]` now returns `'URI Too Long'` rather than `'Request-URI Too Large'` (jomo) [#1470](https://github.com/nodejs/node/pull/1470).
412412
* Calling .getName() on an HTTP agent no longer returns a trailing colon, HTTPS agents will no longer return an extra colon near the middle of the string (Brendan Ashworth) [#1617](https://github.com/nodejs/node/pull/1617).
413413
* **node**:
414414
* `NODE_MODULE_VERSION` has been bumped to `45` to reflect the break in ABI (Rod Vagg) [#2096](https://github.com/nodejs/node/pull/2096).

0 commit comments

Comments
 (0)