Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2011-08-06Child processes: support windowsVerbatimArguments optionBert Belder
2011-08-04child process: don't send signal if process is already terminatedBen Noordhuis
Fixes failing test test/simple/test-exec-max-buffer.js
2011-08-04net_uv: add listenFD shim that throws when calledBen Noordhuis
2011-08-04child process: bind to libuv's kill process APIBen Noordhuis
Fixes failing test test/simple/test-child-process-kill.js
2011-08-04module: strip byte order marker when loading *.js and *.json filesBen Noordhuis
BOMs make V8 raise a 'SyntaxError: Unexpected token ILLEGAL' exception. Fixes #1440.
2011-08-02Merge branch 'v0.4'Ryan Dahl
Conflicts: doc/api/crypto.markdown doc/api/modules.markdown src/platform_win32.cc
2011-08-02win: fix test-child-process-exec-cwdRyan Dahl
2011-08-02child_process_uv: fix test-child-process-stdin and -ipcRyan Dahl
2011-08-01Remove debug codeRyan Dahl
2011-08-01child_process_uv: Handle spawn errorsRyan Dahl
2011-08-01child_process_uv: fix test/simple/test-child-process-envRyan Dahl
2011-08-01child_process_uv: add exec, fix simple/test-child-process-exec-cwdRyan Dahl
2011-08-01Forgot to add child_process_uv.jsRyan Dahl
2011-08-01initial pass at lib/child_process_uv.jsRyan Dahl
2011-07-30Add %% escape to util.format()koichik
Fixes #1273.
2011-07-30util: add sprintf-like format() functionBen Noordhuis
Fixes #1407.
2011-07-30Add support for TLS SNIFedor Indutny
Fixes #1411
2011-07-29jslint cleanup: path.js, readline.js, repl.js, tls.js, tty_win32.js, url.jsRobert Mustacchi
2011-07-29Revert "AMD compatibility for node"isaacs
This reverts commit 9967c369c9272335bb0343558673b689725c6d7c. Conflicts: test/simple/test-module-loading.js
2011-07-29Fix http.ClientRequest crashes if end() was called twicekoichik
Fixes #1417. Fixes #1223.
2011-07-29Fix http.ClientRequest crashes if end() was called twicekoichik
Fixes #1417. Fixes #1223.
2011-07-29Fix http.ClientRequest crashes if end() was called twicekoichik
Fixes #1417. Fixes #1223.
2011-07-28Lazy load a few modulesRyan Dahl
2011-07-27stdio binding + javascript to enable process.stdin.listen()Igor Zinkovsky
2011-07-26http: make http and http2 co-existBen Noordhuis
http2 is currently disabled pending addition of a --use-http2 switch
2011-07-26http: http2 implementationMikeal Rogers
2011-07-26Emit 'close' after all connections have closedFelix Geisendörfer
Fixes #1383
2011-07-25Doc improvements and change argument name.koichik
Fixes #1318.
2011-07-25Add Socket::bytesRead, Socket::bytesWrittenAlexander Uvarov
2011-07-25Finish removing require.pathsisaacs
Fix require() completion bug in repl, and correct man output
2011-07-23Add an optional length argument to Buffer.write()koichik
Fixes #243. Fixes #1361.
2011-07-23convert nonbuffer data to string in fs.writeFile/SyncDaniel Pihlström
Fixes #657.
2011-07-22Merge branch 'v0.4'Ryan Dahl
Conflicts: ChangeLog deps/v8/src/version.cc doc/index.html src/node_version.h test/simple/test-url.js wscript
2011-07-22win: fix simple/test-tls-client-abort.jsRyan Dahl
2011-07-22net_uv: Fix test-net-server-bindRyan Dahl
2011-07-22net_uv: throw if Server.prototype.close() is called twiceBen Noordhuis
Follows net_legacy behaviour.
2011-07-22net_uv: emit 'close' event in Server.prototype.close()Ben Noordhuis
2011-07-22net_uv: release uv handle in Socket.prototype.destroy()Ben Noordhuis
2011-07-22net_uv: defer handle creation to connect() or bind() timeBen Noordhuis
Fixes #1379.
2011-07-21http: fix setting ServerResponse.statusCode in writeHeadTrent Mick
Fixes #1374.
2011-07-21http: fix setting ServerResponse.statusCode in writeHeadTrent Mick
Fixes #1374.
2011-07-21fs: added an argument check in fs.watchFileYoshihiro Kikuchi
Fixes #1324.
2011-07-21net: add bindings to libuv pipe APIBen Noordhuis
2011-07-21Close #1357 Load json files with require()isaacs
Signed off by everybody.
2011-07-21url: throw descriptive error if url argument to parse() is not a stringBen Noordhuis
Fixes #568.
2011-07-19Close #1360 url: Allow _ in hostnames.isaacs
2011-07-19Close #1360 url: Allow _ in hostnames.isaacs
2011-07-19Properly respond to HEAD during end(body) hot pathReid Burke
During write(), _hasBody is checked to make sure a body is allowed -- this is now also checked during end(body) when write() isn't used. Concise final chunk for HEAD req's res.end(data). Instead of simply clearing data, check _hasBody earlier to avoid sending cruft when chunkedEncoding is used. Fixes #1291.
2011-07-19Upgrade libuv to d4563a1Ryan Dahl
2011-07-19net_uv: Fix simple/test-http-expect-continue.jsRyan Dahl