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

14 files changed

+29
-29
lines changed

doc/api/cli.md

+1-1
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

+2-2
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

+3-3
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

+4-4
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

+1-1
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

+2-2
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

+1-1
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

+1-1
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

+3-3
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

+1-1
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).

doc/guides/cpp-style-guide.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -391,15 +391,15 @@ side effects.
391391
Node.js is built [without C++ exception handling][], so code using `throw` or
392392
even `try` and `catch` **will** break.
393393

394-
[C++ Core Guidelines]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines
394+
[C++ Core Guidelines]: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines
395395
[Google C++ Style Guide]: https://google.github.io/styleguide/cppguide.html
396396
[Google’s `cpplint`]: https://github.com/google/styleguide
397397
[errors]: https://github.com/nodejs/node/blob/master/doc/guides/using-internal-errors.md
398-
[ES.47]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-nullptr
399-
[ES.48]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-casts
400-
[ES.49]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-casts-named
401-
[R.20]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-owner
402-
[R.21]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-unique
398+
[ES.47]: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-nullptr
399+
[ES.48]: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-casts
400+
[ES.49]: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-casts-named
401+
[R.20]: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-owner
402+
[R.21]: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-unique
403403
[Run Time Type Information]: https://en.wikipedia.org/wiki/Run-time_type_information
404404
[cppref_auto_ptr]: https://en.cppreference.com/w/cpp/memory/auto_ptr
405405
[without C++ exception handling]: https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_exceptions.html#intro.using.exception.no

doc/guides/maintaining-icu.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ main data files do not need to be upgraded in order to apply time zone data file
4040
fixes.
4141

4242
The [IANA tzdata](https://www.iana.org/time-zones) project releases new versions
43-
and announces them on the [`tz-announce`](http://mm.icann.org/pipermail/tz-announce/)
43+
and announces them on the [`tz-announce`](https://mm.icann.org/pipermail/tz-announce/)
4444
mailing list.
4545

4646
The Unicode project takes new releases and publishes
@@ -98,7 +98,7 @@ Node.js is built.
9898
9999
* Make sure your Node.js workspace is clean (`git status`
100100
should be sufficient).
101-
* Configure Node.js with the specific [ICU version](http://icu-project.org/download)
101+
* Configure Node.js with the specific [ICU version](http://site.icu-project.org/download)
102102
you want to upgrade to, for example:
103103
104104
```bash

doc/guides/maintaining-openssl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This document describes how to update `deps/openssl/`.
55
## Requirements
66
* Linux environment.
77
* `perl` Only Perl version 5 is tested.
8-
* `nasm` (<http://www.nasm.us/>) Version 2.11 or higher is needed.
8+
* `nasm` (<https://www.nasm.us/>) Version 2.11 or higher is needed.
99
* GNU `as` in binutils. Version 2.26 or higher is needed.
1010

1111
## 0. Check Requirements

doc/guides/writing-tests.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ To generate a test coverage report, see the
432432
Nightly coverage reports for the Node.js master branch are available at
433433
<https://coverage.nodejs.org/>.
434434

435-
[ASCII]: http://man7.org/linux/man-pages/man7/ascii.7.html
435+
[ASCII]: https://man7.org/linux/man-pages/man7/ascii.7.html
436436
[Google Test]: https://github.com/google/googletest
437437
[`common` module]: https://github.com/nodejs/node/blob/master/test/common/README.md
438438
[all maintained branches]: https://github.com/nodejs/lts

0 commit comments

Comments
 (0)