[#44776] [ruby-trunk - Bug #6385][Open] mtime vie File.stat(filename).utime vs File.open(filename, 'r').mtime in Windows — "kolmanv (Kolman Vornovitsky)" <kolmanv@...>

9 messages 2012/05/01

[#44782] [ruby-trunk - Bug #6387][Open] 1.9.3p194 crashed on require in ubuntu — "ywen (Yi Wen)" <hayafirst@...>

12 messages 2012/05/01

[#44795] [ruby-trunk - Bug #6391][Open] Segment Fault while execute make_encmake.rb for Ruby 1.9.3 P194 ( MinGW64) — "raylinn@... (ray linn)" <raylinn@...>

13 messages 2012/05/02

[#44911] [ruby-trunk - Bug #6408][Open] DelegateClass#eql? and <=> don't work as expected — "tenderlovemaking (Aaron Patterson)" <aaron@...>

11 messages 2012/05/06

[#44951] [ruby-trunk - Feature #6414][Open] Destructuring Assignment — "edtsech (Edward Tsech)" <edtsech@...>

14 messages 2012/05/08

[#44958] [ruby-trunk - Feature #6418][Assigned] Supporing a subset of ANSI escape code on Windows — "usa (Usaku NAKAMURA)" <usa@...>

11 messages 2012/05/09

[#45035] [ruby-trunk - Bug #6433][Open] rb_thread_blocking_region(): ubf() function is executed with GVL — ibc (Iñaki Baz Castillo) <ibc@...>

12 messages 2012/05/14

[#45180] [ruby-trunk - Feature #6478][Open] BasicObject#__class__ — "trans (Thomas Sawyer)" <transfire@...>

14 messages 2012/05/22

[#45193] [ruby-trunk - Feature #6482][Open] Add URI requested to Net::HTTP request and response objects — "drbrain (Eric Hodel)" <[email protected]>

16 messages 2012/05/23

[#45198] [ruby-trunk - Feature #6483][Open] parametric map — "prijutme4ty (Ilya Vorontsov)" <prijutme4ty@...>

14 messages 2012/05/23

[#45222] [ruby-trunk - Feature #6492][Open] Inflate all HTTP Content-Encoding: deflate, gzip, x-gzip responses by default — "drbrain (Eric Hodel)" <[email protected]>

23 messages 2012/05/24

[#45252] [ruby-trunk - Feature #6499][Open] Array::zip — "prijutme4ty (Ilya Vorontsov)" <prijutme4ty@...>

14 messages 2012/05/26

[#45272] [ruby-trunk - Feature #6503][Open] Support for the NPN extension to TLS/SSL — "igrigorik (Ilya Grigorik)" <ilya@...>

13 messages 2012/05/27

[#45316] [ruby-trunk - Feature #6515][Open] array.c: added method that verifies if an Array is part of another — "lellisga (Li Ellis Galardo)" <lellisga@...>

14 messages 2012/05/30

[ruby-core:45083] Re: [PATCH] Ruby's port to NativeClient

From: KOSAKI Motohiro <kosaki.motohiro@...>
Date: 2012-05-16 13:49:53 UTC
List: ruby-core #45083
(5/15/12 11:34 PM), Yuki Yugui Sonoda wrote:
> Hello Matz and rubyists,
>
> Let me greet you from Google.
> Recently I wrote the attached patches:
>
> (1) Fixes --with-static-linked-ext
>
> --with-static-linked-ext configure flag has been broken for years.
> This patch fixes it.
> I'll commit this patch later.
>
>
> (2) Ruby's port to NativeClient
> NativeClient (a.k.a NaCl) is a secure environment for running native
> binaries on browsers.
>   https://developers.google.com/native-client/
>
> This patch is a proof of concept version of porting Ruby to NaCl.
> This patch contains an example version of Ruby interpreter that
> communicates with browsers via Pepper API. You can evaluate
> expressions, require standard libraries and extensions.
> Some features of Ruby, e.g. fork or socket are not available due to
> limitation of NaCl. Some other features are temporarily disabled, e.g.
> threading.
> Unfortunately this port does not yet pass even btest. But it can be fixed later.
>
> I'd like to commit this patch too. May I, Matz?

Hi

I realized you added following claim into some files.

/* Copyright 2012 Google Inc. Some Rights Reserved.
  * Author: [email protected] (Yugui Sonoda)
  */

First off, copyright and author statement is ok to me. AFAIK, Many company require such
things especially if employee use day time (e.g. 20% rule time). But, "Some Right Reserved."
is not so good because it is very unclear. To me, I don't understand which right google dropped.

The right way is, I believe, cut-n-paste full copy of ruby/BSDL statement and replace
first line (i.e. "Copyright (C) 1993-2010 Yukihiro Matsumoto. All rights reserved.") with
following two lines.

Copyright 2012 Google Inc. All Rights Reserved.
Author: [email protected] (Yugui Sonoda)



That's said, google keep _all_ right. and they can redistribute it as an another license. but
we also can use/modify/redistibute by using BSDL right. IOW, you inhibit license change by using
matz license.

Thoughts?



Other ruby folks: comments are welcome.



In This Thread