Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-497

update copyright (and licence) prior to release of 1.9

Details

    • New Feature
    • Status: Closed
    • Minor
    • Resolution: Invalid
    • None
    • None
    • None
    • None

    Description

      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

      Attachments

        Activity

          People

            Unassigned Unassigned
            hossman Chris M. Hostetter
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: