- Feb 09, 2010
-
-
Tim Caswell authored
It now takes an optional showHidden argument that shows hidden/non-enumerable properties of objects. Also cleanup the lib/sys.js file a bit.
-
Tim Caswell authored
- Feb 08, 2010
-
-
Isaac Z. Schlueter authored
1. Support streaming in the simple case. Put huge warnings around the buffering API. 2. Support nested multipart messages. 3. Support various kinds of multipart messages, including all the various absurdities of multipart email messages. 4. Error out on various invalid types of data that might come through. 5. Gracefully several edge cases that occur when the chunk size is smaller than the boundary length, or cuts into the \r\n, etc. 6. Provide both positive and negative tests.
-
Ryan Dahl authored
-
Michael Carter authored
-
Ryan Dahl authored
-
-
Ryan Dahl authored
-
Ryan Dahl authored
-
Ryan Dahl authored
-
- Feb 06, 2010
-
-
Matt Brubeck authored
These are actually passed as Error objects, not separate "code" and "message" parameters.
-
- Feb 05, 2010
-
- Feb 04, 2010
-
-
Felix Geisendörfer authored
createModule got removed as it was unnecessary and caused issues by doing its own cache checks independent of loadModule. Internal modules are now the only globally cached modules, all other modules are only cached by inheriting their parent modules cache. Credits: Module specific cache and a few other diffs by Blaine Cook http://github.com/blaine/node/commit/431662d25c0db3096deb5f679ca73b1dd6bb8ae5 http://romeda.org/blog/2010/01/hot-code-loading-in-nodejs.html http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/1994
-
- Feb 03, 2010
-
-
Ryan Dahl authored
Broken on at least one platform http://pastie.org/808217 This reverts commit 704f394c.
-
Ryan Dahl authored
-
Aaron Heckmann authored
-
Ryan Dahl authored
-
Ryan Dahl authored
-
Ryan Dahl authored
for a %2.5 improvement in hello world HTTP score.
-
Ryan Dahl authored
Fixes, among other things, a header overflow attack.
-
- Feb 02, 2010
-
-
Ryan Dahl authored
-
- Jan 31, 2010
-
-
Ryan Dahl authored
-
Ryan Dahl authored
- assign 'GLOBAL' (and now 'global') inside src/node.js - position for eventually allowing replacements to src/node.js for people like Kris Kowal who want the nice libev and libeio bindings but not necessarily node's choices of modules or promises.
-
Jonas Pfenniger authored
-
- Jan 30, 2010
-
-
Micheil Smith authored
-
Felix Geisendörfer authored
Some HTTP clients include a charset parameter in the Content-Type, e.g: multipart/form-data; charset=utf-8; boundary=0xKhTmLbOuNdArY This patch makes the multipart parser more forgiving towards unexpected information included in the Content-Type header.
-
- Jan 28, 2010
-
-
Ryan Dahl authored
Hot bug fix from net2 branch.
-
- Jan 27, 2010
-
-
Stanislav Opichal authored
Simply place this into the root of your nodejs git working copy and run ./tools/osx-dist.sh. It will create an dist-osx folder which will comprise of the resulting .dmg file (install path is /usr/local/nodejs with symlinks added to /usr/local/bin) along with other files used during its construction. $ ls -1 dist-osx/ nodejs-v0.1.26-11-gcd6397c nodejs-v0.1.26-11-gcd6397c.dmg nodejs-v0.1.26-11-gcd6397c.pkg nodejs-v0.1.26-11-gcd6397c.plist The resulting installed package is going to be visible using the OS X 'pkgutil --packages' command. You can even safely uninstall sudoing 'pkgutil --unlink org.nodejs.NodeJS-...' and subsequently let the system forget about the package being ever seen by 'pkgutil --forget org.nodejs.NodeJS-...'. Here is the current package ID I have installed: $ pkgutil --pkgs | grep node org.nodejs.NodeJS-v0.1.26-11-gcd6397c Use this patch freely without hesitation. Signed-off-by:
Standa Opichal <opichals@gmail.com>
-
Ryan Dahl authored
-
Ryan Dahl authored
Test case by tlynn.
-
- Jan 25, 2010
-
-
Blaine Cook authored
-
- Jan 24, 2010
-
-
Ryan Dahl authored
-
Alexis Sellier authored
-
Felix Geisendörfer authored
Late promise bindings would fire regardless of the outcome of the promise. Test case by: Jonas "zimbatm" Pfenniger <jonas@pfenniger.name>
-
Joseph Pecoraro authored
-
- Jan 22, 2010
-
-
Felix Geisendörfer authored
It seems that the current __filename module global is mainly used to determine the directory the current module is in. To make that easier, this patch adds support for a __dirname module global directly.
-
- Jan 21, 2010
-
-
Ryan Dahl authored
-