Ryan Dahl
769a35024f
Allow passing env to child process
15 years ago
Jacek Becela
548d59d07e
Fix fs.readFile handling encoding. Should close issue #72
15 years ago
Ryan Dahl
0e844d3bcb
tcp.Connection.prototype.write should return boolean
15 years ago
Rasmus Andersson
5c602b750a
Rewrote realpath implementation solving all known failing tests (also added a bunch of new test cases)
15 years ago
Ryan Dahl
9be3df0828
Add sys.log()
15 years ago
Felix Geisendörfer
18a70ffda1
Tweaks
- Add 'writeable' property
- Renamed pump->flush
- Use sys.mixin instead of process.mixin
15 years ago
Felix Geisendörfer
61785afb3d
Initial write stream implementation
15 years ago
Ryan Dahl
7881b59f6b
Merge branch 'master' into net2
15 years ago
Ryan Dahl
6670154819
'make test' only runs the simple test
15 years ago
Ryan Dahl
776b099d75
Disable ipv6 test on solaris
15 years ago
Ryan Dahl
62c4214711
Properly throw error on failed connection
15 years ago
Ryan Dahl
e165859c2e
Fix coupling error on Solaris
Was getting a lot of
push_pump read(): Resource temporarily unavailable
Apparently Solaris can return read() < 0 but errno == 0 to indicate a
EAGAIN?
15 years ago
Ryan Dahl
7bd3280cc2
process.inherits -> sys.inherits in net.js
15 years ago
Ryan Dahl
d9e3b466a7
Merge branch 'master' into net2
15 years ago
Ryan Dahl
fdbc9a82e4
Use EVBACKEND_SELECT on Solaris
Using EVBACKEND_PORT DTraceToolkit-0.99/Proc/syscallbypid.d reports after 5
seconds
PID CMD SYSCALL COUNT
. . . .
. . . .
. . . .
28551 mysqld fcntl 485
24793 httpd gtime 528
28551 mysqld read 707
28551 mysqld gtime 956
21050 rsync pollsys 965
21050 rsync read 965
24793 httpd read 982
28551 mysqld lwp_sigmask 1422
4675 dtrace ioctl 1579
15136 node portfs 15681
15136 node clock_gettime 31358
On a very simple node process.
15 years ago
Rasmus Andersson
20d5963fae
Added fs.realpath and fs.realpathSync (pure javascript versions)
15 years ago
Ryan Dahl
7a251f3bdf
Fix shebang in wscript
15 years ago
Felix Geisendörfer
55ab9b4541
Bug fix for deep process.mixin array handling
process.mixin was throwing an exception when trying to do a deep copy
of an object that included an array.
This bug was introduced in: 3bb7ad6fea
15 years ago
Benjamin Thomas
6034701f57
Stop sys.inspect from adding extra new lines for deep objects that are elements in an array.
A couple other small fixes:
If the keys of an object were all numeric they should be quoted. This
way, you can now hypothetically copy and paste the output into your code
(if the object doesn't contain any circular objects, deeply nested
objects, Dates, RegExps or functions. I think).
If a nested object isn't being recursed into, output "[Object]" as
opposed to "[object Object]".
If an object is longer than the max width but it is one line no matter
what, then don't put the closing brace on a new line.
Fix some formatting issues to try and match Node's style guidelines.
15 years ago
Ryan Dahl
b021a845f7
Move process.inherits to sys
15 years ago
Ryan Dahl
30b700ee22
Move watchFile into fs module
15 years ago
Ryan Dahl
810882c1ad
Move 'fs' module out of src/node.js into its own file
15 years ago
Ryan Dahl
faa0c6d449
Add note about testing patches with debug build
15 years ago
kriskowal
2b91f8d265
Fixed spurious suffixes on fs.readlink.
15 years ago
arlolra
724ccf10df
Tests on common port.
15 years ago
Ryan Dahl
16e32c8fd9
Allow for net reconnects
15 years ago
Ryan Dahl
71d237e6a0
Move net2 tests into test/simple
15 years ago
Ryan Dahl
c6cc386819
Merge branch 'master' into net2
15 years ago
Zoran Tomicic
b2995829e1
Edit PrintHelp() text
15 years ago
Ryan Dahl
c219571eac
Use more beautiful object syntax in docs
15 years ago
arlolra
3497da370b
Decoupled readdir test.
15 years ago
Benjamin Thomas
de1521413e
Make the output of sys.inspect a lot more compact.
See:
http://groups.google.com/group/nodejs/browse_thread/thread/ac060521e27fef65
By default now, sys.inspect doesn't recurse more than two times. Pass
in null as the third parameter to make it recurse indefinitely.
15 years ago
Benjamin Thomas
a2714be8b5
Add optional third argument sys.inpect to indicate how many times you want it to recurse
15 years ago
Benjamin Thomas
b1b84960ce
Rename writeHeader to writeHead
15 years ago
Ryan Dahl
b08f2af344
Update common.js path for new test layout
15 years ago
arlolra
04fac19822
Split tests.
15 years ago
Karl Guertin
9ad7539cf9
Add (unused) callback parameter to fs.readFile, fs.writeFile
15 years ago
Jonas Pfenniger
8f59cccb75
Removed deprecation errors in src/node.cc
Removed constness on string litterals. This should cause no problem
since we're not modifying them.
15 years ago
Ryan Dahl
e0ecf4f8f5
Remove -Werror on V8
Are they ever going to fix this?
15 years ago
Ryan Dahl
b80bdda14e
Upgrade V8 to 2.1.2
15 years ago
James Duncan
df1c1e593f
Add setgid,getgid
15 years ago
Ryan Dahl
4fd0225e41
Give signal handlers maximum priority
15 years ago
Ryan Dahl
c5b149ab1e
Add hack to get error event on socket timeout
See
http://groups.google.com/group/nodejs/browse_thread/thread/4898a1ed3b99dcf0
15 years ago
Rasmus Andersson
b57d946184
added fs.link, fs.symlink, fs.readlink
including sync versions and complete tests
15 years ago
Ryan Dahl
a97fdf5c39
Merge branch 'master' into net2
15 years ago
Ryan Dahl
f0f2d2ee70
Fix readdirSync in docs
15 years ago
Ryan Dahl
dc041628ce
Add not about nextTick and setTimeout(fn, 0)
15 years ago
Jérémy Lal
ffb4b47367
Fix for when EV_MULTIPLICITY=1
15 years ago
Ryan Dahl
46ebaa00ce
Encoding 0 length data, returns '' instead of null
15 years ago
Ryan Dahl
b8dee2eb20
camel case variables in url module
15 years ago