Ryan Dahl
6035651fad
Fixes #2160 . Fix tty.getWindowSize docs
2011-11-22 10:24:41 -08:00
Ben Noordhuis
7defbd27ef
test: add DSA sign/verify crypto tests
2011-11-22 16:01:07 +01:00
Ryan Dahl
b488be127a
Include NPM, update .pkg to install it.
...
.msi update coming soon.
2011-11-21 10:50:52 -08:00
Ben Noordhuis
05de01d707
tls: expose more openssl SSL context options
2011-11-21 13:59:43 +01:00
Roman Shtylman
4d05f56dcd
tls: expose ssl bug workaround constants
...
The internet is filled with servers which have various bugs and other
ssl handshake issues. These constants can be used with the Agent
secureOptions option to get around such server limitations when performing
https requests
2011-11-21 13:59:43 +01:00
Ryan Dahl
9d1bdbcf05
Fixes #2084 . Makeify tools/osx-dist.sh
2011-11-20 19:22:30 -08:00
Ben Noordhuis
61e796decc
Now working on v0.6.3
2011-11-19 00:22:13 +01:00
Ben Noordhuis
a4402f0b2e
Bump version to v0.6.2
2011-11-18 23:43:03 +01:00
isaacs
975f1930b1
zlib: Fix invalidly failing test
2011-11-18 14:38:44 -08:00
Ben Noordhuis
f004d5aeac
build: compile with -D__DARWIN_64_BIT_INO_T on OS X
...
Fixes a struct stat size mismatch on 64 bits machines that made Node crash with
a EXC_BAD_ACCESS on startup.
Fixes #2061 . Solution proposed by Paddy Byers.
2011-11-18 21:17:13 +01:00
Ben Noordhuis
3f92031aeb
uv: upgrade to 01fbe7b
2011-11-18 21:17:09 +01:00
Ben Noordhuis
8bdf6bae30
docs: document dgram error event
2011-11-18 14:18:42 +01:00
Ben Noordhuis
59a9a9b5b0
buffer: add .read*() and .write*() methods to SlowBuffer prototype
...
Fixes #2138 .
2011-11-18 11:13:37 +01:00
Trevor Burnham
06d71ad457
docs: document the persistent
option for fs.watch
and fs.watchFile
2011-11-18 00:00:01 +01:00
Ben Noordhuis
9d3faf4f9a
crypto: add support for RSA public key signing/verification
2011-11-17 23:01:39 +01:00
Ben Noordhuis
3ac5f1106d
crypto: make verify() return true or false, not 1 or 0
...
It's what the documentation says it should return.
2011-11-17 23:01:39 +01:00
E. Azer Koçulu
1cb6fe47fc
util: remove the line requiring events
2011-11-17 23:01:39 +01:00
Ryan Dahl
b0030af135
Fixes #2140 . Fix illumos build.
2011-11-17 11:39:34 -08:00
Ben Noordhuis
4f8a0cd2f9
v8: add platform-solaris.cc to gyp build
...
Re-applies 77e4abbc3e
, lost in a V8 upgrade.
2011-11-17 19:39:39 +01:00
Ben Noordhuis
2c52ccea80
v8: compile with __C99FEATURES__=1 on sunos
...
Exposes INFINITY, isinf(), isfinite(), etc.
Re-applies d104e5b91c
, lost in a V8 upgrade.
2011-11-17 19:39:39 +01:00
Artur Adib
960ccdc72c
docs: clarify addon docs
2011-11-17 13:15:49 +01:00
Bert Belder
3e696d189c
Windows: make Buffer and ObjectWrap available to compiled extensions
...
Closes GH-2036
2011-11-17 00:54:42 +01:00
Bert Belder
9c70b09e0a
Fix strange vcbuild "label not found" error
2011-11-17 00:10:14 +01:00
Ben Noordhuis
5e3b0095de
tls: make cipher list configurable
...
options.ciphers existed but didn't work, the cipher list was effectively
hard-coded to RC4-SHA:AES128-SHA:AES256-SHA.
Fixes #2066 .
2011-11-17 00:01:41 +01:00
Ryan Dahl
44314ccf48
Upgrade libuv to 2007eb8
2011-11-16 13:06:10 -08:00
Łukasz Walukiewicz
3b852d7fab
buffer: fix minimum values for writeInt*() functions
2011-11-16 21:30:26 +01:00
Ryan Dahl
17a82e72f4
Upgrade V8 to 3.6.6.8
2011-11-14 17:17:23 -08:00
Ryan Dahl
4b0241d589
Remove str.format to support python2.5.
...
Fixes #2077
Fixes #2108
Thanks to David Keegan for debugging and the patch.
2011-11-14 17:09:44 -08:00
Trent Mick
2cd51ef5d4
"Trailer" header should mention "Content-MD5" trailer name in this example.
...
Fixes #2107
2011-11-14 16:54:24 -08:00
seebees
3222a04d5e
test for REPL .save and .load and documentation updates
2011-11-13 19:54:35 +01:00
Mathias Bynens
897208e06d
punycode: Update to v0.1.1.
2011-11-13 15:38:27 +01:00
seebees
3421f43351
.load, .save and local scope tab completion
...
Fixes #2063 .
REPLServer.prototype.resetContext:
Reset the line cache
REPLServer.prototype.memory (don't know if I like that name, called from finish)
pushes what cmd's have been executed against it into this.lines
pushes the "tab depth" for bufferedCommands, in this.lines.level
REPLServer.prototype.displayPrompt:
Uses "tab depth" from this.lines.level to adjust the prompt to visually
denote this depth e.g.
> asdf = function () {
… var inner = {
….. one:1
REPLServer.prototype.complete:
Now notices if there is a bufferedCommand and attempts determine locally
scoped variables by removing any functions from this.lines and evaling these
lines in a nested REPL e.g.
> asdf = function () {
… var inner = { one: 1};
… inn\t
will complete to 'inner' and inner.o\t will complete to 'inner.one'
If the nested REPL still has a bufferedCommand it will falls back to the
default.
ArrayStream is a helper class for the nested REPL to get commands pushed to it.
new REPLServer('', new ArrayStream());
Finally added two new REPL commands .save and .load, each takes 1 parameter,
a file and attempts to save or load the file to or from the REPL
respectively.
2011-11-12 11:34:55 -08:00
seebees
b00f5e2e14
Tab Compete test for node REPL
...
Currently the REPL only tab completes for globally scoped variables
2011-11-12 11:34:55 -08:00
Ben Noordhuis
098fef6740
timers: remember extra setTimeout() arguments when timeout==0
...
Fixes #2079 .
2011-11-12 13:31:28 +01:00
Ryan Dahl
8082858ee7
Now working on v0.6.2
2011-11-11 15:35:10 -08:00
Ryan Dahl
170f2addb2
Bump version to v0.6.1
2011-11-11 14:56:27 -08:00
Ryan Dahl
5bc1809b43
Add 'make dist-upload'
2011-11-11 14:31:15 -08:00
Ryan Dahl
d214576d2b
Be consistent with v before version in packages
2011-11-11 14:02:42 -08:00
Igor Zinkovsky
2095eea3da
msi changes
...
- remove license from MSI
- adjust path on install
- add message to the end
2011-11-11 12:50:04 -08:00
Ryan Dahl
2af6431619
Add upload command to vcbuild.bat
2011-11-11 12:38:55 -08:00
Ryan Dahl
895fa3a56b
Simplify and move getnodeversion.py
2011-11-11 12:09:48 -08:00
Shigeki Ohtsu
e0f10ecfd9
debugger: correctly handle source with multi-byte characters
2011-11-11 20:29:50 +01:00
Ryan Dahl
4e2343c6b5
Fixes #2073 . Cluster should be silent.
2011-11-11 11:24:59 -08:00
Ben Noordhuis
10d4bd8266
test: add more punycode tests
2011-11-11 17:02:43 +01:00
Ben Noordhuis
326b2cb34e
punycode: replace with Mathias Bynens's implementation
...
The currently bundled library doesn't pass all the test cases from RFC 3492.
Mathias's library does.
Home: https://github.com/bestiejs/punycode.js
2011-11-11 17:02:43 +01:00
Yoji SHIDARA
426298c8c1
docs: dgram client should be closed in the callback
2011-11-11 10:39:32 +01:00
Ryan Dahl
74f39041d4
dont use blue for numbers in util.inspect
2011-11-10 23:35:35 -08:00
Ryan Dahl
dc39ab3bbf
Improve OSX installer
2011-11-10 18:41:44 -08:00
Igor Zinkovsky
ec90ede1cf
fix msi builder
2011-11-10 18:40:49 -08:00
Igor Zinkovsky
13324bf844
throw from stdout.end and stderr.end
2011-11-10 14:51:16 -08:00