isaacs
122ac4e1f2
blog: Post for v0.8.15
12 years ago
Trevor Norris
bb867c0fa6
doc: Add lines about additonal uses of Buffer
That Buffers can be used with Typed Array Views and DataViews. Included
are a couple simple examples.
Closes #4257 .
12 years ago
Tim Kuijsten
6f9ed28fac
doc: fix typo in setPrivateKey function signature
12 years ago
Stephen Gallagher
38809e3985
build: allow linking against system libuv
12 years ago
Nathan Rajlich
5e4e87ade5
os: add os.endianness() function
12 years ago
Stephen Gallagher
73ff653a8d
build: allow linking against system c-ares
12 years ago
Stephen Gallagher
bfd78b69fc
build: allow linking against system http_parser
12 years ago
Francois Marier
44dd2c392a
doc: remove duplicate set of options
12 years ago
Francois Marier
326bce91d6
doc: reflect hostname v. host preference in examples
The documentation for http.request and https.request states that
`hostname` is preferred over `host` so the code examples should
use that option name.
12 years ago
isaacs
5f0a10ad21
blog: Correct shasums for v0.8.14
12 years ago
isaacs
7fe1671727
blog: Post for v0.8.14
12 years ago
isaacs
d130bb060e
blog: Post for v0.8.13
12 years ago
isaacs
82a72e9591
blog: Post for v0.9.3 release
12 years ago
Olivier Lalonde
626db18635
doc: child_process: document uid and gid spawn() options
12 years ago
isaacs
f3621359f4
doc: OpenSSL is bundled now.
12 years ago
isaacs
76b0bdf720
crypto: Add crypto.DEFAULT_ENCODING (defaults to 'buffer')
This is a flag to make it easier for users to upgrade through the
breaking crypto change, and easier for us to switch it back if it's a
problem.
Explicitly set default encoding to 'buffer' in other tests, in case it
ever changes back.
12 years ago
isaacs
bfb9d5bbe6
crypto: Binding only accepts buffers
12 years ago
isaacs
9901b69c8e
crypto: Move encoding logic to JS, default=buffer
crypto: Hash and Hmac default to buffers
crypto: Move Cipher encoding logic to JS
crypto: Move Cipheriv encoding logic to JS
crypto: Move Decipher encoding logic to JS
crypto: Move Decipheriv into JS, default to buffers
crypto: Move Sign class to JS
crypto: Better encoding handling in Hash.update
crypto: Move Verify class to JS
crypto: Move DiffieHellman to JS, default to buffers
crypto: Move DiffieHellmanGroup to JS, default to buffers
Also, create a test for this feature
12 years ago
isaacs
627f0d27e8
doc: Typo. s/arguemnt/argument/
12 years ago
Jan Lehnardt
a7b5938715
docs: fix copy and paste error
12 years ago
Ben Noordhuis
4a23add90f
doc: rectify http.ClientResponse close/end events
* The 'close' event doesn't emit an error object.
* It's possible for a 'close' event to come after an 'end' event, contrary to
what the documentation said.
Fixes #4116 .
12 years ago
Ben Noordhuis
14a6c4efb8
crypto: add crypto.getHashes()
12 years ago
Ben Noordhuis
f53441ab1f
crypto: add crypto.getCiphers()
Returns a list of, unsurprisingly, the available ciphers.
12 years ago
Max Ogden
323bbdb0cb
doc: set default background color to white
12 years ago
isaacs
b3536ae0a8
blog: Post about 0.8.12
12 years ago
isaacs
061f2075cf
string_decoder: Add 'end' method, do base64 properly
12 years ago
isaacs
99b2368a6c
doc: Reduce crypto stability to 2-Unstable
12 years ago
Nathan Rajlich
4eb5399bb2
util: add a "customInspect" option to `util.inspect()`
For disabling calling the custom `inspect()` function when defined on an object
that is being inspected.
12 years ago
Nathan Rajlich
07774e6b95
util: make `inspect()` accept an "options" argument
Consolidates all the formatting options into an "options" object argument.
This is so that we don't have to be constantly remembering the order of
the arguments and so that we can add more formatting options easily.
Closes #4085 .
12 years ago
Ben Noordhuis
0ad005852c
https: fix renegotation attack protection
Listen for the 'clientError' event that is emitted when a renegotation attack
is detected and close the connection.
Fixes test/pummel/test-https-ci-reneg-attack.js
12 years ago
Andreas Madsen
be5a8e24c2
doc: consistent use of the callback argument
12 years ago
Nathan Rajlich
f826b3269d
doc: document the custom "inspect()" function behavior
Closes #3361 .
12 years ago
isaacs
836a06fc4f
Revert "http: make http.ServerResponse emit 'end'"
This reverts commit 790d651f0d
.
This makes Duplex streams unworkable, and would only ever be a special
case for HTTP responses, which is not ideal.
Intead, we're going to just bless the 'finish' event for all Writable
streams in 0.10
12 years ago
Alex Kocharin
bf0bc3565b
doc: better example for process.hrtime()
Fixes #3984 .
12 years ago
Ben Noordhuis
b0d04ffbd8
doc: stream: clarify meaning of 'drain' some more
Courtesy of Lee Coltrane (@coltrane ).
12 years ago
Ben Noordhuis
f624be4093
doc: stream: clarify meaning of 'drain' event
12 years ago
isaacs
b90c1502e5
doc: Correct stream.write fd mention
No streams actually work this way.
12 years ago
Paul Serby
41e53e5579
path: add platform specific path delimiter
Closes #3728
Closes #4071
12 years ago
isaacs
fa912c246c
blog: s/LibUV/libuv/
12 years ago
isaacs
d3e818cf8f
blog: LXJS talk by @piscisaureus
12 years ago
Pavel Lang
b38277be26
http: add response.headersSent property
Boolean property getter. True if headers was sent, false otherwise.
12 years ago
isaacs
c08320c957
doc: Make the CLA more simple/sane
1. Emails should go to @isaacs , not emily.
2. Ask for the electronic signature first, not the printed faxed thing.
12 years ago
isaacs
dcc01df968
blog: Post about 0.8.11
12 years ago
isaacs
8ca44f9928
blog: Post about v0.8.10
12 years ago
Adam Blackburn
d5e9895ce0
doc: put API table of contents in alphabetical order
12 years ago
Ben Noordhuis
84221fd1d6
events: add 'removeListener' event
13 years ago
Ben Noordhuis
c4aedf8a2a
doc: zlib: document flush() and reset() methods
12 years ago
Fedor Indutny
63ff449d87
crypto: bring module into modern age
Introduce 'buffer' encoding, allow returning and giving buffers as
arguments of 'crypto' routines.
Fix #3278
12 years ago
isaacs
43a2b29182
blog: Post for 0.9.2
12 years ago
Robin Lee
a08271c7a8
doc: fix three typos
12 years ago