Skip to content

Commit 844b45b

Browse files
Maledongtargos
Maledong
authored andcommitted
doc: change urls directly from 'http' to 'https'
There're some URLs with old links, change them together from 'http' to 'https'. Notice: 1. Since files of CHANGELOG may be generated through tools, I don't intend to change them together as the history track. 2. All the files in the 'deps' are of 3-rd parties, they will be overwritten for the next update, so avoid modifications for them. PR-URL: #29422 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 42fd139 commit 844b45b

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

BUILDING.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -501,16 +501,16 @@ $ backtrace
501501
[Build Tools](https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2017),
502502
with the default optional components.
503503
* Basic Unix tools required for some tests,
504-
[Git for Windows](http://git-scm.com/download/win) includes Git Bash
504+
[Git for Windows](https://git-scm.com/download/win) includes Git Bash
505505
and tools which can be included in the global `PATH`.
506-
* The [NetWide Assembler](http://www.nasm.us/), for OpenSSL assembler modules.
506+
* The [NetWide Assembler](https://www.nasm.us/), for OpenSSL assembler modules.
507507
If not installed in the default location, it needs to be manually added
508508
to `PATH`. A build with the `openssl-no-asm` option does not need this, nor
509509
does a build targeting ARM64 Windows.
510510

511511
Optional requirements to build the MSI installer package:
512512

513-
* The [WiX Toolset v3.11](http://wixtoolset.org/releases/) and the
513+
* The [WiX Toolset v3.11](https://wixtoolset.org/releases/) and the
514514
[Wix Toolset Visual Studio 2017 Extension](https://marketplace.visualstudio.com/items?itemName=RobMensching.WixToolsetVisualStudio2017Extension).
515515

516516
Optional requirements for compiling for Windows 10 on ARM (ARM64):
@@ -527,7 +527,7 @@ Optional requirements for compiling for Windows 10 on ARM (ARM64):
527527
##### Option 2: Automated install with Boxstarter
528528
<a name="boxstarter"></a>
529529

530-
A [Boxstarter](http://boxstarter.org/) script can be used for easy setup of
530+
A [Boxstarter](https://boxstarter.org/) script can be used for easy setup of
531531
Windows systems with all the required prerequisites for Node.js development.
532532
This script will install the following [Chocolatey](https://chocolatey.org/)
533533
packages:
@@ -541,16 +541,16 @@ packages:
541541
* [NetWide Assembler](https://chocolatey.org/packages/nasm)
542542

543543
To install Node.js prerequisites using
544-
[Boxstarter WebLauncher](http://boxstarter.org/WebLauncher), open
545-
<http://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter>
544+
[Boxstarter WebLauncher](https://boxstarter.org/WebLauncher), open
545+
<https://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter>
546546
with Internet Explorer or Edge browser on the target machine.
547547

548548
Alternatively, you can use PowerShell. Run those commands from an elevated
549549
PowerShell terminal:
550550

551551
```powershell
552552
Set-ExecutionPolicy Unrestricted -Force
553-
iex ((New-Object System.Net.WebClient).DownloadString('http://boxstarter.org/bootstrapper.ps1'))
553+
iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1'))
554554
get-boxstarter -Force
555555
Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter -DisableReboots
556556
```

doc/STYLE_GUIDE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ See also API documentation structure overview in [doctools README][].
6565
[Javascript type]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#Data_structures_and_types
6666
[serial commas]: https://en.wikipedia.org/wiki/Serial_comma
6767
[The New York Times Manual of Style and Usage]: https://en.wikipedia.org/wiki/The_New_York_Times_Manual_of_Style_and_Usage
68-
[plugin]: http://editorconfig.org/#download
68+
[plugin]: https://editorconfig.org/#download
6969
[doctools README]: ../tools/doc/README.md

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5219,7 +5219,7 @@ the file contents.
52195219
[`URL`]: url.html#url_the_whatwg_url_api
52205220
[`UV_THREADPOOL_SIZE`]: cli.html#cli_uv_threadpool_size_size
52215221
[`WriteStream`]: #fs_class_fs_writestream
5222-
[`event ports`]: http://illumos.org/man/port_create
5222+
[`event ports`]: https://illumos.org/man/port_create
52235223
[`fs.Dirent`]: #fs_class_fs_dirent
52245224
[`fs.FSWatcher`]: #fs_class_fs_fswatcher
52255225
[`fs.Stats`]: #fs_class_fs_stats

doc/guides/contributing/pull-requests.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ use `Refs:`.
163163

164164
Examples:
165165
- `Fixes: https://github.com/nodejs/node/issues/1337`
166-
- `Refs: http://eslint.org/docs/rules/space-in-parens.html`
166+
- `Refs: https://eslint.org/docs/rules/space-in-parens.html`
167167
- `Refs: https://github.com/nodejs/node/pull/3615`
168168

169169
5. If your commit introduces a breaking change (`semver-major`), it should
@@ -180,7 +180,7 @@ things in more detail. Please word-wrap to keep columns to 72 characters or
180180
less.
181181
182182
Fixes: https://github.com/nodejs/node/issues/1337
183-
Refs: http://eslint.org/docs/rules/space-in-parens.html
183+
Refs: https://eslint.org/docs/rules/space-in-parens.html
184184
```
185185

186186
If you are new to contributing to Node.js, please try to do your best at

doc/guides/writing-tests.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ https://coverage.nodejs.org/.
433433
[Google Test]: https://github.com/google/googletest
434434
[`common` module]: https://github.com/nodejs/node/blob/master/test/common/README.md
435435
[all maintained branches]: https://github.com/nodejs/lts
436-
[node.green]: http://node.green/
436+
[node.green]: https://node.green/
437437
[test fixture]: https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#test-fixtures-using-the-same-data-configuration-for-multiple-tests
438438
[Test Coverage section of the Building guide]: https://github.com/nodejs/node/blob/master/BUILDING.md#running-coverage
439439
[directory structure overview]: https://github.com/nodejs/node/blob/master/test/README.md#test-directories

0 commit comments

Comments
 (0)