This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
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' into merge-0-10-into-0-12
Conflicts: AUTHORS ChangeLog configure deps/uv/AUTHORS deps/uv/ChangeLog deps/uv/README.md deps/uv/config-unix.mk deps/uv/include/uv-private/uv-win.h deps/uv/include/uv.h deps/uv/src/unix/internal.h deps/uv/src/unix/kqueue.c deps/uv/src/unix/stream.c deps/uv/src/uv-common.c deps/uv/src/uv-common.h deps/uv/src/version.c deps/uv/src/win/poll.c deps/uv/test/test-osx-select.c deps/v8/src/debug-debugger.js deps/v8/src/isolate.cc deps/v8/src/isolate.h deps/v8/src/mirror-debugger.js doc/api/buffer.markdown doc/api/child_process.markdown doc/api/dns.markdown doc/api/tls.markdown doc/api/url.markdown lib/_stream_writable.js lib/assert.js lib/child_process.js lib/crypto.js lib/dgram.js lib/http.js lib/net.js lib/timers.js lib/tls.js src/node.cc src/node.h src/node.js src/node_crypto.cc src/node_version.h test/common.js test/simple/test-child-process-spawn-typeerror.js tools/certdata.txt
- Loading branch information
Showing
377 changed files
with
51,635 additions
and
5,077 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 |
---|---|---|
|
@@ -15,6 +15,7 @@ node_g | |
.benchmark_reports | ||
/.project | ||
/.cproject | ||
icu_config.gypi | ||
|
||
/out | ||
|
||
|
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 |
---|---|---|
|
@@ -569,3 +569,14 @@ Jackson Tian <[email protected]> | |
Tristan Berger <[email protected]> | ||
Mathias Schreck <[email protected]> | ||
Steven R. Loomis <[email protected]> | ||
Matthew Fitzsimmons <[email protected]> | ||
Swaagie <[email protected]> | ||
Emmanuel Odeke <[email protected]> | ||
Eric Mill <[email protected]> | ||
Brendan Ashworth <[email protected]> | ||
Alejandro Oviedo <[email protected]> | ||
pkcs <[email protected]> | ||
Saúl Ibarra Corretgé <[email protected]> | ||
silverwind <[email protected]> | ||
Steven R. Loomis <[email protected]> | ||
James M Snell <[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 |
---|---|---|
|
@@ -294,9 +294,9 @@ maintained libraries. The externally maintained libraries used by Node are: | |
- Zlib at deps/zlib. zlib's license follows: | ||
""" | ||
/* zlib.h -- interface of the 'zlib' general purpose compression library | ||
version 1.2.4, March 14th, 2010 | ||
version 1.2.8, April 28th, 2013 | ||
|
||
Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler | ||
Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler | ||
|
||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -314,9 +314,8 @@ maintained libraries. The externally maintained libraries used by Node are: | |
misrepresented as being the original software. | ||
3. This notice may not be removed or altered from any source distribution. | ||
|
||
Jean-loup Gailly | ||
Mark Adler | ||
|
||
Jean-loup Gailly Mark Adler | ||
[email protected] [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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,6 +190,9 @@ website_files = \ | |
|
||
doc: $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) tools/doc/ out/doc/changelog.html node | ||
|
||
doc-branch: NODE_DOC_VERSION = v$(shell $(PYTHON) tools/getnodeversion.py | cut -f1,2 -d.) | ||
doc-branch: doc | ||
|
||
$(apidoc_dirs): | ||
mkdir -p $@ | ||
|
||
|
@@ -203,10 +206,10 @@ out/doc/%: doc/% | |
cp -r $< $@ | ||
|
||
out/doc/api/%.json: doc/api/%.markdown node | ||
out/Release/node tools/doc/generate.js --format=json $< > $@ | ||
NODE_DOC_VERSION=$(NODE_DOC_VERSION) out/Release/node tools/doc/generate.js --format=json $< > $@ | ||
|
||
out/doc/api/%.html: doc/api/%.markdown node | ||
out/Release/node tools/doc/generate.js --format=html --template=doc/template.html $< > $@ | ||
NODE_DOC_VERSION=$(NODE_DOC_VERSION) out/Release/node tools/doc/generate.js --format=html --template=doc/template.html $< > $@ | ||
|
||
email.md: ChangeLog tools/email-footer.md | ||
bash tools/changelog-head.sh | sed 's|^\* #|* \\#|g' > $@ | ||
|
@@ -225,6 +228,11 @@ website-upload: doc | |
rm -f ~/web/nodejs.org/dist/node-latest.tar.gz &&\ | ||
ln -s $(VERSION)/node-$(VERSION).tar.gz ~/web/nodejs.org/dist/node-latest.tar.gz' | ||
|
||
doc-branch-upload: NODE_DOC_VERSION = v$(shell $(PYTHON) tools/getnodeversion.py | cut -f1,2 -d.) | ||
doc-branch-upload: doc-branch | ||
echo $(NODE_DOC_VERSION) | ||
rsync -r out/doc/api/ [email protected]:~/web/nodejs.org/$(NODE_DOC_VERSION) | ||
|
||
docopen: out/doc/api/all.html | ||
-google-chrome out/doc/api/all.html | ||
|
||
|
@@ -233,6 +241,7 @@ docclean: | |
|
||
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py) | ||
VERSION=v$(RAWVER) | ||
NODE_DOC_VERSION=$(VERSION) | ||
RELEASE=$(shell $(PYTHON) tools/getnodeisrelease.py) | ||
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]') | ||
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
## Makefile for OpenSSL | ||
## | ||
|
||
VERSION=1.0.1i | ||
VERSION=1.0.1j | ||
MAJOR=1 | ||
MINOR=0.1 | ||
SHLIB_VERSION_NUMBER=1.0.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
Oops, something went wrong.