From de3bb8f84386e9090602e4a276ad8a8686223380 Mon Sep 17 00:00:00 2001 From: Ronald Eddy Jr Date: Wed, 22 Nov 2017 14:56:53 -0800 Subject: [PATCH 1/7] doc: update http URLs to https in CONTRIBUTING.md PR-URL: https://github.com/nodejs/node/pull/17261 Reviewed-By: James M Snell Reviewed-By: Myles Borins Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca Reviewed-By: Anatoli Papirovski --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b234f935488..633b28e3b32 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -221,9 +221,9 @@ In case of doubt, open an issue in the [issue tracker](https://github.com/nodejs/node/issues/) or contact one of the [project Collaborators](https://github.com/nodejs/node/#current-project-team-members). Node.js has two IRC channels: -[#Node.js](http://webchat.freenode.net/?channels=node.js) for general help and +[#Node.js](https://webchat.freenode.net/?channels=node.js) for general help and questions, and -[#Node-dev](http://webchat.freenode.net/?channels=node-dev) for development of +[#Node-dev](https://webchat.freenode.net/?channels=node-dev) for development of Node.js core specifically. ### Setting up your local environment From 7f446f0fb20d53d68f5745f22852aafae7bd2922 Mon Sep 17 00:00:00 2001 From: Ronald Eddy Jr Date: Wed, 22 Nov 2017 15:01:19 -0800 Subject: [PATCH 2/7] doc: update http URLs to https in GOVERNANCE.md PR-URL: https://github.com/nodejs/node/pull/17262 Reviewed-By: James M Snell Reviewed-By: Myles Borins Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca Reviewed-By: Anatoli Papirovski --- GOVERNANCE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GOVERNANCE.md b/GOVERNANCE.md index 20b75bd9718..7b8903fa5c8 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -134,4 +134,4 @@ The TSC follows a [Consensus Seeking][] decision making model as described by the [TSC Charter][]. [TSC Charter]: https://github.com/nodejs/TSC/blob/master/TSC-Charter.md -[Consensus Seeking]: http://en.wikipedia.org/wiki/Consensus-seeking_decision-making +[Consensus Seeking]: https://en.wikipedia.org/wiki/Consensus-seeking_decision-making From 7ab784000aad7df44a27d1dc2ad5a10395fd57e7 Mon Sep 17 00:00:00 2001 From: Ronald Eddy Jr Date: Wed, 22 Nov 2017 15:04:16 -0800 Subject: [PATCH 3/7] doc: update http URLs to https in doc/api PR-URL: https://github.com/nodejs/node/pull/17263 Reviewed-By: James M Snell Reviewed-By: Myles Borins Reviewed-By: Luigi Pinca Reviewed-By: Anatoli Papirovski --- doc/api/_toc.md | 2 +- doc/api/crypto.md | 2 +- doc/api/tls.md | 2 +- doc/api/zlib.md | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/api/_toc.md b/doc/api/_toc.md index b3987ed8e4e..420fb362fa5 100644 --- a/doc/api/_toc.md +++ b/doc/api/_toc.md @@ -55,4 +55,4 @@
* [GitHub Repo & Issue Tracker](https://github.com/nodejs/node) -* [Mailing List](http://groups.google.com/group/nodejs) +* [Mailing List](https://groups.google.com/group/nodejs) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index f2c288d2f79..5a3a69215cc 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2396,7 +2396,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL. [`verify.verify()`]: #crypto_verify_verify_object_signature_signatureformat [Caveats]: #crypto_support_for_weak_or_compromised_algorithms [Crypto Constants]: #crypto_crypto_constants_1 -[HTML5's `keygen` element]: http://www.w3.org/TR/html5/forms.html#the-keygen-element +[HTML5's `keygen` element]: https://www.w3.org/TR/html5/forms.html#the-keygen-element [NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf [NIST SP 800-132]: http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf [Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect diff --git a/doc/api/tls.md b/doc/api/tls.md index 334efeb86fb..4274c36d20d 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -1013,7 +1013,7 @@ A key is *required* for ciphers that make use of certificates. Either `key` or If the 'ca' option is not given, then Node.js will use the default publicly trusted list of CAs as given in -. +. ## tls.createServer([options][, secureConnectionListener]) diff --git a/doc/api/zlib.md b/doc/api/zlib.md index 0513699fb04..7c55b94b267 100644 --- a/doc/api/zlib.md +++ b/doc/api/zlib.md @@ -110,7 +110,7 @@ http.createServer((request, response) => { } // Note: This is not a conformant accept-encoding parser. - // See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3 + // See https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3 if (/\bdeflate\b/.test(acceptEncoding)) { response.writeHead(200, { 'Content-Encoding': 'deflate' }); raw.pipe(zlib.createDeflate()).pipe(response); @@ -235,7 +235,7 @@ All of the constants defined in `zlib.h` are also defined on `require('zlib').constants`. In the normal course of operations, it will not be necessary to use these constants. They are documented so that their presence is not surprising. This section is taken almost directly from the -[zlib documentation][]. See for more +[zlib documentation][]. See for more details. *Note*: Previously, the constants were available directly from @@ -313,7 +313,7 @@ ignored by the decompression classes. * `info` {boolean} (If `true`, returns an object with `buffer` and `engine`) See the description of `deflateInit2` and `inflateInit2` at - for more information on these. + for more information on these. ## Class: zlib.Deflate - -> Stability: 0 - Deprecated. An alternative is in development. - -* `code` {string} The JavaScript code to compile and run. - -The `vm.runInDebugContext()` method compiles and executes `code` inside the V8 -debug context. The primary use case is to gain access to the V8 `Debug` object: - -```js -const vm = require('vm'); -const Debug = vm.runInDebugContext('Debug'); -console.log(Debug.findScript(process.emit).name); // 'events.js' -console.log(Debug.findScript(process.exit).name); // 'internal/process.js' -``` - -*Note*: The debug context and object are intrinsically tied to V8's debugger -implementation and may change (or even be removed) without prior warning. - -The `Debug` object can also be made available using the V8-specific -`--expose_debug_as=` [command line option][]. - ## vm.runInNewContext(code[, sandbox][, options])