Fedor Indutny
1349b680ba
crypto: allow forcing SSLv2/v3 via secureProtocol
Force-enable SSLv2/v3 when `secureProtocol` is explicitly set
to `SSLv2_method` or `SSLv3_method`.
see discussion at #8551
10 years ago
Timothy J Fontaine
226c98649d
doc: clarify poodle mitigation
10 years ago
Timothy J Fontaine
d601c76f4d
crypto: allow runtime opt in using SSLv2/SSLv3
This change disables SSLv2/SSLv3 use by default, and introduces a
command line flag to opt into using SSLv2/SSLv3.
SSLv2 and SSLv3 are considered unsafe, and should only be used in
situations where compatibility with other components is required and
they cannot be upgrade to support newer forms of TLS.
10 years ago
Fedor Indutny
d6712917f5
doc: document why SSL2/SSL3 is disabled
PR-URL: https://github.com/joyent/node/pull/8551
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
10 years ago
Swaagie
6a95e9f7e0
tls add secureOptions documentation
PR-URL: https://github.com/joyent/node/pull/8553
Reviewed-By: Fedor Indutny <fedor@indutny.com>
10 years ago
Matthew Fitzsimmons
1524d48333
doc: update design to match nodejs.org
11 years ago
Calvin Metcalf
c8e0bdd7cf
doc: document _transform callback takes 2 args
Expands the paragraph in the transform stream
implementation docs about the callback that is passed
to the _transform method to include details about how
two arguments may be passed, error and data. A code
example is also included.
Reviewed-By: Fedor Indutny <fedor@indutny.com>
10 years ago
Maciej Małecki
0664ddc093
doc: document `process.env` better
Fixes #6424 .
Reviewed-By: Fedor Indutny <fedor@indutny.com>
11 years ago
Mathias Schreck
7c5fabe405
doc: fix modules require.resolve documentation
The behavior of the `node_modules` lookup algorithm was
changed in #1177 , but the documentation was not updated completely
to describe the new behavior.
The pseudocode of the lookup algorithm did not metion that
`index.json` is tried to be loaded if you require a folder.
Reviewed-By: Fedor Indutny <fedor@indutny.com>
10 years ago
Maciej Małecki
d6b4766a78
doc: document arguments for 'error' event on a stream
Fixes #6361 .
11 years ago
Kevin Simper
70cc9968f6
doc: clarify factory methods for net.Socket
11 years ago
Jakob Gillich
92518892ec
docs: fix non-string ignore note in path.resolve
Reviewed-By: Fedor Indutny <fedor@indutny.com>
11 years ago
Sam Roberts
96b166f291
doc: console.trace takes a message format
Documentation claimed it accepted a single label argument, as time and
timeEnd do, which was incorrect.
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Maurice Butler
71fc4d9486
doc: added X.json to the LOAD_AS_FILE sudo code
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Sam Roberts
e2f2a20279
doc: fix console.assert docs, message is a format
Documentation for console.assert incorrectly described message as a
single message, but it is a format.
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Brian White
c7c904b1fc
doc: fix createCipher description
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
11 years ago
Ben Noordhuis
72dcc26c7a
doc: buffer: clarify typed array construction
It's possible to construct a typed array from a buffer but the buffer
is treated as an array, not a byte array as one might expect.
Fixes #7786 .
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
11 years ago
Chris Barber
715bb7f89f
doc: fixed wording in child_process
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Yazhong Liu
e86c9421ef
doc: document url `slashes` property
Slashes should be documented, because 3rd-party protocols -- those
postfixed with `://` -- would incorrectly `format` and `parse` if they
didn't set/get the `slashes` option.
Signed-off-by: Timothy J Fontaine <tjfontaine@gmail.com>
11 years ago
Calvin Metcalf
31150df92a
doc: clarify `end` vs `finish` in streams
Adds a section to the transform stream docs to clarify the
difference between the `end` event and the `finish` events.
Also clarifies the wording on the `end` event.
11 years ago
Forrest L Norvell
793c76e5c6
docs: add cautionary note to emitter.removeAllListeners
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Julian Gruber
0ee99565f9
doc: fix missing link in net api
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Julian Gruber
b0fa931e07
doc: fix order in net api
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
William Bert
bfb7de5e75
docs: fix links to streams
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Brian White
c2d32f4c0e
doc: add missing space
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Dominic Tarr
cdc093b31f
docs: correct tls docs. server -> client
when a pfx file is passed to tls.connection,
it is the client private key, not the server's private key.
11 years ago
Goh Yisheng (Andrew)
47bed4828c
doc: typo clean up in tls
11 years ago
Shuhei Kagawa
43a29f53ca
doc: remove an unused arg in process.stdin.
The argument of process.stdin's readable event handler is not used.
11 years ago
Nicolas Talle
1efe6837b2
doc: update assert.markdown
Update assert.throws() and assert.doesNotThrow() docs
11 years ago
Timothy J Fontaine
cc56c62ed8
build: readd missing installer resources
This were accidentally moved during the website refactor
11 years ago
Anton Khlynovskiy
1fa5cff4f2
docs: clarify process.stdin and old mode
12 years ago
Pedro Ballesteros
1d734a75b5
doc: stdout blocking or non-blocking behaviour
Makes clear that the behaviour of stdout is blocking
in Linux/Unix even when they refer to pipes.
11 years ago
Raynos
abbde2fafa
doc: mention objectMode for Writable streams
12 years ago
Timothy J Fontaine
86b8d84811
doc: re-add node.1 man page
The man page was accidentally removed in 37376de
for the website
refactor, bring it back.
Fixes #7117
11 years ago
Timothy J Fontaine
37376debe5
website: move website to joyent/node-website
The website will no longer be living in the source repository instead
it can be found at http://github.com/joyent/node-website
11 years ago
Christian
b222374b07
doc: changed timer id to object
fix #7074
11 years ago
Brian White
3595139b51
doc: fix diffieHellman.getGenerator() description
11 years ago
Timothy J Fontaine
e3d8359021
website: update cla email address
11 years ago
Benjamin Waters
d2147c55c2
doc: fix references to error keyword
References for err.signal and err.code should be error.signal and
error.code.
Fixes joyent/node#6862
11 years ago
Maxime Quandalle
154d9d2163
doc: add an example about multiple extensions
`path.extname` returns only the last extension
11 years ago
Timothy J Fontaine
a98d541733
blog: Post for v0.11.11
11 years ago
Wyatt Preul
8c05570258
docs: clarify origin in agent.maxSockets section
12 years ago
Fedor Indutny
0ec3770767
doc: readline document TTY utils
fix #6933
11 years ago
Scott González
9975ff603b
doc: fix typo in readline
11 years ago
Timothy J Fontaine
5aebc73525
blog: Post for v0.10.25
11 years ago
Timothy J Fontaine
1d57a5caa4
blog: nodejs v0.12 roadmap update
11 years ago
Sam Roberts
abe02553f2
doc: clarify Windows signal sending emulation
11 years ago
Sam Roberts
198ed0bd0d
doc: describe child_process.fork() silent option
11 years ago
Sam Roberts
549be1caa8
doc: child_process.execFile arguments are optional
11 years ago
isaacs
e7f7e2aeca
blog: TJ is the new node core project lead
11 years ago