Skip to content

Commit 3b60252

Browse files
committed
node: additional cleanup for node rename
Fixes: #2361 PR-URL: #2367 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rod Vagg <[email protected]>
1 parent 4f50d3f commit 3b60252

9 files changed

+14
-14
lines changed

doc/api/synopsis.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!--type=misc-->
44

5-
An example of a [web server](http.html) written with node.js which responds with
5+
An example of a [web server](http.html) written with Node.js which responds with
66
'Hello World':
77

88
var http = require('http');

doc/api/timers.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To schedule execution of a one-time `callback` after `delay` milliseconds. Retur
1212
also pass arguments to the callback.
1313

1414
It is important to note that your callback will probably not be called in exactly
15-
`delay` milliseconds - node.js makes no guarantees about the exact timing of when
15+
`delay` milliseconds - Node.js makes no guarantees about the exact timing of when
1616
the callback will fire, nor of the ordering things will fire in. The callback will
1717
be called as close as possible to the time specified.
1818

doc/api/tls.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ dictionary with keys:
501501
instead of the client preferences. For further details see `tls` module
502502
documentation.
503503

504-
If no 'ca' details are given, then node.js will use the default
504+
If no 'ca' details are given, then Node.js will use the default
505505
publicly trusted list of CAs as given in
506506
<http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt>.
507507

doc/api/tty.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
The `tty` module houses the `tty.ReadStream` and `tty.WriteStream` classes. In
66
most cases, you will not need to use this module directly.
77

8-
When node.js detects that it is being run inside a TTY context, then `process.stdin`
8+
When Node.js detects that it is being run inside a TTY context, then `process.stdin`
99
will be a `tty.ReadStream` instance and `process.stdout` will be
10-
a `tty.WriteStream` instance. The preferred way to check if node.js is being run
10+
a `tty.WriteStream` instance. The preferred way to check if Node.js is being run
1111
in a TTY context is to check `process.stdout.isTTY`:
1212

1313
$ node -p -e "Boolean(process.stdout.isTTY)"
@@ -32,7 +32,7 @@ Deprecated. Use `tty.ReadStream#setRawMode()`
3232

3333
A `net.Socket` subclass that represents the readable portion of a tty. In normal
3434
circumstances, `process.stdin` will be the only `tty.ReadStream` instance in any
35-
node.js program (only when `isatty(0)` is true).
35+
Node.js program (only when `isatty(0)` is true).
3636

3737
### rs.isRaw
3838

doc/node.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ If set to 1 then colors will not be used in the REPL.
761761

762762
.SH RESOURCES AND DOCUMENTATION
763763

764-
See the website for documentation http://nodejs.org/
764+
See the website for documentation https://nodejs.org/
765765

766766
Mailing list: http://groups.google.com/group/nodejs
767767

doc/releases.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ There are three relevant Jenkins jobs that should be used for a release flow:
1313

1414
**a.** **Test runs:** **[iojs+any-pr+multi](https://jenkins-iojs.nodesource.com/job/iojs+any-pr+multi/)** is used for a final full-test run to ensure that the current *HEAD* is stable.
1515

16-
**b.** **Nightly builds:** (optional) **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** can be used to create a nightly release for the current *HEAD* if public test releases are required. Builds triggered with this job are published straight to <http://nodejs.org/download/nightly/> and are available for public download.
16+
**b.** **Nightly builds:** (optional) **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** can be used to create a nightly release for the current *HEAD* if public test releases are required. Builds triggered with this job are published straight to <https://nodejs.org/download/nightly/> and are available for public download.
1717

1818
**c.** **Release builds:** **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** does all of the work to build all required release assets. Promotion of the release files is a manual step once they are ready (see below).
1919

2020
The [Node.js build team](https://github.com/nodejs/build) is able to provide this access to individuals authorized by the TC.
2121

2222
### 2. <nodejs.org> Access
2323

24-
The _dist_ user on nodejs.org controls the assets available in <http://nodejs.org/download/> (note that <http://nodejs.org/dist/> is an alias for <https://nodejs.org/download/release/>).
24+
The _dist_ user on nodejs.org controls the assets available in <https://nodejs.org/download/> (note that <https://nodejs.org/dist/> is an alias for <https://nodejs.org/download/release/>).
2525

2626
The Jenkins release build slaves upload their artifacts to the web server as the _staging_ user, the _dist_ user has access to move these assets to public access (the _staging_ user does not, for security purposes).
2727

@@ -56,7 +56,7 @@ Run a **[iojs+any-pr+multi](https://jenkins-iojs.nodesource.com/job/iojs+any-pr+
5656

5757
### 2. Produce a Nightly Build _(optional)_
5858

59-
If there is a reason to produce a test release for the purpose of having others try out installers or specifics of builds, produce a nightly build using **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** and wait for it to drop in <http://nodejs.org/download/nightly/>. Follow the directions and enter a proper length commit sha, a date string and select "nightly" for "disttype".
59+
If there is a reason to produce a test release for the purpose of having others try out installers or specifics of builds, produce a nightly build using **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** and wait for it to drop in <https://nodejs.org/download/nightly/>. Follow the directions and enter a proper length commit sha, a date string and select "nightly" for "disttype".
6060

6161
This is particularly recommended if there has been recent work relating to the OS X or Windows installers as they are not tested in any way by CI.
6262

tools/rpm/node.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Release: 1
2121
Summary: Node.js is a platform for building fast, scalable network applications.
2222
Group: Development/Languages
2323
License: MIT
24-
URL: http://nodejs.org/
24+
URL: https://nodejs.org/
2525
Source0: http://nodejs.org/dist/v%{_version}/node-v%{_version}.tar.gz
2626
BuildRequires: gcc
2727
BuildRequires: gcc-c++

tools/v8-prof/linux-tick-processor

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ cat "$tools_path/polyfill.js" "$v8_tools/splaytree.js" "$v8_tools/codemap.js" \
1414

1515
NODE=${NODE:-node}
1616

17-
if [ ! -x "$NODE" ] && [ -x "$(dirname "$0")/../../iojs" ]; then
18-
NODE="$(dirname "$0")/../../iojs"
17+
if [ ! -x "$NODE" ] && [ -x "$(dirname "$0")/../../node" ]; then
18+
NODE="$(dirname "$0")/../../node"
1919
fi
2020

2121
"$NODE" "$TEMP_SCRIPT_FILE" $@

tools/v8-prof/windows-tick-processor.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SET temp_script=%TEMP%\node-tick-processor-input-script
88

99
IF NOT DEFINED NODE (SET NODE=node.exe)
1010
%NODE% --version 2> NUL
11-
if %ERRORLEVEL%==9009 (SET NODE=%~dp0\..\..\Release\iojs.exe)
11+
if %ERRORLEVEL%==9009 (SET NODE=%~dp0\..\..\Release\node.exe)
1212

1313

1414
type %tools_dir%polyfill.js %v8_tools%splaytree.js %v8_tools%codemap.js^

0 commit comments

Comments
 (0)