Skip to content

Commit ed055c0

Browse files
sapicsaddaleax
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 cef9921 commit ed055c0

13 files changed

+27
-27
lines changed

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1510,5 +1510,5 @@ $ node --max-old-space-size=1536 index.js
15101510
[emit_warning]: process.html#process_process_emitwarning_warning_type_code_ctor
15111511
[experimental ECMAScript Module loader]: esm.html#esm_experimental_loaders
15121512
[jitless]: https://v8.dev/blog/jitless
1513-
[libuv threadpool documentation]: http://docs.libuv.org/en/latest/threadpool.html
1513+
[libuv threadpool documentation]: https://docs.libuv.org/en/latest/threadpool.html
15141514
[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
@@ -2560,7 +2560,7 @@ such as `process.stdout.on('data')`.
25602560
[`dgram.createSocket()`]: dgram.html#dgram_dgram_createsocket_options_callback
25612561
[`dgram.disconnect()`]: dgram.html#dgram_socket_disconnect
25622562
[`dgram.remoteAddress()`]: dgram.html#dgram_socket_remoteaddress
2563-
[`errno`(3) man page]: http://man7.org/linux/man-pages/man3/errno.3.html
2563+
[`errno`(3) man page]: https://man7.org/linux/man-pages/man3/errno.3.html
25642564
[`fs.Dir`]: fs.html#fs_class_fs_dir
25652565
[`fs.readFileSync`]: fs.html#fs_fs_readfilesync_path_options
25662566
[`fs.readdir`]: fs.html#fs_fs_readdir_path_options_callback
@@ -2572,7 +2572,7 @@ such as `process.stdout.on('data')`.
25722572
[`hash.update()`]: crypto.html#crypto_hash_update_data_inputencoding
25732573
[`http`]: http.html
25742574
[`https`]: https.html
2575-
[`libuv Error handling`]: http://docs.libuv.org/en/v1.x/errors.html
2575+
[`libuv Error handling`]: https://docs.libuv.org/en/v1.x/errors.html
25762576
[`net`]: net.html
25772577
[`new URL(input)`]: url.html#url_new_url_input_base
25782578
[`new URLSearchParams(iterable)`]: url.html#url_new_urlsearchparams_iterable
@@ -2605,7 +2605,7 @@ such as `process.stdout.on('data')`.
26052605
[file descriptors]: https://en.wikipedia.org/wiki/File_descriptor
26062606
[policy]: policy.html
26072607
[stream-based]: stream.html
2608-
[syscall]: http://man7.org/linux/man-pages/man2/syscalls.2.html
2608+
[syscall]: https://man7.org/linux/man-pages/man2/syscalls.2.html
26092609
[Subresource Integrity specification]: https://www.w3.org/TR/SRI/#the-integrity-attribute
26102610
[try-catch]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch
26112611
[vm]: vm.html

doc/api/esm.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1842,11 +1842,11 @@ success!
18421842
[`module.createRequire()`]: modules.html#modules_module_createrequire_filename
18431843
[`module.syncBuiltinESMExports()`]: modules.html#modules_module_syncbuiltinesmexports
18441844
[`transformSource` hook]: #esm_code_transformsource_code_hook
1845-
[ArrayBuffer]: http://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer-constructor
1845+
[ArrayBuffer]: https://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer-constructor
18461846
[SharedArrayBuffer]: https://tc39.es/ecma262/#sec-sharedarraybuffer-constructor
1847-
[string]: http://www.ecma-international.org/ecma-262/6.0/#sec-string-constructor
1848-
[TypedArray]: http://www.ecma-international.org/ecma-262/6.0/#sec-typedarray-objects
1849-
[Uint8Array]: http://www.ecma-international.org/ecma-262/6.0/#sec-uint8array
1847+
[string]: https://www.ecma-international.org/ecma-262/6.0/#sec-string-constructor
1848+
[TypedArray]: https://www.ecma-international.org/ecma-262/6.0/#sec-typedarray-objects
1849+
[Uint8Array]: https://www.ecma-international.org/ecma-262/6.0/#sec-uint8array
18501850
[`util.TextDecoder`]: util.html#util_class_util_textdecoder
18511851
[dynamic instantiate hook]: #esm_code_dynamicinstantiate_code_hook
18521852
[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

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5833,7 +5833,7 @@ the file contents.
58335833
[`fsPromises.open()`]: #fs_fspromises_open_path_flags_mode
58345834
[`fsPromises.opendir()`]: #fs_fspromises_opendir_path_options
58355835
[`fsPromises.utimes()`]: #fs_fspromises_utimes_path_atime_mtime
5836-
[`inotify(7)`]: http://man7.org/linux/man-pages/man7/inotify.7.html
5836+
[`inotify(7)`]: https://man7.org/linux/man-pages/man7/inotify.7.html
58375837
[`kqueue(2)`]: https://www.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2
58385838
[`net.Socket`]: net.html#net_class_net_socket
58395839
[`stat()`]: fs.html#fs_fs_stat_path_options_callback

doc/api/n-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5834,8 +5834,8 @@ This API may only be called from the main thread.
58345834
[`node-addon-api`]: https://github.com/nodejs/node-addon-api
58355835
[`node_api.h`]: https://github.com/nodejs/node/blob/master/src/node_api.h
58365836
[`process.release`]: process.html#process_process_release
5837-
[`uv_ref`]: http://docs.libuv.org/en/v1.x/handle.html#c.uv_ref
5838-
[`uv_unref`]: http://docs.libuv.org/en/v1.x/handle.html#c.uv_unref
5837+
[`uv_ref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_ref
5838+
[`uv_unref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_unref
58395839
[async_hooks `type`]: async_hooks.html#async_hooks_type
58405840
[context-aware addons]: addons.html#addons_context_aware_addons
58415841
[docs]: https://github.com/nodejs/node-addon-api#api-documentation

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ Returns `true` if input is a version 6 IP address, otherwise returns `false`.
12611261
[`server.listen(handle)`]: #net_server_listen_handle_backlog_callback
12621262
[`server.listen(options)`]: #net_server_listen_options_callback
12631263
[`server.listen(path)`]: #net_server_listen_path_backlog_callback
1264-
[`socket(7)`]: http://man7.org/linux/man-pages/man7/socket.7.html
1264+
[`socket(7)`]: https://man7.org/linux/man-pages/man7/socket.7.html
12651265
[`socket.connect()`]: #net_socket_connect
12661266
[`socket.connect(options)`]: #net_socket_connect_options_connectlistener
12671267
[`socket.connect(path)`]: #net_socket_connect_path_connectlistener

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2603,6 +2603,6 @@ cases:
26032603
[process_warning]: #process_event_warning
26042604
[report documentation]: report.html
26052605
[terminal raw mode]: tty.html#tty_readstream_setrawmode_mode
2606-
[uv_rusage_t]: http://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t
2606+
[uv_rusage_t]: https://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t
26072607
[wikipedia_minor_fault]: https://en.wikipedia.org/wiki/Page_fault#Minor
26082608
[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
@@ -3128,8 +3128,8 @@ https://github.com/nodejs/node/commit/bb0d1e65e1671aaeb21fac186b066701da0bc33b
31283128

31293129
* Major API Changes
31303130
* Promises removed. See
3131-
http://groups.google.com/group/nodejs/msg/426f3071f3eec16b
3132-
http://groups.google.com/group/nodejs/msg/df199d233ff17efa
3131+
https://groups.google.com/group/nodejs/msg/426f3071f3eec16b
3132+
https://groups.google.com/group/nodejs/msg/df199d233ff17efa
31333133
The API for fs was
31343134
fs.readdir("/usr").addCallback(function (files) {
31353135
puts("/usr files: " + files);
@@ -3716,7 +3716,7 @@ https://github.com/nodejs/node/commit/77d407df2826b20e9177c26c0d2bb4481e497937
37163716
* Move EventEmitter.prototype.emit() completely into C++.
37173717

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

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

doc/changelogs/CHANGELOG_IOJS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ See https://github.com/nodejs/io.js/labels/confirmed-bug for complete and curren
406406
* **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)
407407
* **freelist**: Deprecate the undocumented `freelist` core module (Sakthipriyan Vairamani) [#2176](https://github.com/nodejs/node/pull/2176).
408408
* **http**:
409-
* 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).
409+
* 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).
410410
* 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).
411411
* **node**:
412412
* `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-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)