Skip to content

Commit

Permalink
lib: replace http to https of comment link urls
Browse files Browse the repository at this point in the history
PR-URL: #34158
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
sapics authored and MylesBorins committed Jul 16, 2020
1 parent abfab98 commit daf2abf
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/_http_server.js
Expand Up @@ -351,7 +351,7 @@ function Server(options, requestListener) {

// Similar option to this. Too lazy to write my own docs.
// http://www.squid-cache.org/Doc/config/half_closed_clients/
// http://wiki.squid-cache.org/SquidFaq/InnerWorkings#What_is_a_half-closed_filedescriptor.3F
// https://wiki.squid-cache.org/SquidFaq/InnerWorkings#What_is_a_half-closed_filedescriptor.3F
this.httpAllowHalfOpen = false;

this.on('connection', connectionListener);
Expand Down
2 changes: 1 addition & 1 deletion lib/https.js
Expand Up @@ -55,7 +55,7 @@ function Server(opts, requestListener) {

if (!opts.ALPNProtocols) {
// http/1.0 is not defined as Protocol IDs in IANA
// http://www.iana.org/assignments/tls-extensiontype-values
// https://www.iana.org/assignments/tls-extensiontype-values
// /tls-extensiontype-values.xhtml#alpn-protocol-ids
opts.ALPNProtocols = ['http/1.1'];
}
Expand Down
2 changes: 1 addition & 1 deletion lib/internal/child_process.js
Expand Up @@ -944,7 +944,7 @@ function getValidStdio(stdio, sync) {
// At least 3 stdio will be created
// Don't concat() a new Array() because it would be sparse, and
// stdio.reduce() would skip the sparse elements of stdio.
// See http://stackoverflow.com/a/5501711/3561
// See https://stackoverflow.com/a/5501711/3561
while (stdio.length < 3) stdio.push(undefined);

// Translate stdio into C++-readable form
Expand Down
3 changes: 2 additions & 1 deletion lib/internal/source_map/source_map.js
Expand Up @@ -113,7 +113,8 @@ class StringCharIterator {
}

/**
* Implements Source Map V3 model. See http://code.google.com/p/closure-compiler/wiki/SourceMaps
* Implements Source Map V3 model.
* See https://github.com/google/closure-compiler/wiki/Source-Maps
* for format description.
* @constructor
* @param {string} sourceMappingURL
Expand Down
2 changes: 1 addition & 1 deletion lib/internal/tty.js
Expand Up @@ -125,7 +125,7 @@ function getColorDepth(env = process.env) {
env.NO_COLOR !== undefined ||
// The "dumb" special terminal, as defined by terminfo, doesn't support
// ANSI color control codes.
// See http://invisible-island.net/ncurses/terminfo.ti.html#toc-_Specials
// See https://invisible-island.net/ncurses/terminfo.ti.html#toc-_Specials
env.TERM === 'dumb') {
return COLORS_2;
}
Expand Down
4 changes: 2 additions & 2 deletions lib/internal/util/inspect.js
Expand Up @@ -338,7 +338,7 @@ ObjectDefineProperty(inspect, 'defaultOptions', {
}
});

// Set Graphics Rendition http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
// Set Graphics Rendition https://en.wikipedia.org/wiki/ANSI_escape_code#graphics
// Each color consists of an array with the color code as first entry and the
// reset code as second entry.
const defaultFG = 39;
Expand Down Expand Up @@ -2051,7 +2051,7 @@ if (internalBinding('config').hasIntl) {
*/
const isFullWidthCodePoint = (code) => {
// Code points are partially derived from:
// http://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt
// https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt
return code >= 0x1100 && (
code <= 0x115f || // Hangul Jamo
code === 0x2329 || // LEFT-POINTING ANGLE BRACKET
Expand Down
2 changes: 1 addition & 1 deletion lib/querystring.js
Expand Up @@ -140,7 +140,7 @@ const noEscape = [
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0 // 112 - 127
];
// QueryString.escape() replaces encodeURIComponent()
// http://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.4
// https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.4
function qsEscape(str) {
if (typeof str !== 'string') {
if (typeof str === 'object')
Expand Down
2 changes: 1 addition & 1 deletion lib/readline.js
Expand Up @@ -22,7 +22,7 @@
// Inspiration for this code comes from Salvatore Sanfilippo's linenoise.
// https://github.com/antirez/linenoise
// Reference:
// * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
// * https://invisible-island.net/xterm/ctlseqs/ctlseqs.html
// * http://www.3waylabs.com/nw/WWW/products/wizcon/vt220.html

'use strict';
Expand Down

0 comments on commit daf2abf

Please sign in to comment.