forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/v0.10'
Conflicts: AUTHORS ChangeLog deps/v8/src/api.cc deps/v8/src/unicode-inl.h deps/v8/src/unicode.h lib/_stream_readable.js lib/http.js src/cares_wrap.cc src/node.cc src/node_crypto.cc src/node_dtrace.cc src/node_file.cc src/node_stat_watcher.cc src/node_version.h src/process_wrap.cc src/string_bytes.cc src/string_bytes.h src/udp_wrap.cc src/util.h test/simple/test-buffer.js test/simple/test-stream2-compatibility.js
- Loading branch information
Showing
388 changed files
with
4,466 additions
and
2,584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -553,3 +553,7 @@ Farrin Reid <[email protected]> | |
Denys Zariaiev <[email protected]> | ||
Sean McArthur <[email protected]> | ||
Rasmus Christian Pedersen <[email protected]> | ||
Greg Sabia Tucker <[email protected]> | ||
Calvin Metcalf <[email protected]> | ||
cjihrig <[email protected]> | ||
Chris Barber <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
save-prefix = ~ | ||
proprietary-attribs = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,8 +169,7 @@ publish: link doc | |
git push origin &&\ | ||
git push origin --tags &&\ | ||
npm publish &&\ | ||
make doc-publish &&\ | ||
make zip-publish | ||
make doc-publish | ||
|
||
docpublish: doc-publish | ||
doc-publish: doc | ||
|
@@ -202,13 +201,10 @@ doc-publish: doc | |
esac; \ | ||
done | ||
|
||
zip-publish: release | ||
scp release/* [email protected]:dist/npm/ | ||
|
||
release: | ||
@bash scripts/release.sh | ||
|
||
sandwich: | ||
@[ $$(whoami) = "root" ] && (echo "ok"; echo "ham" > sandwich) || (echo "make it yourself" && exit 13) | ||
|
||
.PHONY: all latest install dev link doc clean uninstall test man doc-publish doc-clean docclean docpublish release zip-publish | ||
.PHONY: all latest install dev link doc clean uninstall test man doc-publish doc-clean docclean docpublish release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/sh | ||
(set -o igncr) 2>/dev/null && set -o igncr; # cygwin encoding fix | ||
|
||
basedir=`dirname "$0"` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
npm-cache(3) -- manage the npm cache programmatically | ||
===================================================== | ||
|
||
## SYNOPSIS | ||
|
||
npm.commands.cache([args], callback) | ||
|
||
// helpers | ||
npm.commands.cache.clean([args], callback) | ||
npm.commands.cache.add([args], callback) | ||
npm.commands.cache.read(name, version, forceBypass, callback) | ||
|
||
## DESCRIPTION | ||
|
||
This acts much the same ways as the npm-cache(1) command line | ||
functionality. | ||
|
||
The callback is called with the package.json data of the thing that is | ||
eventually added to or read from the cache. | ||
|
||
The top level `npm.commands.cache(...)` functionality is a public | ||
interface, and like all commands on the `npm.commands` object, it will | ||
match the command line behavior exactly. | ||
|
||
However, the cache folder structure and the cache helper functions are | ||
considered **internal** API surface, and as such, may change in future | ||
releases of npm, potentially without warning or significant version | ||
incrementation. | ||
|
||
Use at your own risk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.