Ben Noordhuis [Thu, 3 Jan 2013 19:02:31 +0000 (20:02 +0100)]
Merge remote-tracking branch 'origin/v0.8'
Conflicts:
configure
deps/uv/src/unix/core.c
deps/uv/test/test-fs-event.c
src/node_version.h
Ben Noordhuis [Thu, 3 Jan 2013 17:21:52 +0000 (18:21 +0100)]
repl: allow overriding builtins
Don't give names of built-in libraries special treatment.
Changes the REPL's behavior from this:
> var path = 42
> path
A different "path" already exists globally
To this:
> var path = 42
> path
42
Fixes #4512.
Ben Noordhuis [Thu, 3 Jan 2013 16:58:58 +0000 (17:58 +0100)]
node: remove ev-emul.h
libev has been deprecated since v0.6. Add-on authors have had two major
release cycles to upgrade. Out it goes.
Ben Noordhuis [Thu, 3 Jan 2013 01:33:40 +0000 (02:33 +0100)]
v8: remove optimization switches
Remove compiler switches from $(TOPLEVEL)/deps/v8/build/common.gypi,
we set them globally in $(TOPLEVEL)/common.gypi.
Commit 7b4d95a introduced the switches again, resulting in V8 getting
built without any optimizations.
This commit is essentially a rehash of commit 4b8629d.
Fedor Indutny [Tue, 1 Jan 2013 12:06:28 +0000 (16:06 +0400)]
test: make tests work with newer v8
Fedor Indutny [Tue, 1 Jan 2013 12:05:53 +0000 (16:05 +0400)]
bindings: update to new v8 apis
GetPointerFromInternalField() is deprecated now, we should use
GetAlignedPointerFromInternalField().
Fedor Indutny [Tue, 1 Jan 2013 08:28:07 +0000 (12:28 +0400)]
deps: update v8 to 3.15.11
Tim Bradshaw [Thu, 20 Dec 2012 22:29:45 +0000 (22:29 +0000)]
os: change CPU time from Integer to Number
CPU time values must be Numbers, not Integers, as they can be too large
for Integers on 32 bit platforms.
Ben Noordhuis [Mon, 31 Dec 2012 16:42:54 +0000 (17:42 +0100)]
dgram: fix double implicit bind error
Calling send() on an unbound socket forces an implicit bind to
a random port.
332fea5 made the 'listening' event asynchronous. Unfortunately,
it also introduced a bug where the implicit bind was tried more
than once if send() was called again before the first bind operation
completed.
Address that by keeping track of the bind status and making sure that
bind() is called only once.
Fixes #4499.
Ben Noordhuis [Sun, 30 Dec 2012 23:36:47 +0000 (00:36 +0100)]
doc: add CONTRIBUTING.md
isaacs [Sun, 30 Dec 2012 01:26:32 +0000 (17:26 -0800)]
blog: Post for v0.9.5
isaacs [Sun, 30 Dec 2012 01:25:40 +0000 (17:25 -0800)]
Now working on 0.9.6
isaacs [Sun, 30 Dec 2012 01:25:25 +0000 (17:25 -0800)]
Merge branch 'v0.9.5-release'
isaacs [Sun, 30 Dec 2012 00:31:43 +0000 (16:31 -0800)]
2012.12.30, Version 0.9.5 (Unstable)
* assert: improve support for new execution contexts (lukebayes)
* domain: use camelCase instead of snake_case (isaacs)
* domain: Do not use uncaughtException handler (isaacs)
* fs: make 'end' work with ReadStream without 'start' (Ben Noordhuis)
* https: optimize createConnection() (Ryunosuke SATO)
* buffer: speed up base64 encoding by 20% (Ben Noordhuis)
* doc: Colorize API stabilitity index headers in docs (Luke Arduini)
* net: socket.readyState corrections (bentaber)
* http: Performance enhancements for http under streams2 (isaacs)
* stream: fix to emit end event on http.ClientResponse (Shigeki Ohtsu)
* stream: fix event handler leak in readstream pipe and unpipe (Andreas Madsen)
* build: Support ./configure --tag switch (Maciej Małecki)
* repl: don't touch `require.cache` (Nathan Rajlich)
* node: Emit 'exit' event when exiting for an uncaught exception (isaacs)
isaacs [Sun, 30 Dec 2012 00:49:18 +0000 (16:49 -0800)]
node: emit 'exit' when exiting with error
Fix #3555
isaacs [Thu, 27 Dec 2012 23:02:57 +0000 (15:02 -0800)]
benchmark: Make flamegraphs a bit more useful
isaacs [Fri, 28 Dec 2012 05:12:43 +0000 (21:12 -0800)]
benchmark: Set port range properly on Linux
isaacs [Thu, 27 Dec 2012 21:03:59 +0000 (13:03 -0800)]
net: Don't go through Stream API when ondata is used
This speeds up http_simple by around 6%.
isaacs [Thu, 27 Dec 2012 19:41:29 +0000 (11:41 -0800)]
http: Separate out the storeHeader closure
isaacs [Thu, 27 Dec 2012 19:40:42 +0000 (11:40 -0800)]
timers: Move list.ontimeout to separate function
isaacs [Thu, 27 Dec 2012 19:39:57 +0000 (11:39 -0800)]
net: Move createWriteReq to separate function
isaacs [Thu, 27 Dec 2012 17:13:58 +0000 (09:13 -0800)]
http: Replace "in" usage with "=== undefined"
Speeds up http benchmarks.
lukebayes [Sun, 20 Feb 2011 23:09:23 +0000 (15:09 -0800)]
assert: improve support for new execution contexts
More detailed information in GH-693
isaacs [Thu, 27 Dec 2012 02:13:59 +0000 (18:13 -0800)]
test-message: Add setTimeout and nextTick message tests
isaacs [Wed, 26 Dec 2012 20:31:27 +0000 (12:31 -0800)]
domain: use camelCase instead of snake_case
While it's true that error objects have a history of getting snake_case
properties attached by the host system, it's a point of confusion to
Node users that comes up a lot. It's still 'experimental', so best to
change this sooner rather than later.
isaacs [Wed, 26 Dec 2012 20:28:33 +0000 (12:28 -0800)]
domain: Do not use uncaughtException handler
This adds a process._fatalException method which is called into from
C++ in order to either emit the 'uncaughtException' method, or emit
'error' on the active domain.
The 'uncaughtException' event is an implementation detail that it would
be nice to deprecate one day, so exposing it as part of the domain
machinery is not ideal.
Fix #4375
Ben Noordhuis [Sat, 29 Dec 2012 16:34:41 +0000 (17:34 +0100)]
deps: upgrade libuv to 4997738
Ben Noordhuis [Fri, 28 Dec 2012 17:31:47 +0000 (18:31 +0100)]
fs: make 'end' work with ReadStream without 'start'
Make `fs.createReadStream({ end: 42 })` work.
Before this commit, it worked only when used like this:
`fs.createReadStream({ start: 0, end: 42 })` - only when `start` was specified
by the caller.
Fixes #4423.
Ben Noordhuis [Fri, 28 Dec 2012 17:23:08 +0000 (18:23 +0100)]
fs: remove fs.sendfile()
Said function has been broken (and useless) since v0.6.0. Remove it altogether.
Fixes #3854.
Ryunosuke SATO [Fri, 28 Dec 2012 03:40:06 +0000 (12:40 +0900)]
https: optimize https.createConnection()
Stop using `arguments` for performance and readability.
Ben Noordhuis [Mon, 24 Dec 2012 00:29:40 +0000 (01:29 +0100)]
buffer: speed up base64 encoding by 20%
Remove a lot of branches from the inner loop. Speeds up buf.toString('base64')
by about 20%.
Before:
$ time out/Release/node benchmark/buffer-base64-encode.js
real 0m6.607s
user 0m5.508s
sys 0m1.088s
After:
$ time out/Release/node benchmark/buffer-base64-encode.js
real 0m5.520s
user 0m4.520s
sys 0m0.992s
Luke Arduini [Fri, 28 Dec 2012 01:32:53 +0000 (20:32 -0500)]
Colorize API stabilitity index headers in docs
Noted in @shtylman's #3898, API stability notes are easy to overlook
in the html documentation. This can be especially troublesome if the API
is deprecated. This commit gives visual feedback by adding in a class
to the html docs when they're generated. The API headers with
corresponding colors are also listed in the 'About this Documentation'
page for easy reference.
bentaber [Thu, 27 Dec 2012 14:57:19 +0000 (07:57 -0700)]
net: socket.readyState corrections
socket.readyState, .readable, and .writable behavior changed as
a result of the new streaming interfaces. Updated to be backwards
compatible with current API and adds regression test.
closes #4461
Ryunosuke SATO [Thu, 27 Dec 2012 16:30:50 +0000 (01:30 +0900)]
stream: speed up instantiation of readable stream
- Stream.apply -> Stream.call
Ryunosuke SATO [Thu, 27 Dec 2012 15:51:31 +0000 (00:51 +0900)]
domain: speed up domain.create
Use `EventEmitter.call` instead of `EventEmitter.apply` because of performance.
Ryunosuke SATO [Thu, 27 Dec 2012 16:14:16 +0000 (01:14 +0900)]
http: remove unused variable
The module variable `END_OF_FILE` was no longer needed from
1d369317.
isaacs [Thu, 27 Dec 2012 04:35:00 +0000 (20:35 -0800)]
build: Add hyphen to custom build tags
so that ./configure --tag=foo makes a version number like v0.9.5-foo
instead of v0.9.5foo
Maciej Małecki [Fri, 21 Dec 2012 01:56:47 +0000 (02:56 +0100)]
build: allow to specify custom tags
When building custom `node` versions (e.g., floating features/fixes from
different versions) it's often useful to specify a custom tag which
easily identifies build when invoking `node -v`.
Introduce a way to specify this tag in `node_version.h` file or by
running `./configure --tag="<tag>"`. Insert it right after the patch
version (and before `-pre`, if build is not a release).
isaacs [Wed, 26 Dec 2012 23:57:49 +0000 (15:57 -0800)]
http: Handle end only when stream is not dumped
This fixes regression introduced in some cases by 8bf0c15
isaacs [Wed, 26 Dec 2012 23:26:53 +0000 (15:26 -0800)]
lint
Ryunosuke SATO [Tue, 11 Dec 2012 10:14:49 +0000 (19:14 +0900)]
repl: remove 'repl' from automatic loading libs
In repl, calling `repl` twice shows the following message:
```
> repl
A different "repl" already exists globally
```
Ryunosuke SATO [Tue, 11 Dec 2012 10:04:34 +0000 (19:04 +0900)]
repl: add 'domain' to automatic loading libs
`domain` should be a member of automatic loading libs in `repl`.
Conflicts:
lib/repl.js
Shigeki Ohtsu [Tue, 18 Dec 2012 01:59:07 +0000 (10:59 +0900)]
stream2: fix to emit end event on http.ClientResponse
Andreas Madsen [Sat, 22 Dec 2012 17:27:08 +0000 (18:27 +0100)]
doc: document the finish event
Since the stream implementer is not expected to overwrite
.end() the finish event is necessary in order to know when
no more data can be written
Andreas Madsen [Sat, 22 Dec 2012 17:07:08 +0000 (18:07 +0100)]
stream: do only fake drain when unpiped stream is the source
If the destination had multiply read streams piped to it,
they would all decrease the awaitDrain state and thereby
start the flow
Andreas Madsen [Sat, 22 Dec 2012 15:14:42 +0000 (16:14 +0100)]
stream: fix event handler leak in readstream pipe and unpipe
After a stream was unpiped there would stil be residual event handlers
Ryunosuke SATO [Sun, 23 Dec 2012 19:14:40 +0000 (04:14 +0900)]
util: fix deprecation message in `util.pump`
Ben Noordhuis [Tue, 25 Dec 2012 21:05:06 +0000 (22:05 +0100)]
test: add regression test for #4463
Ben Taber [Tue, 25 Dec 2012 01:35:52 +0000 (18:35 -0700)]
net: allow socket end before connect
Fix a bug where calling .end() on a socket without calling .connect() first
throws a TypeError:
TypeError: Cannot read property 'shutdown' of undefined
at Socket.onSocketFinish (net.js:194:20)
at Socket.EventEmitter.emit (events.js:91:17)
at Socket.Writable.end (_stream_writable.js:281:10)
at Socket.end (net.js:352:31)
Fixes #4463.
Ben Noordhuis [Mon, 24 Dec 2012 15:00:24 +0000 (16:00 +0100)]
openssl: clean up openssl.gyp
Remove obsolete build configuration that escaped the purge in 7eaea7f.
Maciej Małecki [Fri, 21 Dec 2012 01:56:47 +0000 (02:56 +0100)]
build: allow to specify custom tags
When building custom `node` versions (e.g., floating features/fixes from
different versions) it's often useful to specify a custom tag which
easily identifies build when invoking `node -v`.
Introduce a way to specify this tag in `node_version.h` file or by
running `./configure --tag="<tag>"`. Insert it right after the patch
version (and before `-pre`, if build is not a release).
Closes #4452.
isaacs [Fri, 21 Dec 2012 20:37:39 +0000 (12:37 -0800)]
blog: Post about v0.9.4
isaacs [Fri, 21 Dec 2012 20:36:34 +0000 (12:36 -0800)]
Now working on 0.9.5
isaacs [Fri, 21 Dec 2012 20:36:04 +0000 (12:36 -0800)]
Merge branch 'v0.9.4-release'
isaacs [Fri, 21 Dec 2012 19:27:11 +0000 (11:27 -0800)]
2012.12.21, Version 0.9.4 (Unstable)
* streams: Update all streaming interfaces to use new classes (isaacs)
* node: remove idle gc (Ben Noordhuis)
* http: protect against response splitting attacks (Bert Belder)
* fs: Raise error when null bytes detected in paths (isaacs)
* fs: fix 'object is not a function' callback errors (Ben Noordhuis)
* fs: add autoClose=true option to fs.createReadStream (Farid Neshat)
* process: add getgroups(), setgroups(), initgroups() (Ben Noordhuis)
* openssl: optimized asm code on x86 and x64 (Bert Belder)
* crypto: fix leak in GetPeerCertificate (Fedor Indutny)
* add systemtap support (Jan Wynholds)
* windows: add ETW and PerfCounters support (Scott Blomquist)
* windows: fix normalization of UNC paths (Bert Belder)
* crypto: fix ssl error handling (Sergey Kholodilov)
* node: remove eio-emul.h (Ben Noordhuis)
* os: add os.endianness() function (Nathan Rajlich)
* readline: don't emit "line" events with a trailing 'n' char (Nathan Rajlich)
* build: add configure option to generate xcode build files (Timothy J Fontaine)
* build: allow linking against system libuv, cares, http_parser (Stephen Gallagher)
* typed arrays: add slice() support to ArrayBuffer (Anthony Pesch)
* debugger: exit and kill child on SIGTERM or SIGHUP (Fedor Indutny)
* url: url.format escapes delimiters in path and query (J. Lee Coltrane)
Nathan Rajlich [Fri, 21 Dec 2012 19:42:40 +0000 (11:42 -0800)]
repl: don't touch `require.cache`
Fixes #3226.
Consider a production server that uses a REPL to debug. Creating the instance
would wipe out the global cache of modules, and subsequent "require" calls in
the server would be reloaded from disk. The REPL should observe only, without
altering, its environment.
isaacs [Fri, 21 Dec 2012 19:32:18 +0000 (11:32 -0800)]
doc: Nudge formatting to make json generator happy
Starting a line with `**bold**` text makes it think that it's a link,
and get confused.
This should really be fixed properly in the doc generator, but for now,
it's not a major issue. It's probably just a matter of updating marked.
isaacs [Fri, 21 Dec 2012 19:08:32 +0000 (11:08 -0800)]
Merge remote-tracking branch 'ry/v0.8'
Scott Blomquist [Fri, 21 Dec 2012 08:06:21 +0000 (00:06 -0800)]
Ease building with VS Express by checking in generated files.
isaacs [Fri, 21 Dec 2012 02:08:40 +0000 (02:08 +0000)]
stdio: Do not read from stdout/err
This fixes windows stdio pipes in streams2 land.
isaacs [Fri, 21 Dec 2012 16:59:20 +0000 (16:59 +0000)]
test: Fix simple/test-http-localaddress
isaacs [Fri, 21 Dec 2012 16:51:43 +0000 (16:51 +0000)]
lint
isaacs [Fri, 21 Dec 2012 16:48:32 +0000 (16:48 +0000)]
http: Trivial fix for comments and 'this.read'
isaacs [Fri, 21 Dec 2012 16:42:29 +0000 (16:42 +0000)]
npm: upgrade to 1.1.70
isaacs [Fri, 21 Dec 2012 00:46:40 +0000 (00:46 +0000)]
blog: More streams2 wordsmithing
isaacs [Fri, 21 Dec 2012 00:08:50 +0000 (00:08 +0000)]
blog: Update blog post re streams2
isaacs [Wed, 19 Dec 2012 23:27:21 +0000 (15:27 -0800)]
benchmark: Set ephemeral ports properly on sunos
isaacs [Wed, 19 Dec 2012 17:19:06 +0000 (09:19 -0800)]
benchmark: Make http.sh more useful
isaacs [Wed, 19 Dec 2012 02:50:07 +0000 (18:50 -0800)]
benchmark: Support names in http-flamegraph
isaacs [Wed, 19 Dec 2012 02:49:42 +0000 (18:49 -0800)]
streams: Speed up by doing less work in the state ctors
isaacs [Wed, 19 Dec 2012 02:49:09 +0000 (18:49 -0800)]
http: use IncomingMessage._dump() instead of resume()
isaacs [Tue, 18 Dec 2012 22:44:32 +0000 (14:44 -0800)]
benchmark: Improve http-flamegraph
Bert Belder [Wed, 19 Dec 2012 16:13:07 +0000 (17:13 +0100)]
openssl: enable optimized asm code on x86 and x64
Bert Belder [Wed, 19 Dec 2012 16:08:16 +0000 (17:08 +0100)]
openssl: regenerate asm files for openssl 1.0.1
Bert Belder [Wed, 19 Dec 2012 16:13:46 +0000 (17:13 +0100)]
openssl: update makefile for asm files to work with openssl 1.0.1
Bert Belder [Fri, 21 Sep 2012 16:07:08 +0000 (18:07 +0200)]
openssl: disable HT sidechannel attack mitigation
It used to be off before. It's extremely unlikely that such an attack
would be a viable attack against node. And it makes AES much slower.
Bert Belder [Wed, 12 Sep 2012 23:11:06 +0000 (01:11 +0200)]
openssl: revert empty_OPENSSL_cpuid_setup.patch
Bert Belder [Wed, 12 Sep 2012 23:03:50 +0000 (01:03 +0200)]
openssl: make perlasm target pentium or newer for masm outputs
When perlasm generates MASM code it sets the assembler target to 468.
In this mode MASM refuses to assemble a couple of instructions. Bumping
the target to 686 solves this problem.
Bert Belder [Tue, 25 Sep 2012 01:57:11 +0000 (03:57 +0200)]
openssl: clean up and merge configuration files
This patch brings the openssl library that is built with gyp closer
to what the standard build system produces.
All opensslconf.h versions are now merged into a single file, which
makes it easier for compiled addons to locate this file.
Ben Noordhuis [Thu, 20 Dec 2012 13:02:38 +0000 (14:02 +0100)]
bench: report stats in benchmark/net-pipe
Ben Noordhuis [Thu, 20 Dec 2012 11:39:04 +0000 (12:39 +0100)]
Merge remote-tracking branch 'origin/v0.8'
Ben Noordhuis [Wed, 19 Dec 2012 11:35:07 +0000 (12:35 +0100)]
http: pack response body buffer in first tcp packet
Apply the same optimization to res.end(buf) that is applied to res.end(str).
Speeds up `node benchmark/http_simple_auto -k -c 1 -n 25000 buffer/1`
(non-chunked response body) by about 750x. That's not a typo.
Chunked responses:
$ cat tmp/http-chunked-client.js
// Run `node benchmark/http_simple` in another terminal.
var http = require('http'), url = require('url');
var options = url.parse('http://127.0.0.1:8000/buffer/1/1');
options.agent = new http.Agent({ maxSockets: 1 });
for (var i = 0; i < 25000; ++i) http.get(options);
Before:
$ time out/Release/node tmp/http-chunked-client.js
real 16m40.411s
user 0m9.184s
sys 0m0.604s
After:
$ time out/Release/node tmp/http-chunked-client.js
real 0m5.386s
user 0m2.768s
sys 0m0.728s
That's still a 185x speed-up.
Fixes #4415.
Ben Noordhuis [Wed, 19 Dec 2012 13:09:10 +0000 (14:09 +0100)]
bench: use res.end() for chunked encoding
Use res.end() for the final chunk so we can benchmark the 'hot path' shortcut
in lib/http.js that packs the headers and the body into a single packet.
Farid Neshat [Mon, 17 Dec 2012 15:03:19 +0000 (23:03 +0800)]
fs: add autoClose=true option to fs.createReadStream
isaacs [Wed, 19 Dec 2012 17:04:08 +0000 (09:04 -0800)]
streams2: Process write buffer in a loop, not recursively
This fixes pummel/test-net-write-callbacks
isaacs [Wed, 19 Dec 2012 16:57:49 +0000 (08:57 -0800)]
net: Properly read buffer in Socket.bytesWritten
isaacs [Wed, 19 Dec 2012 16:57:05 +0000 (08:57 -0800)]
test-pummel: Add call validation in net-write-callbacks
isaacs [Wed, 19 Dec 2012 16:56:24 +0000 (08:56 -0800)]
test: 2 resume() calls needed to flush streams
Timothy J Fontaine [Wed, 19 Dec 2012 04:10:17 +0000 (23:10 -0500)]
test: add TAP output to the test runner
isaacs [Tue, 18 Dec 2012 19:56:53 +0000 (11:56 -0800)]
benchmark: Add http-flamegraph
This is very similar to http.sh, but generates a flamegraph
with dtrace, pruning off the single-hit stacks so that we can
more easily see the places where relevant amounts of time are
spent.
isaacs [Tue, 18 Dec 2012 16:43:45 +0000 (08:43 -0800)]
blog: post about streams2 feature
Ben Noordhuis [Tue, 18 Dec 2012 06:20:39 +0000 (07:20 +0100)]
node: remove idle gc
Remove the idle garbage collector. Its purpose was to run the garbage collector
when the application is idle but it never worked quite right. Many people have
complained over the years that with heaps > 128 MB, a node.js process never
sleeps anymore; instead, it spends nearly 100% of its CPU time trying to
collect garbage.
Back in the old days, idle GC probably was a good idea. But with V8's current
incremental collector, idle gc appears to offer no time or space benefits
whatsoever and indeed seems actively harmful. Remove it.
Fixes #3870.
Ben Noordhuis [Tue, 18 Dec 2012 08:56:57 +0000 (09:56 +0100)]
node: s/-/_/ in add-on symbol name
Replace dashes with underscores. When loading foo-bar.node, look for
foo_bar_module, not foo-bar_module. The latter is not a legal symbol name.
Ben Noordhuis [Tue, 18 Dec 2012 14:45:33 +0000 (15:45 +0100)]
deps: upgrade libuv to dc559a5
Fedor Indutny [Tue, 18 Dec 2012 10:14:38 +0000 (14:14 +0400)]
deps: upgrade libuv to b86ed94
isaacs [Sun, 16 Dec 2012 20:47:01 +0000 (12:47 -0800)]
net: Handle sync writable streams synchronously
This fixes the case where stderr doesn't flush before the process exits.
isaacs [Mon, 17 Dec 2012 16:45:21 +0000 (08:45 -0800)]
Revert "buffer: allocate memory with mmap()"
Also Revert "buffer: use MAP_ANON, fix OS X build"
This reverts commit
ddb15603e74e9aa865f3e1099dc2cc5886f9c46e.
This reverts commit
2433ec8276838e90136669d5b1215ba597f15fdd.
Dean McNamee [Fri, 7 Dec 2012 21:02:11 +0000 (22:02 +0100)]
typed arrays: fix missing type in SizeOfArrayElementForType()
When Mikael Bourges-Sevenier added support for Uint8ClampedArray in 67fc1da,
the new type was not added to SizeOfArrayElementForType().
Dean McNamee [Fri, 7 Dec 2012 20:59:48 +0000 (21:59 +0100)]
typed arrays: re-export SizeOfArrayElementForType()
Although it is not used externally by node, it is needed by upstream and Plask.
This effectively reverts:
commit
1444801374bafb9a467a7ddeb214a9f92b311b80
Author: Aaron Jacobs <jacobsa@google.com>
Date: Thu Mar 15 13:26:35 2012 +1100
typed arrays: unexport SizeOfArrayElementForType()
It isn't used anywhere else, so made it an implementation detail in
v8_typed_array.cc.
Nicolas Chambrier [Mon, 17 Dec 2012 15:53:52 +0000 (16:53 +0100)]
doc: add Google+ French community