You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2005/02/26 18:31:51 UTC

svn commit: r155553 - in incubator/lucene4c/trunk: include/ src/cmdline/ src/document/ src/index/ src/search/ src/store/ src/util/ test/ test/index/ test/search/ test/store/ test/util/

Author: rooneg
Date: Sat Feb 26 09:31:41 2005
New Revision: 155553

URL: http://svn.apache.org/viewcvs?view=rev&rev=155553
Log:
Update copyright headers to ASF copyright.

* test/lcn_tests.c,
  test/lcn_tests.h,
  test/search/scorer_test.c,
  test/index/fieldinfos_test.c,
  test/index/segment_test.c,
  test/index/segments_test.c,
  test/index/terminfos_test.c,
  test/index/index_test.c,
  test/index/frequencies_test.c,
  test/index/fielddata_test.c,
  test/store/istream_test.c,
  test/store/directory_test.c,
  test/util/string_test.c,
  include/lcn_scorer.c,
  include/lcn_segment.c,
  include/lcn_types.c,
  include/lcn_istream.c,
  include/lcn_directory.c,
  include/lcn_query.c,
  include/lcn_terminfos.c,
  include/lcn_term.c,
  include/lcn_index.c,
  include/lcn_api.c,
  include/lcn_frequencies.c,
  include/lcn_fielddata.c,
  include/lcn_document.c,
  include/lcn_fieldinfos.c,
  include/lcn_field.c,
  include/lcn_segments.c,
  src/search/query.c,
  src/search/scorer.c,
  src/index/fieldinfos.c,
  src/index/segment.c,
  src/index/segments.c,
  src/index/terminfos.c,
  src/index/term.c,
  src/index/index.c,
  src/index/frequencies.c,
  src/index/fielddata.c,
  src/cmdline/main.c,
  src/store/directory.c,
  src/store/istream.c,
  src/util/string.c,
  src/util/error.c,
  src/util/pools.c,
  src/document/document.c,
  src/document/field.c: Now copyright the ASF.

Modified:
    incubator/lucene4c/trunk/include/lcn_api.h
    incubator/lucene4c/trunk/include/lcn_directory.h
    incubator/lucene4c/trunk/include/lcn_document.h
    incubator/lucene4c/trunk/include/lcn_field.h
    incubator/lucene4c/trunk/include/lcn_fielddata.h
    incubator/lucene4c/trunk/include/lcn_fieldinfos.h
    incubator/lucene4c/trunk/include/lcn_frequencies.h
    incubator/lucene4c/trunk/include/lcn_index.h
    incubator/lucene4c/trunk/include/lcn_istream.h
    incubator/lucene4c/trunk/include/lcn_query.h
    incubator/lucene4c/trunk/include/lcn_scorer.h
    incubator/lucene4c/trunk/include/lcn_segment.h
    incubator/lucene4c/trunk/include/lcn_segments.h
    incubator/lucene4c/trunk/include/lcn_term.h
    incubator/lucene4c/trunk/include/lcn_terminfos.h
    incubator/lucene4c/trunk/include/lcn_types.h
    incubator/lucene4c/trunk/src/cmdline/main.c
    incubator/lucene4c/trunk/src/document/document.c
    incubator/lucene4c/trunk/src/document/field.c
    incubator/lucene4c/trunk/src/index/fielddata.c
    incubator/lucene4c/trunk/src/index/fieldinfos.c
    incubator/lucene4c/trunk/src/index/frequencies.c
    incubator/lucene4c/trunk/src/index/index.c
    incubator/lucene4c/trunk/src/index/segment.c
    incubator/lucene4c/trunk/src/index/segments.c
    incubator/lucene4c/trunk/src/index/term.c
    incubator/lucene4c/trunk/src/index/terminfos.c
    incubator/lucene4c/trunk/src/search/query.c
    incubator/lucene4c/trunk/src/search/scorer.c
    incubator/lucene4c/trunk/src/store/directory.c
    incubator/lucene4c/trunk/src/store/istream.c
    incubator/lucene4c/trunk/src/util/error.c
    incubator/lucene4c/trunk/src/util/pools.c
    incubator/lucene4c/trunk/src/util/string.c
    incubator/lucene4c/trunk/test/index/fielddata_test.c
    incubator/lucene4c/trunk/test/index/fieldinfos_test.c
    incubator/lucene4c/trunk/test/index/frequencies_test.c
    incubator/lucene4c/trunk/test/index/index_test.c
    incubator/lucene4c/trunk/test/index/segment_test.c
    incubator/lucene4c/trunk/test/index/segments_test.c
    incubator/lucene4c/trunk/test/index/terminfos_test.c
    incubator/lucene4c/trunk/test/lcn_tests.c
    incubator/lucene4c/trunk/test/lcn_tests.h
    incubator/lucene4c/trunk/test/search/scorer_test.c
    incubator/lucene4c/trunk/test/store/directory_test.c
    incubator/lucene4c/trunk/test/store/istream_test.c
    incubator/lucene4c/trunk/test/util/string_test.c

Modified: incubator/lucene4c/trunk/include/lcn_api.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_api.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_api.h (original)
+++ incubator/lucene4c/trunk/include/lcn_api.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_directory.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_directory.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_directory.h (original)
+++ incubator/lucene4c/trunk/include/lcn_directory.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_document.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_document.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_document.h (original)
+++ incubator/lucene4c/trunk/include/lcn_document.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_field.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_field.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_field.h (original)
+++ incubator/lucene4c/trunk/include/lcn_field.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_fielddata.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_fielddata.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_fielddata.h (original)
+++ incubator/lucene4c/trunk/include/lcn_fielddata.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_fieldinfos.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_fieldinfos.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_fieldinfos.h (original)
+++ incubator/lucene4c/trunk/include/lcn_fieldinfos.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_frequencies.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_frequencies.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_frequencies.h (original)
+++ incubator/lucene4c/trunk/include/lcn_frequencies.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_index.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_index.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_index.h (original)
+++ incubator/lucene4c/trunk/include/lcn_index.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_istream.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_istream.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_istream.h (original)
+++ incubator/lucene4c/trunk/include/lcn_istream.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_query.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_query.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_query.h (original)
+++ incubator/lucene4c/trunk/include/lcn_query.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_scorer.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_scorer.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_scorer.h (original)
+++ incubator/lucene4c/trunk/include/lcn_scorer.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_segment.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_segment.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_segment.h (original)
+++ incubator/lucene4c/trunk/include/lcn_segment.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_segments.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_segments.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_segments.h (original)
+++ incubator/lucene4c/trunk/include/lcn_segments.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_term.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_term.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_term.h (original)
+++ incubator/lucene4c/trunk/include/lcn_term.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_terminfos.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_terminfos.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_terminfos.h (original)
+++ incubator/lucene4c/trunk/include/lcn_terminfos.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/include/lcn_types.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/include/lcn_types.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/include/lcn_types.h (original)
+++ incubator/lucene4c/trunk/include/lcn_types.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/cmdline/main.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/cmdline/main.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/cmdline/main.c (original)
+++ incubator/lucene4c/trunk/src/cmdline/main.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/document/document.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/document/document.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/document/document.c (original)
+++ incubator/lucene4c/trunk/src/document/document.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/document/field.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/document/field.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/document/field.c (original)
+++ incubator/lucene4c/trunk/src/document/field.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/fielddata.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/fielddata.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/fielddata.c (original)
+++ incubator/lucene4c/trunk/src/index/fielddata.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/fieldinfos.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/fieldinfos.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/fieldinfos.c (original)
+++ incubator/lucene4c/trunk/src/index/fieldinfos.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/frequencies.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/frequencies.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/frequencies.c (original)
+++ incubator/lucene4c/trunk/src/index/frequencies.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/index.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/index.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/index.c (original)
+++ incubator/lucene4c/trunk/src/index/index.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/segment.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/segment.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/segment.c (original)
+++ incubator/lucene4c/trunk/src/index/segment.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/segments.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/segments.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/segments.c (original)
+++ incubator/lucene4c/trunk/src/index/segments.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/term.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/term.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/term.c (original)
+++ incubator/lucene4c/trunk/src/index/term.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/index/terminfos.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/index/terminfos.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/index/terminfos.c (original)
+++ incubator/lucene4c/trunk/src/index/terminfos.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/search/query.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/search/query.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/search/query.c (original)
+++ incubator/lucene4c/trunk/src/search/query.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/search/scorer.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/search/scorer.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/search/scorer.c (original)
+++ incubator/lucene4c/trunk/src/search/scorer.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/store/directory.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/store/directory.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/store/directory.c (original)
+++ incubator/lucene4c/trunk/src/store/directory.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/store/istream.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/store/istream.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/store/istream.c (original)
+++ incubator/lucene4c/trunk/src/store/istream.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/util/error.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/util/error.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/util/error.c (original)
+++ incubator/lucene4c/trunk/src/util/error.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/util/pools.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/util/pools.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/util/pools.c (original)
+++ incubator/lucene4c/trunk/src/util/pools.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/src/util/string.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/src/util/string.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/src/util/string.c (original)
+++ incubator/lucene4c/trunk/src/util/string.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/index/fielddata_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/index/fielddata_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/index/fielddata_test.c (original)
+++ incubator/lucene4c/trunk/test/index/fielddata_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/index/fieldinfos_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/index/fieldinfos_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/index/fieldinfos_test.c (original)
+++ incubator/lucene4c/trunk/test/index/fieldinfos_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/index/frequencies_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/index/frequencies_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/index/frequencies_test.c (original)
+++ incubator/lucene4c/trunk/test/index/frequencies_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/index/index_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/index/index_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/index/index_test.c (original)
+++ incubator/lucene4c/trunk/test/index/index_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/index/segment_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/index/segment_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/index/segment_test.c (original)
+++ incubator/lucene4c/trunk/test/index/segment_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/index/segments_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/index/segments_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/index/segments_test.c (original)
+++ incubator/lucene4c/trunk/test/index/segments_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/index/terminfos_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/index/terminfos_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/index/terminfos_test.c (original)
+++ incubator/lucene4c/trunk/test/index/terminfos_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/lcn_tests.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/lcn_tests.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/lcn_tests.c (original)
+++ incubator/lucene4c/trunk/test/lcn_tests.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/lcn_tests.h
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/lcn_tests.h?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/lcn_tests.h (original)
+++ incubator/lucene4c/trunk/test/lcn_tests.h Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/search/scorer_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/search/scorer_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/search/scorer_test.c (original)
+++ incubator/lucene4c/trunk/test/search/scorer_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/store/directory_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/store/directory_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/store/directory_test.c (original)
+++ incubator/lucene4c/trunk/test/store/directory_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/store/istream_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/store/istream_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/store/istream_test.c (original)
+++ incubator/lucene4c/trunk/test/store/istream_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: incubator/lucene4c/trunk/test/util/string_test.c
URL: http://svn.apache.org/viewcvs/incubator/lucene4c/trunk/test/util/string_test.c?view=diff&r1=155552&r2=155553
==============================================================================
--- incubator/lucene4c/trunk/test/util/string_test.c (original)
+++ incubator/lucene4c/trunk/test/util/string_test.c Sat Feb 26 09:31:41 2005
@@ -1,4 +1,5 @@
-/* Copyright 2004-2005 Garrett Rooney
+/* Copyright 2005 The Apache Software Foundation or its licensors, as
+ * applicable.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.