Ryan Dahl
e7096fd769
ACTUALLY remove node_version.h from node.h
2009-10-09 17:49:29 +02:00
Ryan Dahl
0ae02c9f04
Internalize node_version.h.
...
With the more detailed node.version changing (every commit), having
node_version.h exposed to all modules required a complete recompile each
time a commit was made.
People can use the javascript interface to get the version.
2009-10-09 17:47:04 +02:00
Ryan Dahl
388145546d
Add comments to node.cc
2009-10-09 17:44:59 +02:00
Ryan Dahl
962e9291f7
'git-describe' to 'git describe'
2009-10-09 16:16:27 +02:00
Ryan Dahl
d979ac9c7f
Put git revision into version string
2009-10-09 15:00:12 +02:00
Ryan Dahl
78d06eec06
Clean up README.
2009-10-09 14:55:29 +02:00
Ryan Dahl
2060e32ec9
Kill -Werror in V8 for GCC 4.4.1 users.
...
http://code.google.com/p/v8/issues/detail?id=413
2009-10-09 14:21:41 +02:00
Ryan Dahl
335d9af71f
Update docs to use sys.js and not so much mixin().
2009-10-09 14:18:10 +02:00
Ryan Dahl
349200bd1c
symlink sys.js to utils.js
2009-10-09 14:09:42 +02:00
Ryan Dahl
6325878d43
Raise helpful error when include() is called.
2009-10-09 13:30:27 +02:00
Ryan Dahl
e742d077e0
Enable debugging.
...
Use the --debug command line flag to enable.
It appears that d8 sucks. Luckily it can be rewritten rather easily with the
repl and tcp client libraries.
Node's CL option parsing is getting rather unwieldy - needs refactor.
2009-10-09 13:26:23 +02:00
Ryan Dahl
59b7a1bf26
More updates to wscripts v8 building.
...
This allows me to hack on V8 without recompiling the whole thing.
2009-10-09 12:59:42 +02:00
Ryan Dahl
d85724d741
Fix wscript for python 2.4
2009-10-09 00:34:39 +02:00
Ryan Dahl
53ebe75930
Improve build for V8
...
Users following HEAD should 'make distclean' and reconfigure after this
update.
2009-10-08 23:20:14 +02:00
Ryan Dahl
e46a832ded
Use /bin/sh from exec()
2009-10-08 01:30:26 +02:00
Felix Geisendörfer
6219f2a2be
Removed getHeader() function thanks to f623f
2009-10-07 17:30:30 +02:00
Ryan Dahl
f623fd7658
Normalize HTTP headers.
...
"Content-Length" becomes "content-length".
2009-10-07 16:56:19 +02:00
Ryan Dahl
d03b67669c
Upgrade v8 to 1.3.15
2009-10-07 16:02:34 +02:00
Ryan Dahl
b404996cf3
Fix --v8-options command line argument.
2009-10-07 16:01:03 +02:00
Ryan Dahl
b76d853f0d
Fix test-signal-handler.js on macintosh - pause before exit.
2009-10-07 15:39:39 +02:00
Ryan Dahl
be2ca1ec80
Fix build.
...
- Add -f flag to rm on make clean.
- Use old jsmin - the new one seems to be broken.
2009-10-07 15:02:42 +02:00
Ryan Dahl
e982349b16
Fix 'make distclean'
2009-10-07 12:43:21 +02:00
Ryan Dahl
1f31a7dbfe
Upgrade v8 to 1.3.14
2009-10-07 11:53:45 +02:00
Ryan Dahl
1a2762b78e
Update benchmarks with new createChildProcess API
2009-10-07 10:24:50 +02:00
Felix Geisendörfer
abbc624f52
Multipart test now uses a fixture instead of CURL
2009-10-07 02:03:24 +02:00
Felix Geisendörfer
3fd1cba073
Fixed bad indention in multipart.js
2009-10-07 02:03:24 +02:00
Ryan Dahl
1817d4b062
ev_unref() the signal handlers.
...
That means even if they are Attached(), libev will still exit if there is
nothing else to do.
2009-10-07 01:35:21 +02:00
Brandon Beacher
f068251494
Added signal handler.
...
To be used internally. Needs an exposed interface.
2009-10-07 01:23:29 +02:00
Ryan Dahl
82465fc4b1
Do not use /bin/sh to create child processes.
...
Instead directly call execvp(). This change is needed for the
soon-to-be-added signal handlers because the /bin/sh parent process does not
pass all signals to it's children, particularly SIGUSR1 on Linux.
The parameters of createChildProcess had to be changed slightly.
utils.exec() also has a changed implementation. A bug involving quoted
arguments was knowingly introduced into utils.exec(). Will fix later.
2009-10-07 01:08:33 +02:00
Ryan Dahl
39c61367a7
Only arguments before -- should be passed to V8.
2009-10-06 16:28:52 +02:00
Ryan Dahl
2b994d9e37
Also accept 'utf-8' to specify utf8 encodings.
2009-10-06 10:45:18 +02:00
Ryan Dahl
ae6a172308
Simplify 'make distclean' by just doing 'rm -rf build'
2009-10-06 00:44:08 +02:00
Ryan Dahl
d67288b643
Add __module to reference current node.Module object.
2009-10-05 21:01:30 +02:00
Ryan Dahl
78f8b6771c
Add require.async().
2009-10-05 20:35:48 +02:00
Ryan Dahl
d703813c27
Remove target argument from node.Module#newChild.
2009-10-05 20:35:05 +02:00
Ryan Dahl
a0c464638c
Remove old references to node.loadingModules
2009-10-05 20:29:59 +02:00
Ryan Dahl
3e9dd0e2e3
Remove include() from website.
2009-10-05 19:15:38 +02:00
Ryan Dahl
8185e1fd25
Remove include() add node.mixin()
...
include() should not be used by libraries because it will pollute the global
namespace. To discourage this behavior and bring Node more in-line with
the current CommonJS module system, include() is removed.
Small scripts like unit tests often times do want to pollute the global
namespace for ease. To avoid the boiler plate code of
var x = require("/x.js");
var foo = x.foo;
var bar = x.bar;
The function node.mixin() is stolen from jQuery's jQuery.extend. So that it
can be written:
node.mixin(require("/x.js"));
Reference:
http://docs.jquery.com/Utilities/jQuery.extend
http://groups.google.com/group/nodejs/browse_thread/thread/f9ac83e5c11e7e87
2009-10-05 15:46:31 +02:00
Ryan Dahl
522909bcbf
Parse queryString into req.uri.params
2009-10-05 14:52:26 +02:00
Ryan Dahl
4c51af882d
Fix typo
2009-10-05 13:16:56 +02:00
Ryan Dahl
bac16bd8ac
Remove node.pc
2009-10-05 13:04:21 +02:00
Ryan Dahl
e2b7902469
Don't use parseUri for HTTP server
...
The big parseUri RE was showing up often in profiles - this is simpler and
yields better performance by taking advantage of the C http parser.
2009-10-04 12:19:01 +02:00
Ryan Dahl
7b8842b619
Modify node_addon configure api
2009-10-04 11:50:53 +02:00
Ryan Dahl
5c9fe1fce1
Update addon documentation
2009-10-04 11:14:39 +02:00
Ryan Dahl
39e6d959d7
Add node-waf to help with building addons.
2009-10-04 10:33:39 +02:00
Ryan Dahl
13793aed20
Add Makefiles which were forgotten.
2009-10-03 22:48:44 +02:00
Ryan Dahl
bf0d278a45
Improve "make dist" remove generated doc from repo.
2009-10-03 22:48:33 +02:00
Ryan Dahl
861f28f37a
Don't unnecessarily output the makefile from the configure script.
2009-10-03 21:46:59 +02:00
Ryan Dahl
6f17ca51c3
Install wafadmin into $PREFIX/lib/node/wafadmin
...
This is in preparation for a special node_waf script for building external
modules.
Also change system library path to $PREFIX/lib/node/libraries
2009-10-03 19:09:00 +02:00
Felix Geisendörfer
eeaa267cbe
Documentation for Multipart parser
...
Also added multipart.parse as a convenience function
2009-10-03 18:06:24 +02:00