Sure, the tool should try to catch most of these. $ grep -R 'Sun Micro' . | grep -v "/DTD " | grep -v "XMLSPY" | cut -f1 -d':' | uniq
finds "Sun Microsystems" 351 times on my repo. But I think the same pattern repeats a lot of times, like: # The Original Software is NetBeans. The Initial Developer of the Original # Software is Sun Microsystems, Inc. Portions Copyright 2009-2010 Sun # Microsystems, Inc. All Rights Reserved. --emi On Wed, Sep 27, 2017 at 6:00 PM, Geertjan Wielenga <[email protected]> wrote: > Yes, those can be relicensed, but I'd suggest we (Jan?) > investigate/incorporate that pattern into the tool ( > https://github.com/apache/incubator-netbeans-tools) so we can automate this > in order to (1) catch as many as possible at the same time and (2) avoid > error-prone and unnecessary manual changes. > > Gj > > On Wed, Sep 27, 2017 at 4:57 PM, Emilian Bold <[email protected]> > wrote: > >> Hello, >> >> I see some headers (like [1]) with the usual Oracle copyright >> >> > Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. >> >> but some contributors listed as: >> >> > * The Original Software is NetBeans. >> > * Portions Copyrighted 2007 Sun Microsystems, Inc. >> >> Since I'm assuming there was a proper NetBeans -> Sun Microsystems -> >> Oracle IP transfer, we are clear to replace such headers, no? >> >> 1. >> https://github.com/apache/incubator-netbeans/blob/ >> master/openide.text/src/org/openide/text/CloneableEditorSupportRedirect >> or.java >> >> --emi >>
