From java-dev-return-12826-apmail-lucene-java-dev-archive=lucene.apache.org@lucene.apache.org Wed Feb 15 04:46:34 2006 Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 75759 invoked from network); 15 Feb 2006 04:46:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Feb 2006 04:46:33 -0000 Received: (qmail 21936 invoked by uid 500); 15 Feb 2006 04:46:32 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 21381 invoked by uid 500); 15 Feb 2006 04:46:30 -0000 Mailing-List: contact java-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-dev@lucene.apache.org Received: (qmail 21370 invoked by uid 99); 15 Feb 2006 04:46:30 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2006 20:46:30 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 1DE9EDC for ; Wed, 15 Feb 2006 05:46:09 +0100 (CET) Message-ID: <1332453527.1139978769090.JavaMail.jira@ajax.apache.org> Date: Wed, 15 Feb 2006 05:46:09 +0100 (CET) From: "Yonik Seeley (JIRA)" To: java-dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-497) update copyright (and licence) prior to release of 1.9 In-Reply-To: <816288269.1139972951991.JavaMail.jira@ajax.apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/LUCENE-497?page=comments#action_12366435 ] Yonik Seeley commented on LUCENE-497: ------------------------------------- IANAL, but I don't think the copyright dates should be changed unless a significant amount of the file has changed. The date in the copyright is the date of first publication. Copyrights have a limited duration, and changing the copyright date doesn't extend the date they expire. They last long enough (75 years?) that we shouldn't be worried though. You don't even need a copyright statement for the work to be copyrighted, but we should have them anyway to prevent the "innocent infringement" defence, and because the ASF probably wants them. > update copyright (and licence) prior to release of 1.9 > ------------------------------------------------------ > > Key: LUCENE-497 > URL: http://issues.apache.org/jira/browse/LUCENE-497 > Project: Lucene - Java > Type: New Feature > Reporter: Hoss Man > Priority: Minor > > As discussed in email earlier today, it wouldn't hurt to update the Copyright on all of the source files before release 1.9. > Rather then try to submit a path with all the changes, here's a oneliner that should work on any unix box to update in mass. If it sees a Copyright string it recognizes, it preserves the start year and adds/replaces the end year... > find -name \*.java | xargs perl -pi -e 's/Copyright (\(c\) )?(200[0-5])(-\d+)? (The )?Apache Software Foundation/Copyright ${2}-2006 The Apache Software Foundation/;' > ...it would make sense for someone with commit permissions to run that themselves. > It also cleans up a few that have a " (c) " in them that doesn't seem standard across the rest of the files, and makes sure that the ASF is refered to as "The" ASF. > Even after all that, there are a few that may need cleaned up by hand... > ./src/test/org/apache/lucene/store/TestLock.java: * Copyright (c) 2001,2004 The Apache Software Foundation. All rights > ./src/test-deprecated/org/apache/lucene/index/DocHelper.java: * Copyright 2004. Center For Natural Language Processing > ./contrib/analyzers/src/java/org/apache/lucene/analysis/cn/ChineseAnalyzer.java: * Copyright: Copyright (c) 2001 > ./contrib/analyzers/src/java/org/apache/lucene/analysis/cn/ChineseFilter.java: * Copyright: Copyright (c) 2001 > ./contrib/analyzers/src/java/org/apache/lucene/analysis/cn/ChineseTokenizer.java: * Copyright: Copyright (c) 2001 > ...the first is just an anoying format, the rest either have non ASF copyrights, or dual copyrights (!?) > It also may be a good time to take a look at all the (non-JavaCC generated) java files that don't mention the Apache License, Version 2.0 ... > @asimov:~/svn/lucene/java$ find src -name \*.java | xargs grep -L "Generated By:JavaCC" | xargs grep -L LICENSE-2.0 > src/java/org/apache/lucene/search/SortComparatorSource.java > src/java/org/apache/lucene/search/SortComparator.java > src/test/org/apache/lucene/index/TestTermVectorsReader.java > src/test/org/apache/lucene/index/TestSegmentTermEnum.java > src/test/org/apache/lucene/index/TestFieldInfos.java > src/test/org/apache/lucene/index/TestIndexWriter.java > src/test/org/apache/lucene/store/TestLock.java > src/test/org/apache/lucene/store/_TestHelper.java > src/test/org/apache/lucene/search/TestRangeQuery.java > src/test/org/apache/lucene/TestHitIterator.java > src/test/org/apache/lucene/document/TestBigBinary.java > src/test/org/apache/lucene/analysis/TestISOLatin1AccentFilter.java > src/test-deprecated/org/apache/lucene/index/TestTermVectorsReader.java > src/test-deprecated/org/apache/lucene/index/store/FSDirectoryTestCase.java > src/test-deprecated/org/apache/lucene/index/TestSegmentTermEnum.java > src/test-deprecated/org/apache/lucene/index/DocHelper.java > src/test-deprecated/org/apache/lucene/index/TestIndexWriter.java > src/test-deprecated/org/apache/lucene/search/TestRangeQuery.java -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org