diff --git a/pyproject.toml b/pyproject.toml
index f2371c6bb2b..8b7f4679cba 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -272,6 +272,7 @@ facet = "summarycode.facet:AddFacet"
info = "scancode.plugin_info:InfoScanner"
licenses = "licensedcode.plugin_license:LicenseScanner"
copyrights = "cluecode.plugin_copyright:CopyrightScanner"
+allrights = "cluecode.plugin_allrights:AllrightsCopyrightScanner"
packages = "packagedcode.plugin_package:PackageScanner"
emails = "cluecode.plugin_email:EmailScanner"
urls = "cluecode.plugin_url:UrlScanner"
diff --git a/src/cluecode/copyrights.py b/src/cluecode/copyrights.py
index 6d17467acf6..4faeb6e68a1 100644
--- a/src/cluecode/copyrights.py
+++ b/src/cluecode/copyrights.py
@@ -336,20 +336,25 @@ def detect(self,
tree_node_label = tree_node.label
if (include_copyrights or include_holders) and 'COPYRIGHT' in tree_node_label:
- copyrght = build_detection_from_node(
+ if include_copyright_allrights:
+ refiner = refine_allrights
+ else:
+ refiner = refine_copyright
+
+ copyright = build_detection_from_node(
node=tree_node,
cls=CopyrightDetection,
ignored_labels=non_copyright_labels,
include_copyright_allrights=include_copyright_allrights,
- refiner=refine_copyright,
+ refiner=refiner,
)
if TRACE or TRACE_DEEP:
- logger_debug(f'CopyrightDetector: final copyright: {copyrght}')
+ logger_debug(f'CopyrightDetector: final copyright: {copyright}')
- if copyrght:
+ if copyright:
if include_copyrights:
- yield copyrght
+ yield copyright
if include_holders:
# By default we strip email and urls from holders ....
@@ -3562,6 +3567,31 @@ def refine_copyright(c):
return c.strip()
+def refine_allrights(c):
+ """
+ Refine a detected copyright string.
+ FIXME: the grammar should not allow this to happen.
+ """
+ if not c:
+ return
+ c = ' '.join(c.split())
+ c = strip_some_punct(c)
+ c = strip_solo_quotes(c)
+ # this catches trailing slashes in URL for consistency
+ c = c.strip('/ ~')
+ c = strip_all_unbalanced_parens(c)
+ c = remove_some_extra_words_and_punct(c)
+ c = ' '.join(c.split())
+ c = remove_dupe_copyright_words(c)
+ c = strip_prefixes(c, prefixes=set(['by', 'c']))
+ c = c.strip()
+ c = c.strip('+')
+ c = strip_balanced_edge_parens(c)
+ c = strip_suffixes(c, suffixes=COPYRIGHTS_SUFFIXES)
+ c = c.strip("'")
+ return c.strip()
+
+
def remove_dupe_holder(h):
"""
Remove duplicated holders
@@ -4452,7 +4482,7 @@ def collect_candidate_lines(numbered_lines):
remove_weird_comment_markers = re.compile(r'^(rem|\@rem|dnl)\s+').sub
# common comment line prefix in man pages
-remove_man_comment_markers = re.compile(r'\."').sub
+remove_man_comment_markers = re.compile(r'^\.\\"').sub
def remove_code_comment_markers(s):
diff --git a/src/cluecode/plugin_allrights.py b/src/cluecode/plugin_allrights.py
new file mode 100644
index 00000000000..2bb8ee3d1f7
--- /dev/null
+++ b/src/cluecode/plugin_allrights.py
@@ -0,0 +1,61 @@
+#
+# This code is heavily inspired by original code from ScanCode Toolkit.
+# The copyright header is therefore propagated. The content is primarily
+# taken from following packages in the ScanCode Toolkit:
+# - cluecode.plugin_copyright
+# - scancode.api
+#
+# Copyright (c) nexB Inc. and others. All rights reserved.
+# ScanCode is a trademark of nexB Inc.
+# SPDX-License-Identifier: Apache-2.0
+# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
+# See https://github.com/nexB/scancode-toolkit for support or download.
+# See https://aboutcode.org for more information about nexB OSS projects.
+#
+
+import attr
+from plugincode.scan import ScanPlugin
+from plugincode.scan import scan_impl
+
+from commoncode.cliutils import PluggableCommandLineOption
+from commoncode.cliutils import SCAN_GROUP
+
+
+@scan_impl
+class AllrightsCopyrightScanner(ScanPlugin):
+ """Scan a Resource for copyrights with all rights reserved. This class is an adapted version of
+ scancodes cluecode.plugin_copyright.
+ """
+
+ resource_attributes = dict(
+ [
+ ("copyrights", attr.ib(default=attr.Factory(list))),
+ ("holders", attr.ib(default=attr.Factory(list))),
+ ("authors", attr.ib(default=attr.Factory(list))),
+ ]
+ )
+
+ run_order = 6
+ sort_order = 6
+
+ options = [
+ PluggableCommandLineOption(
+ (
+ "-a",
+ "--allrights",
+ ),
+ is_flag=True,
+ default=False,
+ help="Scan for copyrights and all rights reserved.",
+ help_group=SCAN_GROUP,
+ sort_order=50,
+ ),
+ ]
+
+ def is_enabled(self, allrights, **kwargs): # NOQA
+ return allrights
+
+ def get_scanner(self, **kwargs):
+ from scancode.api import allrights_scanner
+ return allrights_scanner
+
diff --git a/src/scancode/api.py b/src/scancode/api.py
index 71382f4a6a0..433f1d35808 100644
--- a/src/scancode/api.py
+++ b/src/scancode/api.py
@@ -6,16 +6,17 @@
# See https://github.com/nexB/scancode-toolkit for support or download.
# See https://aboutcode.org for more information about nexB OSS projects.
#
-from itertools import islice
-from os.path import getsize
import logging
import os
import sys
+from itertools import islice
+from os.path import getsize
+
+from typecode.contenttype import get_type
from commoncode.filetype import get_last_modified_date
from commoncode.hash import multi_checksums
from scancode import ScancodeError
-from typecode.contenttype import get_type
TRACE = os.environ.get('SCANCODE_DEBUG_API', False)
@@ -30,6 +31,7 @@ def logger_debug(*args):
logging.basicConfig(stream=sys.stdout)
logger.setLevel(logging.DEBUG)
+
def logger_debug(*args):
return logger.debug(
' '.join(isinstance(a, str) and a or repr(a) for a in args)
@@ -46,9 +48,9 @@ def logger_debug(*args):
def get_copyrights(
- location,
- deadline=sys.maxsize,
- **kwargs,
+ location,
+ deadline=sys.maxsize,
+ **kwargs,
):
"""
Return a mapping with a single 'copyrights' key with a value that is a list
@@ -79,12 +81,45 @@ def get_copyrights(
return results
+def allrights_scanner(
+ location,
+ deadline=sys.maxsize,
+ **kwargs,
+):
+ """Return a mapping with a single 'copyrights' key with a value that is a list
+ of mappings for copyright detected in the file at `location`.
+ Adapted copy of scancodes scancode.api.get_copyrights.
+ """
+ from cluecode.copyrights import detect_copyrights
+ from cluecode.copyrights import Detection
+
+ detections = detect_copyrights(
+ location,
+ include_copyrights=True,
+ include_holders=True,
+ include_authors=True,
+ include_copyright_years=True,
+ include_copyright_allrights=True,
+ deadline=deadline,
+ )
+
+ copyrights, holders, authors = Detection.split(detections, to_dict=True)
+
+ results = dict([
+ ('copyrights', copyrights),
+ ('holders', holders),
+ ('authors', authors),
+ ])
+
+ return results
+
+
def get_emails(
- location,
- threshold=50,
- test_slow_mode=False,
- test_error_mode=False,
- **kwargs,
+ location,
+ threshold=50,
+ test_slow_mode=False,
+ test_error_mode=False,
+ **kwargs,
):
"""
Return a mapping with a single 'emails' key with a value that is a list of
@@ -148,14 +183,14 @@ def get_urls(location, threshold=50, **kwargs):
def get_licenses(
- location,
- min_score=0,
- include_text=False,
- license_text_diagnostics=False,
- license_diagnostics=False,
- deadline=sys.maxsize,
- unknown_licenses=False,
- **kwargs,
+ location,
+ min_score=0,
+ include_text=False,
+ license_text_diagnostics=False,
+ license_diagnostics=False,
+ deadline=sys.maxsize,
+ unknown_licenses=False,
+ **kwargs,
):
"""
Return a mapping or license_detections for licenses detected in the file at
@@ -257,12 +292,12 @@ def get_licenses(
def _get_package_data(
- location,
- application=True,
- system=False,
- compiled=False,
- package_only=False,
- **kwargs
+ location,
+ application=True,
+ system=False,
+ compiled=False,
+ package_only=False,
+ **kwargs
):
"""
Return a mapping of package manifest information detected in the file at ``location``.
@@ -309,12 +344,12 @@ def get_package_info(location, **kwargs):
def get_package_data(
- location,
- application=True,
- system=False,
- compiled=False,
- package_only=False,
- **kwargs
+ location,
+ application=True,
+ system=False,
+ compiled=False,
+ package_only=False,
+ **kwargs
):
"""
Return a mapping of package manifest information detected in the file at
diff --git a/tests/cluecode/cluecode_test_utils.py b/tests/cluecode/cluecode_test_utils.py
index e3b0b4781bf..411852a6019 100644
--- a/tests/cluecode/cluecode_test_utils.py
+++ b/tests/cluecode/cluecode_test_utils.py
@@ -55,6 +55,7 @@ class CopyrightTest(object):
# one of holders, copyrights, authors
what = attr.ib(default=attr.Factory(list))
copyrights = attr.ib(default=attr.Factory(list))
+ allrights = attr.ib(default=attr.Factory(list))
holders = attr.ib(default=attr.Factory(list))
authors = attr.ib(default=attr.Factory(list))
@@ -175,6 +176,7 @@ def make_copyright_test_functions(
index,
test_data_dir=test_env.test_data_dir,
regen=REGEN_TEST_FIXTURES,
+ with_allrights=False,
):
"""
Build and return a test function closing on tests arguments and the function
@@ -188,7 +190,7 @@ def make_copyright_test_functions(
from summarycode.copyright_tallies import tally_persons
def closure_test_function(*args, **kwargs):
- detections = detect_copyrights(test_file)
+ detections = detect_copyrights(test_file, include_copyright_allrights=with_allrights)
copyrights, holders, authors = Detection.split_values(detections)
holders_summary = []
@@ -215,7 +217,12 @@ def closure_test_function(*args, **kwargs):
expected_yaml = test.dumps()
for wht in test.what:
- setattr(test, wht, results.get(wht))
+ # use the fact we are overriding attributes, leave copyrights as is
+ # and add allrights section. This shortcut needs a better solution.
+ if test.allrights and with_allrights and wht == 'copyrights':
+ setattr(test, 'allrights', results.get(wht))
+ else:
+ setattr(test, wht, results.get(wht))
results_yaml = test.dumps()
if regen:
@@ -246,6 +253,7 @@ def build_tests(
clazz,
test_data_dir=test_env.test_data_dir,
regen=REGEN_TEST_FIXTURES,
+ with_allrights=False,
):
"""
Dynamically build test methods from a sequence of CopyrightTest and attach
@@ -263,6 +271,7 @@ def build_tests(
index=i,
test_data_dir=test_data_dir,
regen=actual_regen,
+ with_allrights=with_allrights,
)
# attach that method to our test class
diff --git a/tests/cluecode/data/authors/author-config.rpath.yml b/tests/cluecode/data/authors/author-config.rpath.yml
index 91ed9be1ac8..443ef93cc47 100644
--- a/tests/cluecode/data/authors/author-config.rpath.yml
+++ b/tests/cluecode/data/authors/author-config.rpath.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright 1996-2006 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml b/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml
index 110f6c71b15..f05d3fad3ab 100644
--- a/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml
+++ b/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml
@@ -6,3 +6,6 @@ authors:
authors_summary:
- value: John Doe
count: 1
+allrights:
+ - Copyright 1999 Cornell University. All rights reserved.
+ - Copyright 2000 Jon Doe. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml b/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml
index 2f0bb97ab00..88cbcdf939f 100644
--- a/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml
+++ b/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml
@@ -7,3 +7,5 @@ authors:
authors_summary:
- value: Avinash Kak (kak@purdue.edu)
count: 2
+allrights:
+ - (c) 2008 Avinash Kak. Python Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml b/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml
index 2f0bb97ab00..88cbcdf939f 100644
--- a/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml
+++ b/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml
@@ -7,3 +7,5 @@ authors:
authors_summary:
- value: Avinash Kak (kak@purdue.edu)
count: 2
+allrights:
+ - (c) 2008 Avinash Kak. Python Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml b/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml
index 4d26eb31d0b..f1e90c1a718 100644
--- a/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml
+++ b/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: the University of California, Berkeley and its contributors
count: 1
+allrights:
+ - Copyright (c) 1990 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml b/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml
index a80c0f83d1e..a8e01e70547 100644
--- a/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml
+++ b/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml
@@ -1,3 +1,5 @@
what:
- authors
- authors_summary
+allrights:
+ - (c) Oss http://s.pudn.com/upload_log.asp?e
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_expat-expat_h.h.yml b/tests/cluecode/data/authors/author_expat-expat_h.h.yml
index a80c0f83d1e..da78592f021 100644
--- a/tests/cluecode/data/authors/author_expat-expat_h.h.yml
+++ b/tests/cluecode/data/authors/author_expat-expat_h.h.yml
@@ -1,3 +1,5 @@
what:
- authors
- authors_summary
+allrights:
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml b/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml
index b5a3451c671..7d0e3433ec0 100644
--- a/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml
+++ b/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Gary O'Neall
count: 1
+allrights:
+ - Copyright (c) 2009 Source Auditor Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml b/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml
index 0aa44ce7126..4dc927f0131 100644
--- a/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml
+++ b/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Scott Violet
count: 1
+allrights:
+ - Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_in_java_tag-java.java.yml b/tests/cluecode/data/authors/author_in_java_tag-java.java.yml
index 2f33496e92b..0a2f149a6bd 100644
--- a/tests/cluecode/data/authors/author_in_java_tag-java.java.yml
+++ b/tests/cluecode/data/authors/author_in_java_tag-java.java.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Apple Banana Car
count: 1
+allrights:
+ - Copyright (c) 2000-2007, Sample ABC Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml b/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml
index a80c0f83d1e..0cf5a678989 100644
--- a/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml
+++ b/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml
@@ -1,3 +1,5 @@
what:
- authors
- authors_summary
+allrights:
+ - Copyright 1999 Radical Eye Software
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_none_c-c.c.yml b/tests/cluecode/data/authors/author_none_c-c.c.yml
index a80c0f83d1e..82e2bc0218f 100644
--- a/tests/cluecode/data/authors/author_none_c-c.c.yml
+++ b/tests/cluecode/data/authors/author_none_c-c.c.yml
@@ -1,3 +1,5 @@
what:
- authors
- authors_summary
+allrights:
+ - Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_none_sample_java-java.java.yml b/tests/cluecode/data/authors/author_none_sample_java-java.java.yml
index 01a4c4d3109..37f2b7feb42 100644
--- a/tests/cluecode/data/authors/author_none_sample_java-java.java.yml
+++ b/tests/cluecode/data/authors/author_none_sample_java-java.java.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: not attributable
count: 1
+allrights:
+ - Copyright (c) 2005 Company
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_samplepy-py.py.yml b/tests/cluecode/data/authors/author_samplepy-py.py.yml
index a80c0f83d1e..2560818c1ea 100644
--- a/tests/cluecode/data/authors/author_samplepy-py.py.yml
+++ b/tests/cluecode/data/authors/author_samplepy-py.py.yml
@@ -1,3 +1,5 @@
what:
- authors
- authors_summary
+allrights:
+ - COPYRIGHT 2006 ABC ABC CONFIDENTIAL PROPRIETARY
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml b/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml
index 54a5b04af3d..b80336b07a8 100644
--- a/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml
+++ b/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: faith@dict.org
count: 1
+allrights:
+ - Copyright 2003, 2004 Rickard E. Faith (faith@dict.org)
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml b/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
index 2d7b8301f01..4052e5bd540 100644
--- a/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
+++ b/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
@@ -9,3 +9,5 @@ authors_summary:
count: 1
- value: Scott Violet
count: 1
+allrights:
+ - Copyright 1997, 1998 by Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_uc-LICENSE.yml b/tests/cluecode/data/authors/author_uc-LICENSE.yml
index 41e5fc74e88..fb02e745784 100644
--- a/tests/cluecode/data/authors/author_uc-LICENSE.yml
+++ b/tests/cluecode/data/authors/author_uc-LICENSE.yml
@@ -10,3 +10,8 @@ authors_summary:
count: 2
- value: UC Berkeley and its contributors
count: 1
+allrights:
+ - copyrighted by The Regents of the University of California.
+ - Copyright 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved.
+ - copyright C 1988 by the Institute of Electrical and Electronics Engineers, Inc.
+ - copyright of UC Berkeley's Berkeley Software
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml b/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml
index f4e3648a3a8..9d57c28f508 100644
--- a/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml
+++ b/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml
@@ -12,3 +12,6 @@ authors_summary:
count: 1
- value: Simon Leinen (simon@switch.ch)
count: 1
+allrights:
+ - Copyright 1988, 1989 by Carnegie Mellon University
+ - Copyright 1989 TGV, Incorporated
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/configure.yml b/tests/cluecode/data/authors/configure.yml
index 91ed9be1ac8..90cd1a05e29 100644
--- a/tests/cluecode/data/authors/configure.yml
+++ b/tests/cluecode/data/authors/configure.yml
@@ -6,3 +6,9 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright (c) 2003 Free Software Foundation, Inc.
+ - Copyright (c) 2003 Free Software Foundation, Inc.
+ - Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
+ - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ - Copyright (c) 2003 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/device_tree.c.yml b/tests/cluecode/data/authors/device_tree.c.yml
index e01d2901a36..41222df5d85 100644
--- a/tests/cluecode/data/authors/device_tree.c.yml
+++ b/tests/cluecode/data/authors/device_tree.c.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Jerone Young Hollis Blanchard
count: 1
+allrights:
+ - Copyright 2008 IBM Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/expat-ltmain.sh.yml b/tests/cluecode/data/authors/expat-ltmain.sh.yml
index 91ed9be1ac8..f38eef2d101 100644
--- a/tests/cluecode/data/authors/expat-ltmain.sh.yml
+++ b/tests/cluecode/data/authors/expat-ltmain.sh.yml
@@ -6,3 +6,6 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
+ - Copyright (c) 2005 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/fixed_bfin.h.yml b/tests/cluecode/data/authors/fixed_bfin.h.yml
index 30a123c5076..2757d6a8a93 100644
--- a/tests/cluecode/data/authors/fixed_bfin.h.yml
+++ b/tests/cluecode/data/authors/fixed_bfin.h.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Jean-Marc Valin
count: 1
+allrights:
+ - Copyright (c) 2005 Analog Devices
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml b/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml
index 8075cdf1787..f132b3b181f 100644
--- a/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml
+++ b/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Anthony Liguori
count: 1
+allrights:
+ - Copyright IBM, Corp. 2007
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml b/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml
index ff70e613da5..26d34f636f9 100644
--- a/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml
+++ b/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Nikos Mavrogiannopoulos
count: 1
+allrights:
+ - Copyright (c) 2000-2012 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/libtool.m4.yml b/tests/cluecode/data/authors/libtool.m4.yml
index 91ed9be1ac8..7ee0b6aa0f7 100644
--- a/tests/cluecode/data/authors/libtool.m4.yml
+++ b/tests/cluecode/data/authors/libtool.m4.yml
@@ -6,3 +6,6 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
+ - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/ltcf-c.sh.yml b/tests/cluecode/data/authors/ltcf-c.sh.yml
index 91ed9be1ac8..57b057e2fd2 100644
--- a/tests/cluecode/data/authors/ltcf-c.sh.yml
+++ b/tests/cluecode/data/authors/ltcf-c.sh.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright (c) 1996-2000, 2001 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/ltcf-cxx.sh.yml b/tests/cluecode/data/authors/ltcf-cxx.sh.yml
index 91ed9be1ac8..fb2e2f115c2 100644
--- a/tests/cluecode/data/authors/ltcf-cxx.sh.yml
+++ b/tests/cluecode/data/authors/ltcf-cxx.sh.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright (c) 1996-1999, 2000, 2001, 2003 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/ltmain.sh.yml b/tests/cluecode/data/authors/ltmain.sh.yml
index 91ed9be1ac8..7cd4e071ee8 100644
--- a/tests/cluecode/data/authors/ltmain.sh.yml
+++ b/tests/cluecode/data/authors/ltmain.sh.yml
@@ -6,3 +6,6 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+ - Copyright (c) 2007 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/mcbsp.h.yml b/tests/cluecode/data/authors/mcbsp.h.yml
index fcf8dd397ba..1863ad596bc 100644
--- a/tests/cluecode/data/authors/mcbsp.h.yml
+++ b/tests/cluecode/data/authors/mcbsp.h.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Steve Johnson
count: 1
+allrights:
+ - Copyright (c) 2002 RidgeRun, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/memory-input-stream.c.yml b/tests/cluecode/data/authors/memory-input-stream.c.yml
index e456e1d64cc..2a4c96aa83f 100644
--- a/tests/cluecode/data/authors/memory-input-stream.c.yml
+++ b/tests/cluecode/data/authors/memory-input-stream.c.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Tim Janik
count: 1
+allrights:
+ - Copyright (c) 2007 Imendio AB
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/strverscmp.c.yml b/tests/cluecode/data/authors/strverscmp.c.yml
index fe8f9225795..545fade8e1b 100644
--- a/tests/cluecode/data/authors/strverscmp.c.yml
+++ b/tests/cluecode/data/authors/strverscmp.c.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Jean-Francois Bignolles
count: 1
+allrights:
+ - Copyright (c) 1997, 2002, 2005 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/strverscmp2.c.yml b/tests/cluecode/data/authors/strverscmp2.c.yml
index fe8f9225795..5847e3bd56a 100644
--- a/tests/cluecode/data/authors/strverscmp2.c.yml
+++ b/tests/cluecode/data/authors/strverscmp2.c.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: Jean-Francois Bignolles
count: 1
+allrights:
+ - Copyright (c) 1997, 2000, 2002, 2004 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml b/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml
index 91ed9be1ac8..e3a9f62957b 100644
--- a/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml
+++ b/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml
@@ -6,3 +6,6 @@ authors:
authors_summary:
- value: Gordon Matzigkeit
count: 1
+allrights:
+ - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+ - Copyright (c) 2008 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/wcstok.c.yml b/tests/cluecode/data/authors/wcstok.c.yml
index 07ffe306409..644a815b5fc 100644
--- a/tests/cluecode/data/authors/wcstok.c.yml
+++ b/tests/cluecode/data/authors/wcstok.c.yml
@@ -6,3 +6,6 @@ authors:
authors_summary:
- value: Wes Peters
count: 1
+allrights:
+ - Copyright (c) 1998 Softweyr LLC. All rights reserved.
+ - Copyright (c) 1988, 1993 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml b/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml
index 26875e2af0c..23b0cc08c5e 100644
--- a/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml
+++ b/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml
@@ -6,3 +6,5 @@ authors:
authors_summary:
- value: bj@open-rnd.pl
count: 1
+allrights:
+ - Copyright (c) 2013, GENIVI Alliance, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata0.yml b/tests/cluecode/data/copyright_fossology/testdata0.yml
index 8cf5731c505..77567e1af38 100644
--- a/tests/cluecode/data/copyright_fossology/testdata0.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata0.yml
@@ -14,3 +14,8 @@ holders:
- Theo de Raadt
authors:
- Tatu Ylonen
+allrights:
+ - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland All rights reserved
+ - Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
+ - Copyright (c) 1999 Aaron Campbell. All rights reserved.
+ - Copyright (c) 1999 Theo de Raadt. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata1.yml b/tests/cluecode/data/copyright_fossology/testdata1.yml
index fad4bea8e49..6e827b24ce2 100644
--- a/tests/cluecode/data/copyright_fossology/testdata1.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata1.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2008, 2009 Matthew Hall and others
holders:
- Matthew Hall and others
+allrights:
+ - Copyright (c) 2008, 2009 Matthew Hall and others. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata10.yml b/tests/cluecode/data/copyright_fossology/testdata10.yml
index dc7ebec7cae..cac4bfde60b 100644
--- a/tests/cluecode/data/copyright_fossology/testdata10.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata10.yml
@@ -6,3 +6,5 @@ copyrights:
- (c) Copyright Microsoft Corporation
holders:
- Microsoft Corporation
+allrights:
+ - (c) Copyright Microsoft Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata100.yml b/tests/cluecode/data/copyright_fossology/testdata100.yml
index a633286b6f5..ca89fcf2bf7 100644
--- a/tests/cluecode/data/copyright_fossology/testdata100.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata100.yml
@@ -20,3 +20,9 @@ authors:
- Benjamin Drieu
- Graham Wilson
- Nico Golde and Hector Garcia
+allrights:
+ - Copyright 1997 by Eric S. Raymond.
+ - copyrighted by Carl E. Harris, 1993 and 1995.
+ - copyright by Andrew Tridgell
+ - Copyright (c) 1996,1997 by George M. Sipe.
+ - Copyright (c) 1997 Doug Muth, Wescosville, Pennsylvania USA All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata109.yml b/tests/cluecode/data/copyright_fossology/testdata109.yml
index 9e625e78fd8..c73540d28bf 100644
--- a/tests/cluecode/data/copyright_fossology/testdata109.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata109.yml
@@ -15,3 +15,7 @@ authors:
- Chris Fearnley
- Ian Murdock
- James Troup
+allrights:
+ - Copyright (c) 1989-2006 Free Software Foundation.
+ - Copyright (c) 1995-1997 Chris Fearnley.
+ - Copyright (c) 1998-2006 James Troup.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata114.yml b/tests/cluecode/data/copyright_fossology/testdata114.yml
index ff9f369f0ef..68fdf564a62 100644
--- a/tests/cluecode/data/copyright_fossology/testdata114.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata114.yml
@@ -10,3 +10,6 @@ holders:
- The NetBSD Foundation, Inc.
authors:
- the NetBSD Foundation, Inc. and its contributors
+allrights:
+ - Copyright (c) 2000, 2001, 2006 Debian.
+ - Copyright (c) 1999 The NetBSD Foundation, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata115.yml b/tests/cluecode/data/copyright_fossology/testdata115.yml
index ff9f369f0ef..68fdf564a62 100644
--- a/tests/cluecode/data/copyright_fossology/testdata115.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata115.yml
@@ -10,3 +10,6 @@ holders:
- The NetBSD Foundation, Inc.
authors:
- the NetBSD Foundation, Inc. and its contributors
+allrights:
+ - Copyright (c) 2000, 2001, 2006 Debian.
+ - Copyright (c) 1999 The NetBSD Foundation, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata118.yml b/tests/cluecode/data/copyright_fossology/testdata118.yml
index 86430175b65..554c04bd7f4 100644
--- a/tests/cluecode/data/copyright_fossology/testdata118.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata118.yml
@@ -41,3 +41,21 @@ holders:
authors:
- Masayuki Hatta (mhatta)
- artofcode LLC. http://artofcode.com
+allrights:
+ - Copyright (c) Artifex Software Inc., All Rights Reserved.
+ - copyright Adobe Systems Incorporated
+ - Copyright (c) 1997-2002 Graeme W. Gill
+ - Copyright (c) 1999-2000 Image Power, Inc.
+ - Copyright (c) 1999-2000 The University of British Columbia
+ - Copyright (c) 2001-2003 Michael David Adams
+ - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved
+ - copyright holder, Aladdin Enterprises of Menlo Park
+ - copyright by the Free Software Foundation
+ - copyright by M.I.T.
+ - Copyright property of CompuServe Incorporated.
+ - Copyright (c) 2004, 2006-2007 Glenn Randers-Pehrson
+ - Copyright (c) 2000-2002 Glenn Randers-Pehrson
+ - Copyright (c) 1998, 1999 Glenn Randers-Pehrson
+ - Copyright (c) 1996, 1997 Andreas Dilger
+ - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
+ - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata119.yml b/tests/cluecode/data/copyright_fossology/testdata119.yml
index 86430175b65..554c04bd7f4 100644
--- a/tests/cluecode/data/copyright_fossology/testdata119.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata119.yml
@@ -41,3 +41,21 @@ holders:
authors:
- Masayuki Hatta (mhatta)
- artofcode LLC. http://artofcode.com
+allrights:
+ - Copyright (c) Artifex Software Inc., All Rights Reserved.
+ - copyright Adobe Systems Incorporated
+ - Copyright (c) 1997-2002 Graeme W. Gill
+ - Copyright (c) 1999-2000 Image Power, Inc.
+ - Copyright (c) 1999-2000 The University of British Columbia
+ - Copyright (c) 2001-2003 Michael David Adams
+ - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved
+ - copyright holder, Aladdin Enterprises of Menlo Park
+ - copyright by the Free Software Foundation
+ - copyright by M.I.T.
+ - Copyright property of CompuServe Incorporated.
+ - Copyright (c) 2004, 2006-2007 Glenn Randers-Pehrson
+ - Copyright (c) 2000-2002 Glenn Randers-Pehrson
+ - Copyright (c) 1998, 1999 Glenn Randers-Pehrson
+ - Copyright (c) 1996, 1997 Andreas Dilger
+ - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
+ - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata12.yml b/tests/cluecode/data/copyright_fossology/testdata12.yml
index 1a35101b98e..5e63785b99b 100644
--- a/tests/cluecode/data/copyright_fossology/testdata12.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata12.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2005 DMTF.
holders:
- DMTF
+allrights:
+ - Copyright (c) 2005 DMTF. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata120.yml b/tests/cluecode/data/copyright_fossology/testdata120.yml
index 2100066b05e..5d793a89d99 100644
--- a/tests/cluecode/data/copyright_fossology/testdata120.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata120.yml
@@ -20,3 +20,10 @@ authors:
- Sebastian Kuzminsky
- Gerrit Pape
- Andres Salomon
+allrights:
+ - Copyright (c) 2005-2008, Linus Torvalds and others.
+ - Copyright (c) 1995-1999, Cryptography Research, Inc.
+ - Copyright (c) 2003-2006, Davide Libenzi, Johannes E. Schindelin
+ - Copyright (c) 2005, Sebastian Kuzminsky
+ - (c) 2005-2006, Andres Salomon
+ - (c) 2005-2008, Gerrit Pape
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata121.yml b/tests/cluecode/data/copyright_fossology/testdata121.yml
index 2100066b05e..5d793a89d99 100644
--- a/tests/cluecode/data/copyright_fossology/testdata121.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata121.yml
@@ -20,3 +20,10 @@ authors:
- Sebastian Kuzminsky
- Gerrit Pape
- Andres Salomon
+allrights:
+ - Copyright (c) 2005-2008, Linus Torvalds and others.
+ - Copyright (c) 1995-1999, Cryptography Research, Inc.
+ - Copyright (c) 2003-2006, Davide Libenzi, Johannes E. Schindelin
+ - Copyright (c) 2005, Sebastian Kuzminsky
+ - (c) 2005-2006, Andres Salomon
+ - (c) 2005-2008, Gerrit Pape
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata122.yml b/tests/cluecode/data/copyright_fossology/testdata122.yml
index 2100066b05e..5d793a89d99 100644
--- a/tests/cluecode/data/copyright_fossology/testdata122.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata122.yml
@@ -20,3 +20,10 @@ authors:
- Sebastian Kuzminsky
- Gerrit Pape
- Andres Salomon
+allrights:
+ - Copyright (c) 2005-2008, Linus Torvalds and others.
+ - Copyright (c) 1995-1999, Cryptography Research, Inc.
+ - Copyright (c) 2003-2006, Davide Libenzi, Johannes E. Schindelin
+ - Copyright (c) 2005, Sebastian Kuzminsky
+ - (c) 2005-2006, Andres Salomon
+ - (c) 2005-2008, Gerrit Pape
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata123.yml b/tests/cluecode/data/copyright_fossology/testdata123.yml
index 519dc39439c..46ac21abbd2 100644
--- a/tests/cluecode/data/copyright_fossology/testdata123.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata123.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Free Software Foundation, Inc.
- James Troup
+allrights:
+ - Copyright (c) 1998-2008 Free Software Foundation, Inc.
+ - Copyright (c) 1998-2006 James Troup.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata124.yml b/tests/cluecode/data/copyright_fossology/testdata124.yml
index 519dc39439c..46ac21abbd2 100644
--- a/tests/cluecode/data/copyright_fossology/testdata124.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata124.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Free Software Foundation, Inc.
- James Troup
+allrights:
+ - Copyright (c) 1998-2008 Free Software Foundation, Inc.
+ - Copyright (c) 1998-2006 James Troup.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata126.yml b/tests/cluecode/data/copyright_fossology/testdata126.yml
index 4f0454d003f..43ca2c95be1 100644
--- a/tests/cluecode/data/copyright_fossology/testdata126.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata126.yml
@@ -24,3 +24,10 @@ authors:
- James Clark (jjc@jclark.com)
- Joergen Haegg (jh@axis.se)
- the University of California, Berkeley
+allrights:
+ - Copyright (c) 1989-2000 Free Software Foundation, Inc.
+ - copyrighted by MIT
+ - Copyright 1991 Massachusetts Institute of Technology
+ - Copyright (c) 1994-2000, 2001, 2002 Free Software Foundation, Inc.
+ - Copyright (c) 2000 Free Software Foundation, Inc.
+ - Copyright (c) 1986 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata127.yml b/tests/cluecode/data/copyright_fossology/testdata127.yml
index 792fb7e8e54..7b1d5d46aae 100644
--- a/tests/cluecode/data/copyright_fossology/testdata127.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata127.yml
@@ -9,3 +9,5 @@ holders:
authors:
- Masayuki Hatta (mhatta)
- URW++ Design & Development GmbH Valek Filippov
+allrights:
+ - Copyright (c) 2001- Valek Filippov, All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata128.yml b/tests/cluecode/data/copyright_fossology/testdata128.yml
index 86430175b65..554c04bd7f4 100644
--- a/tests/cluecode/data/copyright_fossology/testdata128.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata128.yml
@@ -41,3 +41,21 @@ holders:
authors:
- Masayuki Hatta (mhatta)
- artofcode LLC. http://artofcode.com
+allrights:
+ - Copyright (c) Artifex Software Inc., All Rights Reserved.
+ - copyright Adobe Systems Incorporated
+ - Copyright (c) 1997-2002 Graeme W. Gill
+ - Copyright (c) 1999-2000 Image Power, Inc.
+ - Copyright (c) 1999-2000 The University of British Columbia
+ - Copyright (c) 2001-2003 Michael David Adams
+ - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved
+ - copyright holder, Aladdin Enterprises of Menlo Park
+ - copyright by the Free Software Foundation
+ - copyright by M.I.T.
+ - Copyright property of CompuServe Incorporated.
+ - Copyright (c) 2004, 2006-2007 Glenn Randers-Pehrson
+ - Copyright (c) 2000-2002 Glenn Randers-Pehrson
+ - Copyright (c) 1998, 1999 Glenn Randers-Pehrson
+ - Copyright (c) 1996, 1997 Andreas Dilger
+ - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
+ - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata132.yml b/tests/cluecode/data/copyright_fossology/testdata132.yml
index 8047adfaa09..af82c43a9e5 100644
--- a/tests/cluecode/data/copyright_fossology/testdata132.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata132.yml
@@ -8,3 +8,5 @@ holders:
- Anthony Towns
authors:
- Anthony Towns
+allrights:
+ - Copyright (c) 1999, Anthony Towns. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata133.yml b/tests/cluecode/data/copyright_fossology/testdata133.yml
index 4c0c883c652..0d5748f4cb6 100644
--- a/tests/cluecode/data/copyright_fossology/testdata133.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata133.yml
@@ -27,3 +27,14 @@ holders:
authors:
- Scott K. Ellis scott@debian.org
- John Cristy
+allrights:
+ - Copyright 1999-2004 ImageMagick Studio LLC
+ - copyright Pineapple USA Inc.
+ - Copyright 1999 E. I. du Pont de Nemours and Company
+ - Copyright (c) 2002 GraphicsMagick Group
+ - Copyright (c) 2000-2002, Ghostgum Software Pty Ltd. All rights reserved.
+ - Copyright (c) 2000 Markus Friedl. All rights reserved.
+ - Copyright 1999 - 2003 Bob Friesenhahn
+ - Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ - Parts Copyright (c) 1989-2000 by Brian V. Smith
+ - Parts Copyright (c) 1991 by Paul King
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata135.yml b/tests/cluecode/data/copyright_fossology/testdata135.yml
index 21ac71da923..e53b36bfd99 100644
--- a/tests/cluecode/data/copyright_fossology/testdata135.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata135.yml
@@ -7,3 +7,5 @@ copyrights:
project
holders:
- Miquel van Smoorenburg and the members pkg-sysvinit project
+allrights:
+ - Copyright 1997-2005 Miquel van Smoorenburg and the members pkg-sysvinit project.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata136.yml b/tests/cluecode/data/copyright_fossology/testdata136.yml
index 97612d3db96..ea60779bc29 100644
--- a/tests/cluecode/data/copyright_fossology/testdata136.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata136.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Free Software Foundation
- Eazel, Inc
+allrights:
+ - Copyright (c) 2000-2003 Free Software Foundation.
+ - Copyright (c) 2000, 2001 Eazel, Inc
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata138.yml b/tests/cluecode/data/copyright_fossology/testdata138.yml
index 481709f34ba..e4db4fa8526 100644
--- a/tests/cluecode/data/copyright_fossology/testdata138.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata138.yml
@@ -13,3 +13,6 @@ authors:
- Noah Meyerhans
- Alexey Kuznetsov
- Sun Microsystems, Inc.
+allrights:
+ - Copyright (c) 1989 The Regents of the University of California. All rights reserved.
+ - copyright Alexey Kuznetsov
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata139.yml b/tests/cluecode/data/copyright_fossology/testdata139.yml
index 653da0150cc..07c9231306e 100644
--- a/tests/cluecode/data/copyright_fossology/testdata139.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata139.yml
@@ -28,3 +28,14 @@ authors:
- Jack Moffitt
- Fernando Perez , Janko Hauser , Nathaniel Gray
+allrights:
+ - Copyright (c) 2001, 2002, 2003, 2004 Fernando Perez
+ - Copyright (c) 2001 Janko Hauser and Nathaniel Gray
+ - Copyright (c) 2004 W.J. van der Laan
+ - Copyright (c) 2004-2006 Fernando Perez
+ - Copyright Gael Varoquaux
+ - Copyright (c) InQuant GmbH Stefan Eletzhofer
+ - Copyright (c) 2001 Bill Bumgarner
+ - Copyright (c) 2001 Python Software Foundation, www.python.org
+ - Copyright (c) 2005 Jorgen Stenarson
+ - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata14.yml b/tests/cluecode/data/copyright_fossology/testdata14.yml
index 6debcc4436f..410fea114df 100644
--- a/tests/cluecode/data/copyright_fossology/testdata14.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata14.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Trolltech ASA, Norway
- trolltech.html Trolltech
+allrights:
+ - Copyright (c) 1999-2006 Trolltech ASA, Norway.
+ - Copyright (c) 2006 trolltech.html Trolltech
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata15.yml b/tests/cluecode/data/copyright_fossology/testdata15.yml
index 7dba1654fac..cf7c3e828f2 100644
--- a/tests/cluecode/data/copyright_fossology/testdata15.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata15.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2009 The Apache Software Foundation
holders:
- The Apache Software Foundation
+allrights:
+ - Copyright 2009 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata16.yml b/tests/cluecode/data/copyright_fossology/testdata16.yml
index d9eb8170756..42ca0f5f315 100644
--- a/tests/cluecode/data/copyright_fossology/testdata16.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata16.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- The Open Group
- Digital Equipment Corporation, Maynard, Massachusetts
+allrights:
+ - Copyright 1987, 1998 The Open Group
+ - Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata17.yml b/tests/cluecode/data/copyright_fossology/testdata17.yml
index a608bda71dd..c4665e19211 100644
--- a/tests/cluecode/data/copyright_fossology/testdata17.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata17.yml
@@ -9,3 +9,6 @@ copyrights:
holders:
- Free Software Foundation, Inc.
- Sun Microsystems, Inc.
+allrights:
+ - Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+ - Copyright 2005 Sun Microsystems, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata18.yml b/tests/cluecode/data/copyright_fossology/testdata18.yml
index 3d619ffd0ae..236041b2e4b 100644
--- a/tests/cluecode/data/copyright_fossology/testdata18.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata18.yml
@@ -12,3 +12,8 @@ holders:
- Const Kaplinsky
- Tridia Corporation
- AT&T Laboratories Cambridge
+allrights:
+ - Copyright (c) 2002 Tim Jansen. All Rights Reserved.
+ - Copyright (c) 2000, 2001 Const Kaplinsky. All Rights Reserved.
+ - Copyright (c) 2000 Tridia Corporation. All Rights Reserved.
+ - Copyright (c) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata20.yml b/tests/cluecode/data/copyright_fossology/testdata20.yml
index 4da8ebaa749..27707946c4d 100644
--- a/tests/cluecode/data/copyright_fossology/testdata20.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata20.yml
@@ -10,3 +10,6 @@ holders:
- Akihiro MOTOKI
authors:
- Akihiro MOTOKI
+allrights:
+ - Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
+ - Copyright (c) 2003 Akihiro MOTOKI all rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata22.yml b/tests/cluecode/data/copyright_fossology/testdata22.yml
index e7a1643666a..d19914f8097 100644
--- a/tests/cluecode/data/copyright_fossology/testdata22.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata22.yml
@@ -6,3 +6,5 @@ copyrights:
- Portions created by the Initial Developer are Copyright (c) 1998-1999 the Initial Developer
holders:
- the Initial Developer
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 1998-1999 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata26.yml b/tests/cluecode/data/copyright_fossology/testdata26.yml
index 6f87062700a..75d8a68056c 100644
--- a/tests/cluecode/data/copyright_fossology/testdata26.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata26.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 1996-2000, 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg
holders:
- David Turner, Robert Wilhelm, and Werner Lemberg
+allrights:
+ - Copyright 1996-2000, 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata27.yml b/tests/cluecode/data/copyright_fossology/testdata27.yml
index b550b430f25..8438603cf7e 100644
--- a/tests/cluecode/data/copyright_fossology/testdata27.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata27.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2001-2008 Apache Software Foundation
holders:
- Apache Software Foundation
+allrights:
+ - Copyright (c) 2001-2008 Apache Software Foundation. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata29.yml b/tests/cluecode/data/copyright_fossology/testdata29.yml
index 92f7b28182a..29a1f71e92f 100644
--- a/tests/cluecode/data/copyright_fossology/testdata29.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata29.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2001 Sun Microsystems, Inc.
holders:
- Sun Microsystems, Inc.
+allrights:
+ - Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata33.yml b/tests/cluecode/data/copyright_fossology/testdata33.yml
index fc554887af1..12df9753e52 100644
--- a/tests/cluecode/data/copyright_fossology/testdata33.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata33.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Adobe Systems Incorporated
- Adobe Systems Incorporated
+allrights:
+ - Copyright 1999 Adobe Systems Incorporated. All Rights Reserved.
+ - Copyright (c) 1999 Adobe Systems Incorporated. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata35.yml b/tests/cluecode/data/copyright_fossology/testdata35.yml
index 18c62aaa77d..0ae3200c52c 100644
--- a/tests/cluecode/data/copyright_fossology/testdata35.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata35.yml
@@ -67,3 +67,31 @@ authors:
- Philip Hazel
- Philip Hazel
- Adam Twiss (adam@zeus.co.uk)
+allrights:
+ - Copyright (c) 1996-1997 Cisco Systems, Inc.
+ - Copyright (c) Ian F. Darwin, 1987.
+ - copyright 1992 by Eric Haines, erich@eye.com
+ - Copyright (c) 1995, Board of Trustees of the University of Illinois
+ - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc.
+ - Copyright (c) 1993, 1994 by Carnegie Mellon University
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved.
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1990-2, RSA Data Security, Inc.
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright (c) 1997-2001 University of Cambridge
+ - copyright by the University of Cambridge, England.
+ - Copyright (c) Zeus Technology Limited 1996.
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
+ - copyright of Pete Harlow
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata36.yml b/tests/cluecode/data/copyright_fossology/testdata36.yml
index 18c62aaa77d..0ae3200c52c 100644
--- a/tests/cluecode/data/copyright_fossology/testdata36.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata36.yml
@@ -67,3 +67,31 @@ authors:
- Philip Hazel
- Philip Hazel
- Adam Twiss (adam@zeus.co.uk)
+allrights:
+ - Copyright (c) 1996-1997 Cisco Systems, Inc.
+ - Copyright (c) Ian F. Darwin, 1987.
+ - copyright 1992 by Eric Haines, erich@eye.com
+ - Copyright (c) 1995, Board of Trustees of the University of Illinois
+ - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc.
+ - Copyright (c) 1993, 1994 by Carnegie Mellon University
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved.
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1990-2, RSA Data Security, Inc.
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright (c) 1997-2001 University of Cambridge
+ - copyright by the University of Cambridge, England.
+ - Copyright (c) Zeus Technology Limited 1996.
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
+ - copyright of Pete Harlow
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata37.yml b/tests/cluecode/data/copyright_fossology/testdata37.yml
index 18c62aaa77d..0ae3200c52c 100644
--- a/tests/cluecode/data/copyright_fossology/testdata37.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata37.yml
@@ -67,3 +67,31 @@ authors:
- Philip Hazel
- Philip Hazel
- Adam Twiss (adam@zeus.co.uk)
+allrights:
+ - Copyright (c) 1996-1997 Cisco Systems, Inc.
+ - Copyright (c) Ian F. Darwin, 1987.
+ - copyright 1992 by Eric Haines, erich@eye.com
+ - Copyright (c) 1995, Board of Trustees of the University of Illinois
+ - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc.
+ - Copyright (c) 1993, 1994 by Carnegie Mellon University
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved.
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1990-2, RSA Data Security, Inc.
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright (c) 1997-2001 University of Cambridge
+ - copyright by the University of Cambridge, England.
+ - Copyright (c) Zeus Technology Limited 1996.
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
+ - copyright of Pete Harlow
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata39.yml b/tests/cluecode/data/copyright_fossology/testdata39.yml
index 18c62aaa77d..0ae3200c52c 100644
--- a/tests/cluecode/data/copyright_fossology/testdata39.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata39.yml
@@ -67,3 +67,31 @@ authors:
- Philip Hazel
- Philip Hazel
- Adam Twiss (adam@zeus.co.uk)
+allrights:
+ - Copyright (c) 1996-1997 Cisco Systems, Inc.
+ - Copyright (c) Ian F. Darwin, 1987.
+ - copyright 1992 by Eric Haines, erich@eye.com
+ - Copyright (c) 1995, Board of Trustees of the University of Illinois
+ - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc.
+ - Copyright (c) 1993, 1994 by Carnegie Mellon University
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved.
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1990-2, RSA Data Security, Inc.
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright (c) 1997-2001 University of Cambridge
+ - copyright by the University of Cambridge, England.
+ - Copyright (c) Zeus Technology Limited 1996.
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
+ - copyright of Pete Harlow
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata4.yml b/tests/cluecode/data/copyright_fossology/testdata4.yml
index 10d1fac5ec5..a140a6ce02a 100644
--- a/tests/cluecode/data/copyright_fossology/testdata4.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata4.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 1990-1999 Info-ZIP.
holders:
- Info-ZIP
+allrights:
+ - Copyright (c) 1990-1999 Info-ZIP. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata40.yml b/tests/cluecode/data/copyright_fossology/testdata40.yml
index 7567688edd2..3f1da189a08 100644
--- a/tests/cluecode/data/copyright_fossology/testdata40.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata40.yml
@@ -9,3 +9,5 @@ holders:
authors:
- Marc Haber
- Adel I. Mirzazhanov
+allrights:
+ - Copyright (c) 1999, 2000, 2001 Adel I. Mirzazhanov. All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata41.yml b/tests/cluecode/data/copyright_fossology/testdata41.yml
index 126c0ab818e..9d0d9503ed5 100644
--- a/tests/cluecode/data/copyright_fossology/testdata41.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata41.yml
@@ -8,3 +8,5 @@ holders:
- Jason Gunthorpe and others
authors:
- APT Development Team
+allrights:
+ - copyright 1997, 1998, 1999 Jason Gunthorpe and others.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata43.yml b/tests/cluecode/data/copyright_fossology/testdata43.yml
index 126c0ab818e..9d0d9503ed5 100644
--- a/tests/cluecode/data/copyright_fossology/testdata43.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata43.yml
@@ -8,3 +8,5 @@ holders:
- Jason Gunthorpe and others
authors:
- APT Development Team
+allrights:
+ - copyright 1997, 1998, 1999 Jason Gunthorpe and others.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata44.yml b/tests/cluecode/data/copyright_fossology/testdata44.yml
index 80923b2c93c..1e69519009e 100644
--- a/tests/cluecode/data/copyright_fossology/testdata44.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata44.yml
@@ -11,3 +11,6 @@ holders:
authors:
- Ian Murdock and Bruce Perens
- Bruce Perens
+allrights:
+ - copyrighted by the Free Software Foundation, Inc.
+ - Copyright (c) 1995-2008 Software in the Public Interest.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata46.yml b/tests/cluecode/data/copyright_fossology/testdata46.yml
index 76689d89e0b..65f70b92113 100644
--- a/tests/cluecode/data/copyright_fossology/testdata46.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata46.yml
@@ -51,3 +51,24 @@ authors:
- the University of California, Berkeley and its contributors
- Richard Verhoeven
- chet@po.cwru.edu
+allrights:
+ - Copyright (c) 1989-2006 Free Software Foundation, Inc.
+ - Copyright FSF
+ - Copyright 1995-2005 by Chester Ramey.
+ - Copyright (c) 1988-2005 Free Software Foundation, Inc.
+ - Copyright (c) 1993-1994 O'Reilly and Associates, Inc.
+ - Copyright (c) 1998, 1999, 2001 Gary V. Vaughan
+ - Copyright (c) 1991 Simon J. Gerraty
+ - Kaz Kylheku Copyright 1999
+ - Copyright (c) Chris Robertson
+ - copyright chris ulrich
+ - Copyright (c) 1994 Winning Strategies, Inc. All rights reserved.
+ - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1988-2004 Free Software Foundation, Inc.
+ - Copyright (c) 1988-2005 Free Software Foundation, Inc.
+ - Copyright (c) 1988-2005 Free Software Foundation, Inc.
+ - Copyright (c) 1988-2002 Free Software Foundation, Inc.
+ - Copyright (c) 1983, 1990, 1993 The Regents of the University of California. All rights reserved.
+ - Portions Copyright (c) 1993 by Digital Equipment Corporation.
+ - Copyright (c) 1988 Free Software Foundation, Inc.
+ - Copyright (c) 1999, 2002 Aladdin Enterprises. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata47.yml b/tests/cluecode/data/copyright_fossology/testdata47.yml
index 2970a0e6a5f..ddab2ef8711 100644
--- a/tests/cluecode/data/copyright_fossology/testdata47.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata47.yml
@@ -9,3 +9,5 @@ holders:
authors:
- Bdale Garbee
- Internet Software Consortium
+allrights:
+ - Copyright (c) 1996-2001 Internet Software Consortium.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata48.yml b/tests/cluecode/data/copyright_fossology/testdata48.yml
index 2970a0e6a5f..ddab2ef8711 100644
--- a/tests/cluecode/data/copyright_fossology/testdata48.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata48.yml
@@ -9,3 +9,5 @@ holders:
authors:
- Bdale Garbee
- Internet Software Consortium
+allrights:
+ - Copyright (c) 1996-2001 Internet Software Consortium.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata49.yml b/tests/cluecode/data/copyright_fossology/testdata49.yml
index 2970a0e6a5f..ddab2ef8711 100644
--- a/tests/cluecode/data/copyright_fossology/testdata49.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata49.yml
@@ -9,3 +9,5 @@ holders:
authors:
- Bdale Garbee
- Internet Software Consortium
+allrights:
+ - Copyright (c) 1996-2001 Internet Software Consortium.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata5.yml b/tests/cluecode/data/copyright_fossology/testdata5.yml
index a545a395bef..980f07ce369 100644
--- a/tests/cluecode/data/copyright_fossology/testdata5.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata5.yml
@@ -6,3 +6,5 @@ copyrights:
- (c) Copyright 2000
authors:
- Antoine P. Petitet
+allrights:
+ - (c) Copyright 2000 All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata52.yml b/tests/cluecode/data/copyright_fossology/testdata52.yml
index 52e26d034b5..31160eaa364 100644
--- a/tests/cluecode/data/copyright_fossology/testdata52.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata52.yml
@@ -9,3 +9,5 @@ holders:
authors:
- Loic Prylli
- Robert Luberda
+allrights:
+ - Copyright (c) 1980, 1993 The Regents of the University of California.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata53.yml b/tests/cluecode/data/copyright_fossology/testdata53.yml
index 79d3547442c..06bfe9f9460 100644
--- a/tests/cluecode/data/copyright_fossology/testdata53.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata53.yml
@@ -11,3 +11,5 @@ authors:
- Ian Murdock
- Charles Briscoe-Smith
- Graham Wilson
+allrights:
+ - Copyright (c) The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata56.yml b/tests/cluecode/data/copyright_fossology/testdata56.yml
index 8e21f1fcdb6..95361ceab31 100644
--- a/tests/cluecode/data/copyright_fossology/testdata56.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata56.yml
@@ -14,3 +14,7 @@ authors:
- Philippe Troin
- Anibal Monsalve Salazar
- Julian Seward
+allrights:
+ - Copyright (c) 1999, 2000, 2001, 2002 Philippe Troin
+ - Copyright (c) 2004-2007 Anibal Monsalve Salazar.
+ - copyright (c) 1996-2007 Julian R Seward. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata58.yml b/tests/cluecode/data/copyright_fossology/testdata58.yml
index c691696f762..c596227229f 100644
--- a/tests/cluecode/data/copyright_fossology/testdata58.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata58.yml
@@ -10,3 +10,6 @@ holders:
- Netscape Communications Corporation
authors:
- Fumitoshi UKAI
+allrights:
+ - Copyright (c) 2001-2003 Fumitoshi UKAI
+ - Copyright (c) 1994-2000 Netscape Communications Corporation. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata61.yml b/tests/cluecode/data/copyright_fossology/testdata61.yml
index 9a23ff93623..b588a427550 100644
--- a/tests/cluecode/data/copyright_fossology/testdata61.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata61.yml
@@ -45,3 +45,23 @@ holders:
authors:
- Michael Stone
- Michael Stone
+allrights:
+ - Copyright (c) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+ - Copyright (c) 1990, 1993, 1994 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+ - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1999-2006 Free Software Foundation, Inc.
+ - Copyright (c) 1997, 1998, 1999 Colin Plumb.
+ - Copyright (c) 2005, 2006 Free Software Foundation, Inc.
+ - Copyright (c) 1996-1999 by Internet Software Consortium.
+ - Copyright (c) 2004, 2006, 2007 Free Software Foundation, Inc.
+ - Copyright (c) 1997-2007 Free Software Foundation, Inc.
+ - Copyright (c) 1984 David M. Ihnat
+ - Copyright (c) 1996-2007 Free Software Foundation, Inc.
+ - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin
+ - Copyright (c) 1997-2005 Free Software Foundation, Inc.
+ - Copyright (c) 1984 David M. Ihnat
+ - Copyright (c) 1999-2007 Free Software Foundation, Inc.
+ - Copyright (c) 1997, 1998, 1999 Colin Plumb.
+ - Copyright 1994-1996, 2000-2008 Free Software Foundation, Inc.
+ - Copyright (c) 1984-2008 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata7.yml b/tests/cluecode/data/copyright_fossology/testdata7.yml
index c5029692da0..572fd702ae9 100644
--- a/tests/cluecode/data/copyright_fossology/testdata7.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata7.yml
@@ -12,3 +12,8 @@ holders:
- Apple Inc.
- Cameron Zwarich
- Maks Orlovich
+allrights:
+ - Copyright (c) 1999-2000 Harri Porten (porten@kde.org)
+ - Copyright (c) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
+ - Copyright (c) 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca)
+ - Copyright (c) 2007 Maks Orlovich
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata72.yml b/tests/cluecode/data/copyright_fossology/testdata72.yml
index ff9f369f0ef..68fdf564a62 100644
--- a/tests/cluecode/data/copyright_fossology/testdata72.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata72.yml
@@ -10,3 +10,6 @@ holders:
- The NetBSD Foundation, Inc.
authors:
- the NetBSD Foundation, Inc. and its contributors
+allrights:
+ - Copyright (c) 2000, 2001, 2006 Debian.
+ - Copyright (c) 1999 The NetBSD Foundation, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata73.yml b/tests/cluecode/data/copyright_fossology/testdata73.yml
index bd4cdba5846..80b2bee35a6 100644
--- a/tests/cluecode/data/copyright_fossology/testdata73.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata73.yml
@@ -19,3 +19,10 @@ holders:
authors:
- Sean M. Burke
- Javier Fernandez-Sanguino
+allrights:
+ - Copyright 1988,1990,1993,1994 by Paul Vixie All rights reserved
+ - Copyright 1994 Ian Jackson
+ - Copyright (c) 1994 Ian Jackson
+ - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Steve Greenland
+ - Copyright 2001 Sean M. Burke
+ - Copyright 2006 Javier Fernandez-Sanguino
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata75.yml b/tests/cluecode/data/copyright_fossology/testdata75.yml
index 1adb6164c73..910bf0b229e 100644
--- a/tests/cluecode/data/copyright_fossology/testdata75.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata75.yml
@@ -15,3 +15,8 @@ holders:
authors:
- Mark W. Eichin eichin@kitten.gen.ma.us
- Gerrit Pape
+allrights:
+ - Copyright (c) 1989-1994 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1997 Christos Zoulas. All rights reserved.
+ - Copyright (c) 1997-2005 Herbert Xu All rights reserved.
+ - Copyright (c) 1992 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata76.yml b/tests/cluecode/data/copyright_fossology/testdata76.yml
index e3db51d357c..2410002107e 100644
--- a/tests/cluecode/data/copyright_fossology/testdata76.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata76.yml
@@ -12,3 +12,7 @@ holders:
- The President and Fellows of Harvard University
authors:
- Clint Adams
+allrights:
+ - Copyright (c) 1990,2007 Oracle. All rights reserved.
+ - Copyright (c) 1990, 1993, 1994, 1995 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1995, 1996 The President and Fellows of Harvard University. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata77.yml b/tests/cluecode/data/copyright_fossology/testdata77.yml
index 35587ee8368..1944f80d6e4 100644
--- a/tests/cluecode/data/copyright_fossology/testdata77.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata77.yml
@@ -11,3 +11,6 @@ holders:
authors:
- sean finney
- sean finney
+allrights:
+ - copyright (c) 2005 sean finney
+ - copyright (c) 2000-2004 Ola Lundqvist.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata89.yml b/tests/cluecode/data/copyright_fossology/testdata89.yml
index df281f93eb0..f12b690e62b 100644
--- a/tests/cluecode/data/copyright_fossology/testdata89.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata89.yml
@@ -8,3 +8,5 @@ holders:
- Thomas E. Dickey
authors:
- Thomas E. Dickey
+allrights:
+ - Copyright 1994-2001,2002 by Thomas E. Dickey All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata90.yml b/tests/cluecode/data/copyright_fossology/testdata90.yml
index a8703d75c5a..fe335596baa 100644
--- a/tests/cluecode/data/copyright_fossology/testdata90.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata90.yml
@@ -13,3 +13,7 @@ holders:
authors:
- Barak Pearlmutter
- David Kreil
+allrights:
+ - Copyright (c) 2002 Leon Bottou and Yann Le Cun.
+ - Copyright (c) 2001 AT&T
+ - Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata92.yml b/tests/cluecode/data/copyright_fossology/testdata92.yml
index 2970a0e6a5f..ddab2ef8711 100644
--- a/tests/cluecode/data/copyright_fossology/testdata92.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata92.yml
@@ -9,3 +9,5 @@ holders:
authors:
- Bdale Garbee
- Internet Software Consortium
+allrights:
+ - Copyright (c) 1996-2001 Internet Software Consortium.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata93.yml b/tests/cluecode/data/copyright_fossology/testdata93.yml
index 7c3be9eabd4..f97032e9372 100644
--- a/tests/cluecode/data/copyright_fossology/testdata93.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata93.yml
@@ -31,3 +31,16 @@ holders:
authors:
- Daniel Leidert
- Mark Johnson
+allrights:
+ - Copyright (c) 1999-2007 Norman Walsh.
+ - Copyright (c) 2003 Jiri Kosek.
+ - Copyright (c) 2004-2007 Steve Ball.
+ - Copyright (c) 2005-2007 The DocBook Project.
+ - Copyright (c) 2005 Michal Molhanec.
+ - Copyright (c) 2000 Bob Clary.
+ - Copyright (c) 2001 The Netscape Corporation.
+ - Copyright (c) 2003 The Netscape Corporation.
+ - Copyright (c) 1997 Michael Bostock (Netscape Communications).
+ - Copyright (c) 2001 Bob Clary (Netscape Communications).
+ - Copyright (c) 2001 Seth Dillingham (Macrobyte Resources).
+ - Copyright (c) 2002 Mark Filanowicz (Amdahl IT Services).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyright_fossology/testdata97.yml b/tests/cluecode/data/copyright_fossology/testdata97.yml
index f77443a6c6a..d8bce1ed771 100644
--- a/tests/cluecode/data/copyright_fossology/testdata97.yml
+++ b/tests/cluecode/data/copyright_fossology/testdata97.yml
@@ -14,3 +14,8 @@ holders:
- Free Software Foundation, Inc.
authors:
- Matt Kraai
+allrights:
+ - Copyright (c) 1993, 1994 Andrew Moore, Talke Studio.
+ - Copyright (c) 2006, 2007 Antonio Diaz Diaz.
+ - Copyright (c) 1997-2007 James Troup.
+ - Copyright (c) 1993, 2006, 2007 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml b/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml
index f0a2ce85a2c..37f52c1be9d 100644
--- a/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml
+++ b/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml
@@ -5,3 +5,5 @@ copyrights:
- Copyright (c) AliasDotCom Ltd.
holders:
- AliasDotCom Ltd.
+allrights:
+ - Copyright (c) AliasDotCom Ltd. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml b/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml
index 5ed016a09e3..083de61630c 100644
--- a/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml
+++ b/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: Microsoft
count: 2
+allrights:
+ - Copyright (c) Microsoft Corporation. All rights reserved.
+ - Copyright (c) Microsoft Corporation. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml b/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml
index aff285c3c14..38c56bf146b 100644
--- a/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml
+++ b/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/README-README.yml b/tests/cluecode/data/copyrights/README-README.yml
index 76555a8c37a..e9050a0b8f4 100644
--- a/tests/cluecode/data/copyrights/README-README.yml
+++ b/tests/cluecode/data/copyrights/README-README.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Jouni Malinen and contributors
count: 1
+allrights:
+ - Copyright (c) 2002-2006, Jouni Malinen and contributors All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml b/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml
index cc1a53e4ebe..9a64741c1f9 100644
--- a/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: abc
count: 1
+allrights:
+ - copyright abc 2001 all rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/acme_c-c.c.yml b/tests/cluecode/data/copyrights/acme_c-c.c.yml
index d0b0712430b..0b7383b2dd2 100644
--- a/tests/cluecode/data/copyrights/acme_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/acme_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: ACME, Inc.
count: 1
+allrights:
+ - Copyright (c) 2000 ACME, Inc., All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml b/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml
index 6ae59215687..b6bed81464d 100644
--- a/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml
+++ b/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml
@@ -10,3 +10,5 @@ holders_summary:
- value: Thomas Hansen
count: 1
notes: this is not correct and Web Applications should not be returned at all
+allrights:
+ - Copyright 2009 - Thomas Hansen thomas@ra-ajax.org.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml b/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml
index df2647ced30..28cf4718e5c 100644
--- a/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml
+++ b/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Jon Doe
count: 1
+allrights:
+ - Copyright 1999 Cornell University. All rights reserved.
+ - Copyright 2000 Jon Doe. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/adobe-Adobe.yml b/tests/cluecode/data/copyrights/adobe-Adobe.yml
index ca8e9bddbb7..8736e19784f 100644
--- a/tests/cluecode/data/copyrights/adobe-Adobe.yml
+++ b/tests/cluecode/data/copyrights/adobe-Adobe.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Adobe Systems Incorporated
count: 1
+allrights:
+ - Copyright (c) 2006 Adobe Systems Incorporated. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml b/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml
index 120133ae5fe..b1f23c6cdca 100644
--- a/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml
+++ b/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Takuo KITAME, Bart Martens, and Canonical, LTD
count: 1
+allrights:
+ - Copyright (c) 1996 - 2008. Adobe Systems Incorporated. All Rights Reserved.
+ - (c) 2001-2009, Takuo KITAME, Bart Martens, and Canonical, LTD
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/adobe_license.txt.yml b/tests/cluecode/data/copyrights/adobe_license.txt.yml
index 3ca052af299..f08bb0d5a0d 100644
--- a/tests/cluecode/data/copyrights/adobe_license.txt.yml
+++ b/tests/cluecode/data/copyrights/adobe_license.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Adobe Systems Incorporated
count: 1
+allrights:
+ - Copyright 1990-2009 Adobe Systems Incorporated. Copyright All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/affiliates.txt.yml b/tests/cluecode/data/copyrights/affiliates.txt.yml
index ec55d160234..db9b6515642 100644
--- a/tests/cluecode/data/copyrights/affiliates.txt.yml
+++ b/tests/cluecode/data/copyrights/affiliates.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: HERE Global B.V. and its affiliate(s)
count: 1
+allrights:
+ - Copyright (c) 2016-2018 HERE Global B.V. and its affiliate(s).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml b/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml
index 44fd30660bf..13cf9f8c470 100644
--- a/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml
+++ b/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Lawrence Rosen
count: 1
+allrights:
+ - Copyright (c) 2005 Lawrence Rosen.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml b/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml
index 57aad5b6437..8abcc96bbb4 100644
--- a/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml
+++ b/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Aladdin Enterprises, Menlo Park, California, U.S.A.
count: 1
+allrights:
+ - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, Menlo Park, California, U.S.A. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/alt.txt.yml b/tests/cluecode/data/copyrights/alt.txt.yml
index f2f8440d127..1fc26467f83 100644
--- a/tests/cluecode/data/copyrights/alt.txt.yml
+++ b/tests/cluecode/data/copyrights/alt.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Alt Three Services Limited
count: 1
+allrights:
+ - Copyright (c) 2015-2018 Alt Three Services Limited. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml b/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml
index c0832d78ba4..cea3d7e7ad0 100644
--- a/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml
+++ b/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1998 Softweyr LLC. All rights reserved.
+ - Copyright (c) 1988, 1993 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/and_the_contributors.txt.yml b/tests/cluecode/data/copyrights/and_the_contributors.txt.yml
index 0ed8c253045..bdf232d0e21 100644
--- a/tests/cluecode/data/copyrights/and_the_contributors.txt.yml
+++ b/tests/cluecode/data/copyrights/and_the_contributors.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: AstaXie and The Contributors
count: 1
+allrights:
+ - Copyright (c) 2012, AstaXie and The Contributors All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/andre_darcy-c.c.yml b/tests/cluecode/data/copyrights/andre_darcy-c.c.yml
index f2586a98f00..dca047ee56f 100644
--- a/tests/cluecode/data/copyrights/andre_darcy-c.c.yml
+++ b/tests/cluecode/data/copyrights/andre_darcy-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Pascal Andre
count: 1
+allrights:
+ - Copyright (c) 1995, Pascal Andre (andre@via.ecp.fr).
+ - copyright 1997, 1998, 1999 by D'Arcy J.M. Cain (darcy@druid.net)
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/android_c-c.c.yml b/tests/cluecode/data/copyrights/android_c-c.c.yml
index 29aef713b0a..3f998ec3280 100644
--- a/tests/cluecode/data/copyrights/android_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/android_c-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Colin Percival
count: 1
+allrights:
+ - Copyright (c) 2009 The Android Open Source Project
+ - Copyright 2003-2005 Colin Percival All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml b/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml
index 6e135547fd6..10c75efe9e4 100644
--- a/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml
+++ b/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml
@@ -95,3 +95,33 @@ holders_summary:
count: 1
- value: the University of Cambridge, England
count: 1
+allrights:
+ - copyright Steinar H. Gunderson and Knut Auvor Grythe
+ - Copyright (c) 1996-1997 Cisco Systems, Inc.
+ - Copyright (c) Ian F. Darwin, 1987.
+ - Copyright (c) Ian F. Darwin 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995.
+ - copyright 1992 by Eric Haines, erich@eye.com
+ - Copyright (c) 1995, Board of Trustees of the University of Illinois
+ - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc.
+ - Copyright (c) 1993, 1994 by Carnegie Mellon University
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved.
+ - Copyright (c) 1991 Bell Communications Research, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1991-2, RSA Data Security, Inc.
+ - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved.
+ - copyright RSA Data Security, Inc.
+ - Copyright (c) 1990-2, RSA Data Security, Inc.
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright (c) 1997-2001 University of Cambridge
+ - copyright by the University of Cambridge, England.
+ - Copyright (c) Zeus Technology Limited 1996.
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
+ - copyright of Pete Harlow
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml b/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml
index a8610b1c8e5..ec34553f4d0 100644
--- a/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml
+++ b/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml
@@ -17,3 +17,8 @@ holders_summary:
count: 3
- value: World Wide Web Consortium
count: 1
+allrights:
+ - Copyright 1999-2006 The Apache Software Foundation
+ - Copyright 1999-2006 The Apache Software Foundation
+ - Copyright 2001-2003,2006 The Apache Software Foundation.
+ - copyright (c) 2000 World Wide Web Consortium, http://www.w3.org
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml b/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml
index 1d0447dcb27..00a573f3ccc 100644
--- a/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml
+++ b/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright (c) 1995-1999 The Apache Group. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml b/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml
index 6c5502a9490..4e479465373 100644
--- a/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml
+++ b/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright (c) 2000 The Apache Software Foundation. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml b/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml
index 3d277aa460b..422f7fb898a 100644
--- a/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml
+++ b/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Apple Computer, Inc.
count: 1
+allrights:
+ - Portions Copyright (c) 1999 Apple Computer, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml b/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml
index a0fb088809b..a10889d58b7 100644
--- a/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml
+++ b/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Apple Computer, Inc.
count: 1
+allrights:
+ - Portions Copyright (c) 1999-2000 Apple Computer, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml b/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml
index a8d9d36a0dd..c1d408597ed 100644
--- a/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml
+++ b/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Apple Computer, Inc.
count: 1
+allrights:
+ - Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml b/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml
index c6c4104050c..9e6fa64d503 100644
--- a/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml
+++ b/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Apple Inc.
count: 1
+allrights:
+ - Portions Copyright (c) 1999-2007 Apple Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml b/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml
index 653a9c6429f..4afc96d9105 100644
--- a/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml
+++ b/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Larry Wall
count: 1
+allrights:
+ - Copyright (c) 2000, Larry Wall.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml b/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml
index 3a0054ca58e..f6ae70756c1 100644
--- a/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml
+++ b/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Perl Foundation
count: 1
+allrights:
+ - Copyright (c) 2000-2006, The Perl Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml b/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml
index d8510418caa..b0b05745cc4 100644
--- a/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml
+++ b/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml
@@ -15,3 +15,7 @@ holders_summary:
count: 2
- value: Intel Corporation
count: 1
+allrights:
+ - Copyright (c) 2000 Atheros Communications, Inc., All Rights Reserved
+ - Copyright (c) 2001 Atheros Communications, Inc., All Rights Reserved
+ - Copyright (c) 1994-1997 by Intel Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/audio_c-c.c.yml b/tests/cluecode/data/copyrights/audio_c-c.c.yml
index dae1b52cd9b..3d778d8baa0 100644
--- a/tests/cluecode/data/copyrights/audio_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/audio_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke
count: 1
+allrights:
+ - copyright (c) 1995, AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/author_young_c-c.c.yml b/tests/cluecode/data/copyrights/author_young_c-c.c.yml
index e7d4fec90ef..9655fa76131 100644
--- a/tests/cluecode/data/copyrights/author_young_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/author_young_c-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Tim Hudson
count: 1
+allrights:
+ - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved.
+ - holder is Tim Hudson (tjh@mincom.oz.au).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml b/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml
index b2aaa9b8dd1..5f4749edc97 100644
--- a/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml
+++ b/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml
@@ -8,3 +8,5 @@ holders:
- University College London
authors:
- the Computer Science Department at University College London
+allrights:
+ - Copyright (c) 1998-2000 University College London All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml b/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml
index c70fb34fbfe..9a6ea631a26 100644
--- a/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml
+++ b/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Sun Microsystems
count: 1
+allrights:
+ - (c) Copyright 1989 Sun Microsystems, Inc.
+ - (c) Copyright Bigelow & Holmes 1986, 1985.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml b/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml
index 4d2bfc40727..8acb2dfbf35 100644
--- a/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml
+++ b/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Bitstream, Inc.
count: 1
+allrights:
+ - Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/brackets.txt.yml b/tests/cluecode/data/copyrights/brackets.txt.yml
index d1e4648b283..41c645f6f59 100644
--- a/tests/cluecode/data/copyrights/brackets.txt.yml
+++ b/tests/cluecode/data/copyrights/brackets.txt.yml
@@ -9,3 +9,5 @@ expected_failures:
- copyrights
- holders
notes: we only get Copyright (c) <2010-2012> as a detection for now.
+allrights:
+ - Copyright (c) 2010-2012 Jessup
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/bv.txt.yml b/tests/cluecode/data/copyrights/bv.txt.yml
index eb0f49c515a..23b7955c6c4 100644
--- a/tests/cluecode/data/copyrights/bv.txt.yml
+++ b/tests/cluecode/data/copyrights/bv.txt.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: HERE Europe B.V.
count: 1
+allrights:
+ - Copyright (c) 2016 HERE Europe B.V. All rights Reserved.
+ - (c) HERE 2016
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/c-c.c.yml b/tests/cluecode/data/copyrights/c-c.c.yml
index 3c905997df7..3773e542b09 100644
--- a/tests/cluecode/data/copyrights/c-c.c.yml
+++ b/tests/cluecode/data/copyrights/c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: STMicroelectronics
count: 1
+allrights:
+ - COPYRIGHT (c) STMicroelectronics 2005.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/c_include-h.h.yml b/tests/cluecode/data/copyrights/c_include-h.h.yml
index 07e66a4a286..5bdf2e341fb 100644
--- a/tests/cluecode/data/copyrights/c_include-h.h.yml
+++ b/tests/cluecode/data/copyrights/c_include-h.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: ST-Microelectronics
count: 1
+allrights:
+ - COPYRIGHT (c) ST-Microelectronics 1998.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/ccube_txt.txt.yml b/tests/cluecode/data/copyrights/ccube_txt.txt.yml
index da073deb44c..56d8fda7e55 100644
--- a/tests/cluecode/data/copyrights/ccube_txt.txt.yml
+++ b/tests/cluecode/data/copyrights/ccube_txt.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: C-Cube Microsystems
count: 1
+allrights:
+ - Copyright (c) 2001 C-Cube Microsystems. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml b/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml
index bae9836c453..6909af39dd0 100644
--- a/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml
+++ b/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: CERN - European Organization for Nuclear Research
count: 1
+allrights:
+ - Copyright 1999 CERN - European Organization for Nuclear Research.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml b/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml
index 43a4b65e423..cd7a526b78d 100644
--- a/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml
+++ b/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml
@@ -15,3 +15,7 @@ holders_summary:
count: 2
- value: CERN - European Organization for Nuclear Research
count: 1
+allrights:
+ - Copyright 1999 CERN - European Organization for Nuclear Research.
+ - Copyright (c) 1998 Company PIERSOL Engineering Inc.
+ - Copyright (c) 1998 Company PIERSOL Engineering Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/cnri-CNRI.yml b/tests/cluecode/data/copyrights/cnri-CNRI.yml
index 4b12e6dc680..0e79e102aa8 100644
--- a/tests/cluecode/data/copyrights/cnri-CNRI.yml
+++ b/tests/cluecode/data/copyrights/cnri-CNRI.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Corporation for National Research Initiatives
count: 1
+allrights:
+ - Copyright (c) 1995-2000 Corporation for National Research Initiatives All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml b/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml
index 29aef713b0a..3f998ec3280 100644
--- a/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml
+++ b/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Colin Percival
count: 1
+allrights:
+ - Copyright (c) 2009 The Android Open Source Project
+ - Copyright 2003-2005 Colin Percival All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml b/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml
index d8eb72e706f..b1e59f2ac25 100644
--- a/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml
+++ b/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Company Name Incorporated
count: 1
+allrights:
+ - Copyright (c) 2008-2011 Company Name Incorporated All rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml b/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml
index d8eb72e706f..b1e59f2ac25 100644
--- a/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml
+++ b/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Company Name Incorporated
count: 1
+allrights:
+ - Copyright (c) 2008-2011 Company Name Incorporated All rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml b/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml
index 238642b4db9..54bce11ae09 100644
--- a/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml
+++ b/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml
@@ -14,3 +14,6 @@ holders_summary:
count: 1
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright 2002 Jonas Borgstrom 2002 Daniel Lundin 2002 CodeFactory AB. All rights reserved.
+ - Copyright (c) 1994 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml b/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml
index aa18c454365..85760d53a1e 100644
--- a/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml
+++ b/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml
@@ -74,3 +74,30 @@ holders_summary:
count: 1
- value: The NetBSD Foundation, Inc.
count: 1
+allrights:
+ - Copyright (c) 2003, Steven G. Kargl All rights reserved.
+ - Copyright (c) 2003 Mike Barcroft
+ - Copyright (c) 2002, 2003 David Schultz
+ - Copyright (c) 2003 David Schultz
+ - Copyright (c) 2004 David Schultz
+ - Copyright (c) 2004-2005 David Schultz
+ - Copyright (c) 2005 David Schultz
+ - Copyright (c) 2002 David Schultz All rights reserved.
+ - Copyright (c) 2004 Stefan Farfeleder All rights reserved.
+ - Copyright (c) 2003 Dag-Erling Coidan Smorgrav All rights reserved.
+ - Copyright (c) 1996 The NetBSD Foundation, Inc. All rights reserved.
+ - Copyright (c) 1985, 1993
+ - Copyright (c) 1988, 1993 Copyright (c) 1992, 1993 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1993,94 Winning Strategies, Inc.
+ - Copyright (c) 1994 Winning Strategies, Inc. All rights reserved.
+ - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved.
+ - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved.
+ - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved.
+ - Copyright (c) 2004 by Sun Microsystems, Inc. All rights reserved.
+ - Copyright (c) 2004 Stefan Farfeleder
+ - Copyright (c) 2004 David Schultz
+ - Copyright (c) 2004, 2005 David Schultz
+ - Copyright (c) 2003 Mike Barcroft
+ - Copyright (c) 2005 David Schultz All rights reserved.
+ - Copyright (c) 2003, Steven G. Kargl All rights reserved.
+ - Copyright (c) 1991 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml b/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml
index 5cf69185082..09d9109ce15 100644
--- a/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml
+++ b/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml
@@ -29,3 +29,12 @@ holders_summary:
count: 1
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 1999-2006 The Apache Software Foundation
+ - copyright (c) 1999-2002, Lotus Development Corporation., http://www.lotus.com.
+ - copyright (c) 2001-2002, Sun Microsystems., http://www.sun.com.
+ - copyright (c) 2003, IBM Corporation., http://www.ibm.com.
+ - copyright (c) 1999, IBM Corporation., http://www.ibm.com.
+ - copyright (c) 1999, Sun Microsystems., http://www.sun.com.
+ - copyright (c) 1999, IBM Corporation., http://www.ibm.com.
+ - copyright (c) 1999, Sun Microsystems., http://www.sun.com.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/composite_copy.txt.yml b/tests/cluecode/data/copyrights/composite_copy.txt.yml
index e4c37b994af..08d5d7c120f 100644
--- a/tests/cluecode/data/copyrights/composite_copy.txt.yml
+++ b/tests/cluecode/data/copyrights/composite_copy.txt.yml
@@ -5,3 +5,5 @@ copyrights:
- copyrighted by Object Computing, Inc., St. Louis Missouri, Copyright (c) 2002
holders:
- Object Computing, Inc., St. Louis Missouri
+allrights:
+ - copyrighted by Object Computing, Inc., St. Louis Missouri, Copyright (c) 2002, all rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml b/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml
index 0e9aafd83b4..f119283bb0b 100644
--- a/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml
+++ b/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml
@@ -11,3 +11,5 @@ holders_summary:
- value: Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison,
WI.
count: 1
+allrights:
+ - Copyright 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml b/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml
index ea1c0a55193..cdbc6ef4580 100644
--- a/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml
+++ b/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml
@@ -13,3 +13,5 @@ holders_summary:
copyrights_summary:
- value: Copyright Foobar Pvt. Ltd
count: 1
+allrights:
+ - Copyright Foobar Pvt. Ltd.. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml b/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml
index c2aace97f67..1ae5bd7520f 100644
--- a/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Robert Bosch GmbH and its subsidiaries
count: 1
+allrights:
+ - Copyright (c) 2009, 2018 Robert Bosch GmbH and its subsidiaries.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml b/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml
index 4fd838a43ca..131e4e56456 100644
--- a/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml
@@ -13,3 +13,7 @@ holders:
holders_summary:
- value: Hewlett-Packard
count: 3
+allrights:
+ - Copyright (c) 1993-2007 Hewlett-Packard Company ALL RIGHTS RESERVED.
+ - copyrighted works of Hewlett-Packard Co.
+ - (c) Copyright 1993-2007 Hewlett-Packard Co.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml b/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml
index 4ae29eb57aa..e2e6783a06a 100644
--- a/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: David Turner, Robert Wilhelm, and Werner Lemberg
count: 1
+allrights:
+ - Copyright 1996-2005, 2008-2011 by David Turner, Robert Wilhelm, and Werner Lemberg.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml b/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml
index 536b626cec2..f1332d836c0 100644
--- a/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: D.T.Shield
count: 1
+allrights:
+ - Copyright 1999, 2000 - D.T.Shield.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml b/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml
index 00771a3c88a..05e4aeccca3 100644
--- a/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Trolltech ASA.
count: 1
+allrights:
+ - Copyright (c) Trolltech ASA. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml b/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml
index 23564906910..2f65f8b6d6a 100644
--- a/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Trolltech ASA.
count: 1
+allrights:
+ - Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+ - (c) 1994-2008 Trolltech ASA.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml b/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml
index c9a1c9a31c4..5f7d253997c 100644
--- a/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Nokia Corporation and/or its subsidiary(-ies)
count: 1
+allrights:
+ - Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml b/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml
index b9e7a1024ae..6ba8eab276b 100644
--- a/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Ian F. Darwin
count: 1
+allrights:
+ - Copyright (c) Ian F. Darwin 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml b/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml
index 0c3b650b4fc..afa7aaef91f 100644
--- a/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml
+++ b/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Internet Society
count: 1
+allrights:
+ - Copyright (c) The Internet Society (2004).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml b/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml
index e68885cd193..b5223c20db1 100644
--- a/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml
+++ b/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml
@@ -55,3 +55,23 @@ holders_summary:
count: 1
- value: Internet Software Consortium
count: 1
+allrights:
+ - Copyright (c) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+ - Copyright (c) 1990, 1993, 1994 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+ - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1999-2006 Free Software Foundation, Inc.
+ - Copyright (c) 1997, 1998, 1999 Colin Plumb.
+ - Copyright (c) 2005, 2006 Free Software Foundation, Inc.
+ - Copyright (c) 1996-1999 by Internet Software Consortium.
+ - Copyright (c) 2004, 2006, 2007 Free Software Foundation, Inc.
+ - Copyright (c) 1997-2007 Free Software Foundation, Inc.
+ - Copyright (c) 1984 David M. Ihnat
+ - Copyright (c) 1996-2007 Free Software Foundation, Inc.
+ - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin
+ - Copyright (c) 1997-2005 Free Software Foundation, Inc.
+ - Copyright (c) 1984 David M. Ihnat
+ - Copyright (c) 1999-2007 Free Software Foundation, Inc.
+ - Copyright (c) 1997, 1998, 1999 Colin Plumb.
+ - Copyright 1994-1996, 2000-2008 Free Software Foundation, Inc.
+ - Copyright (c) 1984-2008 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml b/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml
index 94bede6cbea..b7db6412ea8 100644
--- a/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml
+++ b/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Dag-Erling Coidan Smorgrav
count: 1
+allrights:
+ - Copyright (c) 2003 Dag-Erling Coidan Smorgrav All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml b/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml
index 43afb7d33bb..82591e9ed0d 100644
--- a/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml
+++ b/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Dag-Erling Codan Smrgrav
count: 1
+allrights:
+ - Copyright (c) 2003 Dag-Erling Codan Smrgrav All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml b/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml
index ba237805f23..ee5bc0d15d5 100644
--- a/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Dahua Digital
count: 1
+allrights:
+ - (c) Copyright 2006 to 2007 Dahua Digital.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml b/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml
index 61a541490ca..44b3b15fe76 100644
--- a/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml
+++ b/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml
@@ -65,3 +65,19 @@ notes: |
These are missing the trailing: and Rabbit Technologies Ltd.
Copyright (c) 2007, 2008 LShift Ltd. , Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
Copyright (c) 2007 LShift Ltd. , Cohesive Financial Technologies LLC.', and Rabbit Technologies Ltd.
+allrights:
+ - Copyright 2004 The Apache Software Foundation
+ - Copyright (c) 2001-2005 Novell
+ - Copyright (c) Microsoft Corporation. All rights reserved.
+ - Copyright (c) 2007 James Newton-King
+ - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+ - Copyright (c) 2000-2004 Philip A. Craig
+ - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+ - Copyright (c) 2000-2004 Philip A. Craig
+ - Copyright (c) 2007, 2008 LShift Ltd.
+ - Copyright (c) 2007, 2008 Cohesive Financial Technologies LLC.
+ - Copyright (c) 2007, 2008 Rabbit Technologies Ltd.
+ - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) 2007 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) ???? Simon Mourier
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml b/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml
index ecb3b0639d5..297cbaa242c 100644
--- a/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml
+++ b/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml
@@ -61,3 +61,19 @@ holders_summary:
count: 1
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2004 The Apache Software Foundation
+ - Copyright (c) 2001-2005 Novell
+ - Copyright (c) Microsoft Corporation. All rights reserved.
+ - Copyright (c) 2007 James Newton-King
+ - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+ - Copyright (c) 2000-2004 Philip A. Craig
+ - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+ - Copyright (c) 2000-2004 Philip A. Craig
+ - Copyright (c) 2007, 2008 LShift Ltd.
+ - Copyright (c) 2007, 2008 Cohesive Financial Technologies LLC.
+ - Copyright (c) 2007, 2008 Rabbit Technologies Ltd.
+ - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) 2007 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) ???? Simon Mourier
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml b/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml
index ecb3b0639d5..297cbaa242c 100644
--- a/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml
+++ b/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml
@@ -61,3 +61,19 @@ holders_summary:
count: 1
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2004 The Apache Software Foundation
+ - Copyright (c) 2001-2005 Novell
+ - Copyright (c) Microsoft Corporation. All rights reserved.
+ - Copyright (c) 2007 James Newton-King
+ - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+ - Copyright (c) 2000-2004 Philip A. Craig
+ - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+ - Copyright (c) 2000-2004 Philip A. Craig
+ - Copyright (c) 2007, 2008 LShift Ltd.
+ - Copyright (c) 2007, 2008 Cohesive Financial Technologies LLC.
+ - Copyright (c) 2007, 2008 Rabbit Technologies Ltd.
+ - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) 2007 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
+ - Copyright (c) ???? Simon Mourier
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml b/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml
index 785af3905a1..223411de3b7 100644
--- a/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml
+++ b/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml
@@ -80,3 +80,23 @@ holders_summary:
count: 1
- value: Ximian, Inc., Gergo Erdi
count: 1
+allrights:
+ - Copyright 1999-2004 Ximian, Inc. 1999-2005 Novell, Inc.
+ - copyright 2000-2003 Ximian, Inc., 2003 Gergo Erdi
+ - copyright 2000 Eskil Heyn Olsen, 2000 Ximian, Inc.
+ - copyright 1998 The Free Software Foundation, 2000 Ximian, Inc.
+ - copyright 1998-2005 The OpenLDAP Foundation.
+ - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. All Rights Reserved.
+ - Copyright 1999-2000 Eric Busboom, The Software Studio (http://www.softwarestudio.org) 2001 Critical Path
+ - (c) Copyright 1996 Apple Computer, Inc., AT&T Corp., International Business Machines Corporation and Siemens Rolm Communications Inc.
+ - Copyright (c) 1997 Theo de Raadt.
+ - copyright 2000 Andrea Campi.
+ - copyright 2002 Andrea Campi
+ - copyright 2003 Andrea Campi
+ - Copyright 2002 Jonas Borgstrom 2002 Daniel Lundin 2002 CodeFactory AB. All rights reserved.
+ - copyright 1996 Apple Computer, Inc., AT&T Corp., International Business Machines Corporation and Siemens Rolm Communications Inc.
+ - copyright 1986-2000 Hiram Clawson. All rights reserved.
+ - copyright 1997 Theo de Raadt.
+ - Copyright (c) 1996-2002 Sleepycat Software. All rights reserved.
+ - Copyright (c) 1990, 1993, 1994, 1995, 1996 Keith Bostic. All rights reserved.
+ - Copyright (c) 1990, 1993, 1994, 1995 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml b/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml
index c2c0c12ae41..c8c50a01155 100644
--- a/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml
+++ b/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: LizardTech, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002 Leon Bottou and Yann Le Cun.
+ - Copyright (c) 2001 AT&T
+ - Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/doc-DOC.yml b/tests/cluecode/data/copyrights/doc-DOC.yml
index 1701f36e2dd..bedf996d906 100644
--- a/tests/cluecode/data/copyrights/doc-DOC.yml
+++ b/tests/cluecode/data/copyrights/doc-DOC.yml
@@ -12,3 +12,5 @@ holders_summary:
- value: Douglas C. Schmidt and his research group at Washington University, University of
California, Irvine, and Vanderbilt University
count: 1
+allrights:
+ - copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2008, all rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml b/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml
index 67e0f950454..4842f5bc8ea 100644
--- a/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml
+++ b/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml
@@ -21,3 +21,8 @@ holders_summary:
count: 1
- value: The DocBook Project
count: 1
+allrights:
+ - Copyright (c) 1999-2007 Norman Walsh.
+ - Copyright (c) 2003 Jiri Kosek.
+ - Copyright (c) 2004-2007 Steve Ball.
+ - Copyright (c) 2005-2008 The DocBook Project.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml b/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml
index 4cbd67f8592..ecd05146552 100644
--- a/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml
+++ b/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Kenneth MacKay
count: 1
+allrights:
+ - Copyright 2014, Kenneth MacKay.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml b/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml
index 909e9090790..05b01c5062e 100644
--- a/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml
+++ b/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Martin Birgmeier
count: 1
+allrights:
+ - Copyright (c) 1993 Martin Birgmeier All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml b/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml
index 50d775dbc73..fea69ba16b0 100644
--- a/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml
+++ b/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/ed-ed.copyright.yml b/tests/cluecode/data/copyrights/ed-ed.copyright.yml
index 9ad3fd072be..4a1f2cdc12e 100644
--- a/tests/cluecode/data/copyrights/ed-ed.copyright.yml
+++ b/tests/cluecode/data/copyrights/ed-ed.copyright.yml
@@ -21,3 +21,8 @@ holders_summary:
count: 1
- value: James Troup
count: 1
+allrights:
+ - Copyright (c) 1993, 1994 Andrew Moore, Talke Studio.
+ - Copyright (c) 2006, 2007 Antonio Diaz Diaz.
+ - Copyright (c) 1997-2007 James Troup.
+ - Copyright (c) 1993, 2006, 2007 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/entessa-Entessa.yml b/tests/cluecode/data/copyrights/entessa-Entessa.yml
index d722f909cf1..38364847638 100644
--- a/tests/cluecode/data/copyrights/entessa-Entessa.yml
+++ b/tests/cluecode/data/copyrights/entessa-Entessa.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Entessa, LLC.
count: 1
+allrights:
+ - Copyright (c) 2003 Entessa, LLC. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml b/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml
index 679322b4ce3..a12773abb29 100644
--- a/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml
+++ b/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 2004 the Initial Developer. All Rights Reserved.
+ - (c) 2003-2007, the Debian GNOME team
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml b/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml
index 94304adb22f..e51920b640c 100644
--- a/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml
+++ b/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: IBM Corporation and others
count: 1
+allrights:
+ - Copyright (c) 2003, 2005 IBM Corporation and others. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/eric_young_c-c.c.yml b/tests/cluecode/data/copyrights/eric_young_c-c.c.yml
index e7d4fec90ef..9655fa76131 100644
--- a/tests/cluecode/data/copyrights/eric_young_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/eric_young_c-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Tim Hudson
count: 1
+allrights:
+ - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved.
+ - holder is Tim Hudson (tjh@mincom.oz.au).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/errno_atheros-c.c.yml b/tests/cluecode/data/copyrights/errno_atheros-c.c.yml
index aff285c3c14..38c56bf146b 100644
--- a/tests/cluecode/data/copyrights/errno_atheros-c.c.yml
+++ b/tests/cluecode/data/copyrights/errno_atheros-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml b/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml
index aff285c3c14..38c56bf146b 100644
--- a/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml
+++ b/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/errno_c-c.c.yml b/tests/cluecode/data/copyrights/errno_c-c.c.yml
index aff285c3c14..38c56bf146b 100644
--- a/tests/cluecode/data/copyrights/errno_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/errno_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/error-prone.txt.yml b/tests/cluecode/data/copyrights/error-prone.txt.yml
index 47b523b1e05..c14aa1811e6 100644
--- a/tests/cluecode/data/copyrights/error-prone.txt.yml
+++ b/tests/cluecode/data/copyrights/error-prone.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2015 The Error Prone Authors
holders:
- The Error Prone Authors
+allrights:
+ - Copyright 2015 The Error Prone Authors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/et_al.txt.yml b/tests/cluecode/data/copyrights/et_al.txt.yml
index 7c6ea01eb77..d124003a5aa 100644
--- a/tests/cluecode/data/copyrights/et_al.txt.yml
+++ b/tests/cluecode/data/copyrights/et_al.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Contributors et.al
count: 1
+allrights:
+ - Copyright (c) 2017 Contributors et.al.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml b/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml
index 87f0c9bd6af..a7c9115e9ae 100644
--- a/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml
+++ b/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: EU DataGrid
count: 1
+allrights:
+ - Copyright (c) 2001 EU DataGrid. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml b/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml
index b53955b45d6..b6a173e5312 100644
--- a/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml
+++ b/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The FreeBSD Project
count: 1
+allrights:
+ - Copyright 1994-2006 The FreeBSD Project. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/freetype-FreeType.yml b/tests/cluecode/data/copyrights/freetype-FreeType.yml
index 44b836e35d6..45f382aee82 100644
--- a/tests/cluecode/data/copyrights/freetype-FreeType.yml
+++ b/tests/cluecode/data/copyrights/freetype-FreeType.yml
@@ -15,3 +15,7 @@ holders_summary:
count: 2
- value: The FreeType Project
count: 1
+allrights:
+ - Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg
+ - copyright (c) The FreeType Project (www.freetype.org). All rights reserved.
+ - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg. All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/gailly-c.c.yml b/tests/cluecode/data/copyrights/gailly-c.c.yml
index 26617e14bb5..8723baa7693 100644
--- a/tests/cluecode/data/copyrights/gailly-c.c.yml
+++ b/tests/cluecode/data/copyrights/gailly-c.c.yml
@@ -13,3 +13,7 @@ holders:
holders_summary:
- value: Jean-loup Gailly
count: 3
+allrights:
+ - Copyright (c) 1992-1993 Jean-loup Gailly.
+ - Copyright (c) 1992-1993 Jean-loup Gailly
+ - Copyright (c) 1992-1993 Jean-loup Gailly
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/glide-Glide.yml b/tests/cluecode/data/copyrights/glide-Glide.yml
index 3e499f9a14a..c5bf9a274ad 100644
--- a/tests/cluecode/data/copyrights/glide-Glide.yml
+++ b/tests/cluecode/data/copyrights/glide-Glide.yml
@@ -13,3 +13,7 @@ holders:
holders_summary:
- value: 3dfx Interactive, Inc.
count: 3
+allrights:
+ - copyright notice (3dfx Interactive, Inc. 1999)
+ - COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED
+ - COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/grapelli_content.css.yml b/tests/cluecode/data/copyrights/grapelli_content.css.yml
index fe8ac2ee111..0d13a9f9ab4 100644
--- a/tests/cluecode/data/copyrights/grapelli_content.css.yml
+++ b/tests/cluecode/data/copyrights/grapelli_content.css.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: vonautomatisch werkstaetten
count: 1
+allrights:
+ - Copyright (c) 2009, vonautomatisch werkstaetten. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/gsoap-gSOAP.yml b/tests/cluecode/data/copyrights/gsoap-gSOAP.yml
index fa934be422f..061462199b0 100644
--- a/tests/cluecode/data/copyrights/gsoap-gSOAP.yml
+++ b/tests/cluecode/data/copyrights/gsoap-gSOAP.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: Robert A. van Engelen, Genivia inc.
count: 2
+allrights:
+ - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved.
+ - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/h-h.h.yml b/tests/cluecode/data/copyrights/h-h.h.yml
index 07e66a4a286..5bdf2e341fb 100644
--- a/tests/cluecode/data/copyrights/h-h.h.yml
+++ b/tests/cluecode/data/copyrights/h-h.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: ST-Microelectronics
count: 1
+allrights:
+ - COPYRIGHT (c) ST-Microelectronics 1998.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml b/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml
index 50e7c9e8850..db0e0e9605f 100644
--- a/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml
+++ b/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Hans-Jurgen Koch
count: 1
+allrights:
+ - Copyright (c) 2006 by Hans-Jurgen Koch.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml b/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml
index e86b5160c15..d97e7af1262 100644
--- a/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml
+++ b/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Thomas Hansen
count: 1
+allrights:
+ - Copyright 2009 - Thomas Hansen thomas@ra-ajax.org.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/heunrich_c-c.c.yml b/tests/cluecode/data/copyrights/heunrich_c-c.c.yml
index 964b477d867..58d2bd84dcb 100644
--- a/tests/cluecode/data/copyrights/heunrich_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/heunrich_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: HEUNRICH HERTZ INSTITUTE
count: 1
+allrights:
+ - Copyright (c) 2000 HEUNRICH HERTZ INSTITUTE All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml b/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml
index 5d4e8b16ccc..44778f8d56e 100644
--- a/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml
+++ b/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Hewlett-Packard
count: 1
+allrights:
+ - (c) HEWLETT-PACKARD COMPANY, 2004.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/holders.txt.yml b/tests/cluecode/data/copyrights/holders.txt.yml
index e64f5e056b0..8311625ee27 100644
--- a/tests/cluecode/data/copyrights/holders.txt.yml
+++ b/tests/cluecode/data/copyrights/holders.txt.yml
@@ -7,3 +7,6 @@ copyrights:
holders:
- Tim Hudson
- Kevin Vandersloot Erik Johnsson
+allrights:
+ - holder is Tim Hudson (tjh@mincom.oz.au).
+ - Copyright Holders Kevin Vandersloot Erik Johnsson
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml b/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml
index 7500697a0dd..caa8ee14d07 100644
--- a/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml
+++ b/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Marcel Holtmann
count: 1
+allrights:
+ - Copyright (c) 2005-2010 Marcel Holtmann
+ - Copyright (c) 2010, Code Aurora Forum. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml b/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml
index 7bab37afb2f..ab6dceaff58 100644
--- a/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml
+++ b/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml
@@ -21,3 +21,8 @@ holders_summary:
count: 1
- value: Torsten Landschoff
count: 1
+allrights:
+ - Copyright (c) 2003-2004 by Torsten Landschoff
+ - Copyright (c) 2004-2006 by Henrique de Moraes Holschuh
+ - Copyright (c) 2001-2006 Hewlett-Packard Company
+ - Copyright (c) 2001-2006 Hewlett-Packard Development Company, L.P. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml b/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml
index 0edf4ae02e2..3e557cdd992 100644
--- a/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml
+++ b/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: International Business Machines Corporation and others
count: 1
+allrights:
+ - Copyright (c) 1996, 1999 International Business Machines Corporation and others. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/ietf-IETF.yml b/tests/cluecode/data/copyrights/ietf-IETF.yml
index 361332ee376..956f3b8ae16 100644
--- a/tests/cluecode/data/copyrights/ietf-IETF.yml
+++ b/tests/cluecode/data/copyrights/ietf-IETF.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Internet Society
count: 1
+allrights:
+ - Copyright (c) The Internet Society (2003). All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/ijg-IJG.yml b/tests/cluecode/data/copyrights/ijg-IJG.yml
index d2d234661a5..32885858d8b 100644
--- a/tests/cluecode/data/copyrights/ijg-IJG.yml
+++ b/tests/cluecode/data/copyrights/ijg-IJG.yml
@@ -25,3 +25,9 @@ holders_summary:
count: 1
- value: Thomas G. Lane
count: 1
+allrights:
+ - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved
+ - copyright holder, Aladdin Enterprises of Menlo Park
+ - copyright by the Free Software Foundation
+ - copyright by M.I.T.
+ - Copyright property of CompuServe Incorporated.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml b/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml
index 82043ced6ef..5b061b9ae72 100644
--- a/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml
+++ b/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Board of Trustees of the University of Illinois
count: 1
+allrights:
+ - Copyright 1999,2000,2001,2002,2003,2004 The Board of Trustees of the University of Illinois All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/imatix-iMatix.yml b/tests/cluecode/data/copyrights/imatix-iMatix.yml
index 74e15d079af..5c5706bf5a6 100644
--- a/tests/cluecode/data/copyrights/imatix-iMatix.yml
+++ b/tests/cluecode/data/copyrights/imatix-iMatix.yml
@@ -17,3 +17,9 @@ holders:
holders_summary:
- value: iMatix Corporation
count: 5
+allrights:
+ - Copyright 1991-2000 iMatix Corporation.
+ - Copyright 1991-2000 iMatix Corporation
+ - Copyright 1991-2000 iMatix Corporation http://www.imatix.com
+ - Parts copyright (c) 1991-2000 iMatix Corporation.
+ - Copyright 1996-2000 iMatix Corporation
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/in_docstring.py.yml b/tests/cluecode/data/copyrights/in_docstring.py.yml
index c4b8c8350c5..a1cdcab1040 100644
--- a/tests/cluecode/data/copyrights/in_docstring.py.yml
+++ b/tests/cluecode/data/copyrights/in_docstring.py.yml
@@ -6,3 +6,5 @@ copyrights:
- (c) 1989-2000 Baz Corporation
holders:
- Baz Corporation
+allrights:
+ - (c) 1989-2000 Baz Corporation. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/index.html.yml b/tests/cluecode/data/copyrights/index.html.yml
index fa73b5d62f4..19bc871d597 100644
--- a/tests/cluecode/data/copyrights/index.html.yml
+++ b/tests/cluecode/data/copyrights/index.html.yml
@@ -47,3 +47,26 @@ holders:
- Epic Games, Inc.
- Christian Rau
- Yann Collet
+allrights:
+ - Copyright (c) 2002-2009 Charlie Poole
+ - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
+ - Copyright (c) 2000-2002 Philip A. Craig
+ - Copyright (c) 2003-2008, Terence Parr. All rights reserved.
+ - Copyright (c) 1994-2011 Lua.org, PUC-Rio
+ - Copyright (c) 2000,2001,2002,2003,2004,2006,2007 Keith Packard
+ - Copyright (c) 2005 Patrick Lam
+ - Copyright (c) 2009 Roozbeh Pournader
+ - Copyright (c) 2008, 2009 Red Hat, Inc.
+ - Copyright (c) 2008 Danilo Segan
+ - Copyright (c) Microsoft Corporation
+ - Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies) and other contributors.
+ - Copyright (c) 1991, 1999 Free Software Foundation, Inc.
+ - copyright (c) 2012 The FreeType Project (www.freetype.org). All rights reserved.
+ - copyright (c) Imagination Technologies Limited. All rights reserved.
+ - Copyright (c) 2008 Google Inc.
+ - copyright (c) Imagination Technologies Limited. All rights reserved.
+ - Copyright (c) 2003-2004 Silicon Graphics, Inc.
+ - Copyright (c) Microsoft Corporation. All Rights Reserved.
+ - copyright (c) Epic Games, Inc. All rights reserved.
+ - Copyright (c) 2012-2013 Christian Rau
+ - Copyright (c) 2011-2014, Yann Collet.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/index.txt.yml b/tests/cluecode/data/copyrights/index.txt.yml
index fa73b5d62f4..19bc871d597 100644
--- a/tests/cluecode/data/copyrights/index.txt.yml
+++ b/tests/cluecode/data/copyrights/index.txt.yml
@@ -47,3 +47,26 @@ holders:
- Epic Games, Inc.
- Christian Rau
- Yann Collet
+allrights:
+ - Copyright (c) 2002-2009 Charlie Poole
+ - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
+ - Copyright (c) 2000-2002 Philip A. Craig
+ - Copyright (c) 2003-2008, Terence Parr. All rights reserved.
+ - Copyright (c) 1994-2011 Lua.org, PUC-Rio
+ - Copyright (c) 2000,2001,2002,2003,2004,2006,2007 Keith Packard
+ - Copyright (c) 2005 Patrick Lam
+ - Copyright (c) 2009 Roozbeh Pournader
+ - Copyright (c) 2008, 2009 Red Hat, Inc.
+ - Copyright (c) 2008 Danilo Segan
+ - Copyright (c) Microsoft Corporation
+ - Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies) and other contributors.
+ - Copyright (c) 1991, 1999 Free Software Foundation, Inc.
+ - copyright (c) 2012 The FreeType Project (www.freetype.org). All rights reserved.
+ - copyright (c) Imagination Technologies Limited. All rights reserved.
+ - Copyright (c) 2008 Google Inc.
+ - copyright (c) Imagination Technologies Limited. All rights reserved.
+ - Copyright (c) 2003-2004 Silicon Graphics, Inc.
+ - Copyright (c) Microsoft Corporation. All Rights Reserved.
+ - copyright (c) Epic Games, Inc. All rights reserved.
+ - Copyright (c) 2012-2013 Christian Rau
+ - Copyright (c) 2011-2014, Yann Collet.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/intel-Intel.yml b/tests/cluecode/data/copyrights/intel-Intel.yml
index 40d684b06fe..71097504189 100644
--- a/tests/cluecode/data/copyrights/intel-Intel.yml
+++ b/tests/cluecode/data/copyrights/intel-Intel.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Intel Corporation
count: 1
+allrights:
+ - Copyright (c) 2006, Intel Corporation. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/isc-c.c.yml b/tests/cluecode/data/copyrights/isc-c.c.yml
index ea1cffdc657..51a65b6f3da 100644
--- a/tests/cluecode/data/copyrights/isc-c.c.yml
+++ b/tests/cluecode/data/copyrights/isc-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Internet Software Consortium
count: 1
+allrights:
+ - Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/jabber-Jabber.yml b/tests/cluecode/data/copyrights/jabber-Jabber.yml
index 75fcd9bd308..beaa0f326d9 100644
--- a/tests/cluecode/data/copyrights/jabber-Jabber.yml
+++ b/tests/cluecode/data/copyrights/jabber-Jabber.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Jeremie Miller
count: 1
+allrights:
+ - Copyright (c) 1999-2000 Jabber.com, Inc. All Rights Reserved.
+ - Portions Copyright (c) 1998-1999 Jeremie Miller.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/java-java.java.yml b/tests/cluecode/data/copyrights/java-java.java.yml
index 3ccecfc58a1..b167fd30251 100644
--- a/tests/cluecode/data/copyrights/java-java.java.yml
+++ b/tests/cluecode/data/copyrights/java-java.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: P.J. Plauger
count: 1
+allrights:
+ - Copyright (c) 1992-2002 by P.J. Plauger. ALL RIGHTS RESERVED.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml b/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml
index b44bae84051..97ae8881bb1 100644
--- a/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml
+++ b/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml
@@ -3,3 +3,5 @@ what:
- copyrights
copyrights:
- Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc.
+allrights:
+ - Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/jdoe-c.c.yml b/tests/cluecode/data/copyrights/jdoe-c.c.yml
index de07adae147..bde40b2acd4 100644
--- a/tests/cluecode/data/copyrights/jdoe-c.c.yml
+++ b/tests/cluecode/data/copyrights/jdoe-c.c.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: J-Doe
count: 1
+allrights:
+ - Copyright 2009 J-Doe. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/jpython-JPython.yml b/tests/cluecode/data/copyrights/jpython-JPython.yml
index dc5e3503b59..b511b479b9d 100644
--- a/tests/cluecode/data/copyrights/jpython-JPython.yml
+++ b/tests/cluecode/data/copyrights/jpython-JPython.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Corporation for National Research Initiatives
count: 1
+allrights:
+ - Copyright 1996-1999 Corporation for National Research Initiatives All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml b/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml
index 4a9481c6413..ae3039aaa8c 100644
--- a/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml
+++ b/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: IOLA and Ole Laursen
count: 1
+allrights:
+ - Copyright (c) 2007-2014 IOLA and Ole Laursen.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml b/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml
index ab2ac228a6c..a112170ccd7 100644
--- a/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml
+++ b/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Lawrence E. Rosen
count: 1
+allrights:
+ - Copyright (c) 2002 Lawrence E. Rosen. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml b/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml
index 974287488ea..adea638d8c8 100644
--- a/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml
+++ b/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: Tony Finch
count: 1
+allrights:
+ - Copyright 1997-2000 Ian Jackson
+ - Copyright 1999 Tony Finch
+ - Copyright (c) 1991 Massachusetts Institute of Technology.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml b/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml
index fa3169e373e..68587aa2bce 100644
--- a/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml
+++ b/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml
@@ -37,3 +37,12 @@ holders_summary:
count: 1
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1991,92,93,94,95,96,97,98,99,2000,2001,2002,2003,2004,2005, 2006,2007,2008 Free Software Foundation, Inc.
+ - Copyright (c) 1991,92,93,94,95,96,97,98,99,2000,2001,2002,2003,2004,2005, 2006,2007,2008 Free Software Foundation, Inc.
+ - Copyright (c) 1991 Regents of the University of California. All rights reserved.
+ - Portions Copyright (c) 1993 by Digital Equipment Corporation.
+ - Copyright (c) 1984, Sun Microsystems, Inc.
+ - Copyright (c) 1991,1990,1989 Carnegie Mellon University All Rights Reserved.
+ - Copyright (c) 2000, Intel Corporation
+ - copyright (c) by Craig Metz
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml b/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml
index e52246af6a5..18f661dd0f6 100644
--- a/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml
+++ b/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml
@@ -82,3 +82,23 @@ holders_summary:
count: 1
- value: Yggdrasil Computing, Incorporated
count: 1
+allrights:
+ - Copyright (c) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Rocky Bernstein
+ - Copyright (c) 2000, 2001, 2003, 2004, 2005, 2008 Herbert Valerio Riedel
+ - Copyright (c) 1996, 1997, 1998 Gerd Knorr
+ - Copyright (c) 2001 Xiph.org
+ - Copyright (c) 1994, 1995, 1996, 1997, 1998, 2001 Heiko Eissfeldt
+ - Copyright (c) 1998, 1999, 2001 Monty
+ - Copyright (c) 2008 Robert W. Fuller
+ - Copyright (c) 2006, 2008 Burkhard Plaum
+ - Copyright (c) 2001, 2002 Ben Fennema
+ - Copyright (c) 2001, 2002 Scott Long
+ - Copyright (c) 1993 Yggdrasil Computing, Incorporated
+ - Copyright (c) 1999, 2000 J. Schilling
+ - Copyright (c) 2001 Sven Ottemann
+ - Copyright (c) 2003 Svend Sanjay Sorensen
+ - Copyright (c) 1985, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+ - Copyright (c) 2003 Matthias Drochner
+ - Copyright (c) 1998-2001 VideoLAN Johan Bilien and Gildas Bazin
+ - Copyright (c) 1992, 1993 Eric Youngdale
+ - Copyright (c) 2003, 2004, 2005, 2006, 2007, 2008 Rocky Bernstein and Herbert Valerio Riedel.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml b/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml
index 5aaaca86426..fc173952498 100644
--- a/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml
+++ b/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: Stephen Zander
count: 1
+allrights:
+ - Copyright (c) 1999-2003 Joshua Chamas.
+ - Copyright (c) 1998 Gisle Aas.
+ - copyright (c) 2003 Stephen Zander
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml b/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml
index c4d94670cf2..4d9f2205dee 100644
--- a/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml
+++ b/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Jody Goldberg and others
count: 1
+allrights:
+ - Copyright (c) 2003-2008 Jody Goldberg (jody@gnome.org) and others.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml b/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml
index 5b1be285373..5a512698790 100644
--- a/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml
+++ b/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Internet Software Consortium
count: 1
+allrights:
+ - Copyright (c) 1996-2001 Internet Software Consortium.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml b/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml
index 5b1be285373..5a512698790 100644
--- a/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml
+++ b/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Internet Software Consortium
count: 1
+allrights:
+ - Copyright (c) 1996-2001 Internet Software Consortium.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml b/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml
index 5b1be285373..5a512698790 100644
--- a/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml
+++ b/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Internet Software Consortium
count: 1
+allrights:
+ - Copyright (c) 1996-2001 Internet Software Consortium.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml b/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml
index d2d234661a5..32885858d8b 100644
--- a/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml
+++ b/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml
@@ -25,3 +25,9 @@ holders_summary:
count: 1
- value: Thomas G. Lane
count: 1
+allrights:
+ - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved
+ - copyright holder, Aladdin Enterprises of Menlo Park
+ - copyright by the Free Software Foundation
+ - copyright by M.I.T.
+ - Copyright property of CompuServe Incorporated.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml b/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml
index e9062fec3e7..22c1f6d2af3 100644
--- a/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml
+++ b/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Phillip Vandry
count: 1
+allrights:
+ - Copyright 1996..2005 by Phillip Vandry All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml b/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml
index 0d5a816dc66..aa0b186d35c 100644
--- a/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml
+++ b/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml
@@ -37,3 +37,14 @@ holders_summary:
count: 1
- value: Thomas G. Lane, Part of the Independent JPEG Group's
count: 1
+allrights:
+ - Copyright (c) 2007, David Paleino
+ - Copyright (c) 2005-2009, Hubert Figuiere
+ - Copyright (c) 2006, Hubert Figuiere
+ - (c) 2001, Lutz Muller
+ - Copyright (c) 2007, Hubert Figuiere
+ - (c) 1994, Kongji Huang and Brian C. Smith, Cornell University. All rights reserved.
+ - (c) 1993, Brian C. Smith, The Regents of the University of California. All rights reserved.
+ - (c) 1991-1992, Thomas G. Lane, Part of the Independent JPEG Group's
+ - Copyright (c) 2005, Hubert Figuiere
+ - Copyright (c) 2007, Hubert Figuiere
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml b/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml
index 80403d18986..269b1e1f08a 100644
--- a/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml
+++ b/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Robert Osfield
count: 1
+allrights:
+ - Copyright (c) 2002 Robert Osfield.
+ - Copyright (c) 1998 Julian Smart, Robert Roebling
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml b/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml
index 23564906910..2f65f8b6d6a 100644
--- a/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml
+++ b/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Trolltech ASA.
count: 1
+allrights:
+ - Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+ - (c) 1994-2008 Trolltech ASA.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml b/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml
index 488aeaa2b9a..fa3aeccd1ff 100644
--- a/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml
+++ b/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml
@@ -21,3 +21,8 @@ holders_summary:
count: 1
- value: Trolltech ASA.
count: 1
+allrights:
+ - Copyright (c) 2009 Modestas Vainius
+ - Copyright (c) Trolltech ASA. All Rights Reserved.
+ - Copyright (c) Roberto Raggi
+ - Copyright (c) Harald Fernengel
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml b/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml
index 3ef61788417..281db8829ef 100644
--- a/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml
+++ b/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1989 Regents of the University of California. All rights reserved.
+ - Portions Copyright (c) 1993, 1994, 1995 by NEC Systems Laboratory.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml b/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml
index f10823f4462..5e9f6d7a45c 100644
--- a/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml
+++ b/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml
@@ -45,3 +45,14 @@ holders_summary:
count: 1
- value: uim Project
count: 1
+allrights:
+ - Copyright (c) 2003-2007 uim Project http://uim.freedesktop.org
+ - COPYRIGHT (c) 1988-1994 BY PARADIGM ASSOCIATES INCORPORATED, CAMBRIDGE, MASSACHUSETTS. ALL RIGHTS RESERVED
+ - Copyright (c) 2006, SHIMODA Hiroshi
+ - Copyright (c) 2006, FUJITA Yuji
+ - Copyright (c) 2006, Jun Mukai
+ - Copyright (c) 2006, Teppei Tamra
+ - Copyright (c) 2005 UTUMI Hirosi
+ - Copyright (c) 2006 YAMAMOTO Kengo
+ - Copyright (c) 2006 Jae-hyeon Park
+ - Copyright (c) 2006 Etsushi Kato All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml b/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml
index 4fc295343a7..b0408113119 100644
--- a/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml
+++ b/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml
@@ -44,3 +44,13 @@ holders_summary:
count: 1
- value: The Open Group
count: 1
+allrights:
+ - Copyright 1986, 1987, 1988, 1989, 1994, 1998 The Open Group
+ - Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts.
+ - Copyright (c) 1997 by Silicon Graphics Computer Systems, Inc.
+ - Copyright 1992 Network Computing Devices
+ - Copyright 1991,1993 by Digital Equipment Corporation, Maynard, Massachusetts, and Olivetti Research Limited, Cambridge, England.
+ - Copyright 1986, 1987, 1988 by Hewlett-Packard Corporation
+ - Copyright (c) 1994, 1995 Hewlett-Packard Company
+ - Copyright Digital Equipment Corporation, 1996
+ - Copyright 1999, 2005, 2006 Sun Microsystems, Inc. All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml b/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml
index 0c1931fc184..36a2d3b7471 100644
--- a/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml
+++ b/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml
@@ -25,3 +25,9 @@ holders_summary:
count: 1
- value: Thai Open Source Software Center Ltd
count: 1
+allrights:
+ - Copyright (c) 2001 by First Peer, Inc. All rights reserved.
+ - Copyright (c) 2001 by Eric Kidd. All rights reserved.
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
+ - Copyright (c) 2000 by Moez Mahfoudh All rights reserved.
+ - Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum, Amsterdam
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/libxt6-libxt.label.yml b/tests/cluecode/data/copyrights/libxt6-libxt.label.yml
index 006e1092e45..4a30a4be95b 100644
--- a/tests/cluecode/data/copyrights/libxt6-libxt.label.yml
+++ b/tests/cluecode/data/copyrights/libxt6-libxt.label.yml
@@ -21,3 +21,8 @@ holders_summary:
count: 1
- value: The Open Group
count: 1
+allrights:
+ - Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts
+ - Copyright 1993 by Sun Microsystems, Inc. Mountain View
+ - Copyright 1985, 1986, 1987, 1988, 1989, 1994, 1998, 2001 The Open Group
+ - (c) COPYRIGHT International Business Machines Corp. 1992,1997 All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml b/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml
index 4805d430d87..88623fb4944 100644
--- a/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml
+++ b/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Trolltech AS, Norway
count: 1
+allrights:
+ - Copyright (c) 1999 Trolltech AS, Norway.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml b/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml
index 59f3f997d80..059f1305528 100644
--- a/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml
+++ b/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Linus Torvalds and others
count: 1
+allrights:
+ - copyrighted by Linus Torvalds and others.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml b/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml
index 4116269d996..b2f44cdce35 100644
--- a/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml
+++ b/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: Logica Mobile Networks Limited
count: 2
+allrights:
+ - Copyright (c) 1996-2001 Logica Mobile Networks Limited, all rights reserved.
+ - Copyright (c) 1996-2001 Logica Mobile Networks Limited
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/long_holder_name.txt.yml b/tests/cluecode/data/copyrights/long_holder_name.txt.yml
index 8784bc6c3eb..f6d55cd479e 100644
--- a/tests/cluecode/data/copyrights/long_holder_name.txt.yml
+++ b/tests/cluecode/data/copyrights/long_holder_name.txt.yml
@@ -11,4 +11,5 @@ expected_failures:
- copyrights
- holders
notes: we should not detect very long names
-
\ No newline at end of file
+allrights:
+ - Copyright (c) 2000-2021 Adolph Blaine Charles David Earl Frederick Gerald Hubert Irvin John Kenneth Lloyd Martin Nero Oliver Paul Quincy Randolph Sherman Thomas Uncas Victor William Xerxes Yancy Zeus Wolfeschlegelsteinhausenbergerdorffwelchevoralternwarengewissenhaftschaferswessenschafewarenwohlgepflegeundsorgfaltigkeitbeschutzenvonangreifendurchihrraubgierigfeindewelchevoralternzwolftausendjahresvorandieerscheinenvanderersteerdemenschderraumschiffgebrauchlichtalsseinursprungvonkraftgestartseinlangefahrthinzwischensternartigraumaufdersuchenachdiesternwelchegehabtbewohnbarplanetenkreisedrehensichundwohinderneurassevonverstandigmenschlichkeitkonntefortpflanzenundsicherfreuenanlebenslanglichfreudeundruhemitnichteinfurchtvorangreifenvonandererintelligentgeschopfsvonhinzwischensternartigraum
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/long_name.txt.yml b/tests/cluecode/data/copyrights/long_name.txt.yml
index 130a8510207..c2ff99d1372 100644
--- a/tests/cluecode/data/copyrights/long_name.txt.yml
+++ b/tests/cluecode/data/copyrights/long_name.txt.yml
@@ -11,4 +11,6 @@ holders:
expected_failures:
- copyrights
- holders
-notes: we should not detect very long names
\ No newline at end of file
+notes: we should not detect very long names
+allrights:
+ - Copyright (c) 2021 Adolph Blaine Charles David Earl Frederick Gerald Hubert Irvin John Kenneth Lloyd Martin Nero Oliver Paul Quincy Randolph Sherman Thomas Uncas Victor William Xerxes Yancy Zeus Wolfeschlegelsteinhausenbergerdorffwelchevoralternwarengewissenhaftschaferswessenschafewarenwohlgepflegeundsorgfaltigkeitbeschutzenvonangreifendurchihrraubgierigfeindewelchevoralternzwolftausendjahresvorandieerscheinenvanderersteerdemenschderraumschiffgebrauchlichtalsseinursprungvonkraftgestartseinlangefahrthinzwischensternartigraumaufdersuchenachdiesternwelchegehabtbewohnbarplanetenkreisedrehensichundwohinderneurassevonverstandigmenschlichkeitkonntefortpflanzenundsicherfreuenanlebenslanglichfreudeundruhemitnichteinfurchtvorangreifenvonandererintelligentgeschopfsvonhinzwischensternartigraum
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml b/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml
index 5167539d17b..6e28d973614 100644
--- a/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml
+++ b/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: URW++ GmbH.
count: 1
+allrights:
+ - copyright (c) 2001 by Bigelow & Holmes Inc.
+ - copyright (c) 2001 by URW++ GmbH. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/maia-Maia.yml b/tests/cluecode/data/copyrights/maia-Maia.yml
index cb16aca93a2..e36cd04e145 100644
--- a/tests/cluecode/data/copyrights/maia-Maia.yml
+++ b/tests/cluecode/data/copyrights/maia-Maia.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Robert LeBlanc
count: 1
+allrights:
+ - Copyright 2004 by Robert LeBlanc All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/man_page.txt.yml b/tests/cluecode/data/copyrights/man_page.txt.yml
index f0d004b7bdd..b74dad931b1 100644
--- a/tests/cluecode/data/copyrights/man_page.txt.yml
+++ b/tests/cluecode/data/copyrights/man_page.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Free Software Foundation, Inc., and others
count: 1
+allrights:
+ - Copyright 2001-2017 Free Software Foundation, Inc., and others.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/math.c.yml b/tests/cluecode/data/copyrights/math.c.yml
index bb0ec0b7c1a..b8dc5618d6f 100644
--- a/tests/cluecode/data/copyrights/math.c.yml
+++ b/tests/cluecode/data/copyrights/math.c.yml
@@ -25,3 +25,9 @@ holders_summary:
count: 1
- value: Vladimir Oleynik
count: 1
+allrights:
+ - Copyright (c) 1989, 1991, 1993, 1994 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1997-2005 Herbert Xu
+ - Copyright (c) 2001 Aaron Lehmann
+ - Paul Mundt (c) 2004
+ - Vladimir Oleynik (c) 2001-2005
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml b/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml
index 6a309e4f6da..d1376479666 100644
--- a/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml
+++ b/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: XStream committers
count: 1
+allrights:
+ - Copyright (c) 2006 Joe Walnes.
+ - Copyright (c) 2006, 2007, 2008 XStream committers. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml b/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml
index 7fac18ec53d..47beb793f81 100644
--- a/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml
+++ b/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sun Microsystems
count: 1
+allrights:
+ - Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml b/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml
index aff285c3c14..38c56bf146b 100644
--- a/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml
+++ b/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml b/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml
index a99776f87e0..ee79273ca55 100644
--- a/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml
@@ -5,3 +5,5 @@ copyrights:
- Copyright (c) 2008 by Amalasoft Corporation
holders:
- Amalasoft Corporation
+allrights:
+ - Copyright (c) 2008 All rights reserved by Amalasoft Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/cali_1.txt.yml b/tests/cluecode/data/copyrights/misco/cali_1.txt.yml
index defd06728a3..2efe45dade0 100644
--- a/tests/cluecode/data/copyrights/misco/cali_1.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/cali_1.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 1988, 1993 The Regents of the University ofCalifornia
holders:
- The Regents of the University ofCalifornia
+allrights:
+ - Copyright (c) 1988, 1993 The Regents of the University ofCalifornia. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/cip4.txt.yml b/tests/cluecode/data/copyrights/misco/cip4.txt.yml
index 425e73c5aac..c1b1478e70e 100644
--- a/tests/cluecode/data/copyrights/misco/cip4.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/cip4.txt.yml
@@ -8,3 +8,5 @@ copyrights:
holders:
- The International Cooperation for the Integration of Processes in Prepress, Press and Postpress
(CIP4)
+allrights:
+ - Copyright (c) The International Cooperation for the Integration of Processes in Prepress, Press and Postpress (CIP4). All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/codehaus.txt.yml b/tests/cluecode/data/copyrights/misco/codehaus.txt.yml
index 7a317881e48..8339348b1c1 100644
--- a/tests/cluecode/data/copyrights/misco/codehaus.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/codehaus.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2002 (c) The Codehaus
holders:
- The Codehaus
+allrights:
+ - Copyright 2002 (c) The Codehaus. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/french-1.txt.yml b/tests/cluecode/data/copyrights/misco/french-1.txt.yml
index 8f81c2ffbbd..c6f600f83ce 100644
--- a/tests/cluecode/data/copyrights/misco/french-1.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/french-1.txt.yml
@@ -5,3 +5,5 @@ copyrights:
- Engie (c) COPYRIGHT 2020
holders:
- Engie
+allrights:
+ - Engie (c) COPYRIGHT 2020 - Tous Droits Reserves
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/german-1.txt.yml b/tests/cluecode/data/copyrights/misco/german-1.txt.yml
index 348ec2c9967..307e97492c2 100644
--- a/tests/cluecode/data/copyrights/misco/german-1.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/german-1.txt.yml
@@ -5,3 +5,5 @@ copyrights:
- Copyright (x) 1998-2021 ActiveVB.
holders:
- ActiveVB
+allrights:
+ - Copyright (x) 1998-2021 ActiveVB. Alle Rechte vorbehalten.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml b/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml
index 901a8256a89..26f6b32e584 100644
--- a/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml
@@ -2,3 +2,5 @@ what:
- copyrights
copyrights:
- Copyright (c) 2019-2021, Open source contributors
+allrights:
+ - Copyright (c) 2019-2021, Open source contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml b/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml
index b8435f81351..800ba3442e0 100644
--- a/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml
+++ b/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml
@@ -8,3 +8,5 @@ copyrights:
holders:
- World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de
Recherche en Informatique et en Automatique, Keio University
+allrights:
+ - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de Recherche en Informatique et en Automatique, Keio University ). All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml b/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml
index 7f1f7ad9706..36176061742 100644
--- a/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Bryan Scott (for Australian Antarctic Division)
count: 1
+allrights:
+ - (c) Copyright 2003, 2004, by Bryan Scott (for Australian Antarctic Division).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/arizona.txt.yml b/tests/cluecode/data/copyrights/misco2/arizona.txt.yml
index 995fa41fb0b..0f97c961efb 100644
--- a/tests/cluecode/data/copyrights/misco2/arizona.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/arizona.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Arizona Board of Regents (University of Arizona)
count: 1
+allrights:
+ - Copyright (c) 2005-2006 Arizona Board of Regents (University of Arizona). All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/ayman.txt.yml b/tests/cluecode/data/copyrights/misco2/ayman.txt.yml
index 10675d09fa9..8ef78324b76 100644
--- a/tests/cluecode/data/copyrights/misco2/ayman.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/ayman.txt.yml
@@ -14,3 +14,6 @@ holders_summary:
count: 1
- value: Hanns Holger Rutz
count: 1
+allrights:
+ - Copyright (c) by Ayman Al-Sairafi
+ - Copyright (c) 2011-2015 by Hanns Holger Rutz.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml b/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml
index 1b1b5945a36..13744fbedfe 100644
--- a/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml
+++ b/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Regents of the University of California
count: 1
+allrights:
+ - copyright by The Regents of the University of California. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml b/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml
index a20e9080c13..4499b4bd7ba 100644
--- a/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: 2016Nian Allen
count: 1
+allrights:
+ - Copyright (c) 2016Nian Allen. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml b/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml
index 2187849e9a5..64fd2bfb69f 100644
--- a/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Contributing Member(s) of Distributed Management Task Force, Inc
count: 1
+allrights:
+ - Copyright (c) 2017, Contributing Member(s) of Distributed Management Task Force, Inc.. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml b/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml
index 971e15be15a..d9e2e33ef7e 100644
--- a/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Sun Microsystems
count: 1
+allrights:
+ - Copyright (c) 2003 Sun Microsystems, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml b/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml
index e2032d719b3..de9cb65d6aa 100644
--- a/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml
@@ -15,3 +15,5 @@ holders_summary:
- value: Douglas C. Schmidt and his research group at Washington University, University of
California, Irvine, and Vanderbilt University
count: 1
+allrights:
+ - copyrighted by http://www.dre.vanderbilt.edu/~schmidt/ Douglas C. Schmidt and his http://www.cs.wustl.edu/~schmidt/ACE-members.html research group at http://www.wustl.edu/ Washington University, http://www.uci.edu University of California, Irvine, and http://www.vanderbilt.edu Vanderbilt University, Copyright (c) 1993-2009, all rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml
index 8e6a8b99770..2cca606020b 100644
--- a/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Distributed Frontera developers
count: 1
+allrights:
+ - Copyright (c) Distributed Frontera developers. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml
index ae9bb8c7b70..2f6ff3099b6 100644
--- a/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Distributed InforMation ProcBssing Ltd.
count: 1
+allrights:
+ - Copyright (c) Distributed InforMation ProcBssing Ltd. Alle Rechte Vorbehalten
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml
index 7d8747fc2e3..2a4a8321ce6 100644
--- a/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: Gregory Popovitch
count: 1
+allrights:
+ - (c) 2019-2023 Gregory Popovitch.
+ - (c) Distributed Ledger Technology Collaboration and contributors.
+ - (c) 2017-2023 Bartosz Taudul.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml
index c57a942aadc..cfb5ff4b28f 100644
--- a/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Distributed Processing Technology Corporation
count: 1
+allrights:
+ - Copyright (c) 1996-1999 Distributed Processing Technology Corporation All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml
index 248d9aa430c..62c78fb1b21 100644
--- a/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: distributed processing technology corporation
count: 1
+allrights:
+ - Copyright (c) distributed processing technology corporation all rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml
index 757e7168efe..e7b9c293cc6 100644
--- a/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Distributed via COMTEX News. YYYY A&G Information Services
count: 1
+allrights:
+ - (c) Distributed via COMTEX News. (c) YYYY A&G Information Services, all rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml
index 39eb454be81..a8780064f28 100644
--- a/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Distributed Software System Lab
count: 1
+allrights:
+ - Copyright (c) Distributed Software System Lab. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml b/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml
index 2187849e9a5..64fd2bfb69f 100644
--- a/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Contributing Member(s) of Distributed Management Task Force, Inc
count: 1
+allrights:
+ - Copyright (c) 2017, Contributing Member(s) of Distributed Management Task Force, Inc.. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/email-name.txt.yml b/tests/cluecode/data/copyrights/misco2/email-name.txt.yml
index 6a805ca8398..4db0679a23f 100644
--- a/tests/cluecode/data/copyrights/misco2/email-name.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/email-name.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Roy Marples
count: 1
+allrights:
+ - Copyright (c) 2006-2010 Roy Marples All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/fiat.txt.yml b/tests/cluecode/data/copyrights/misco2/fiat.txt.yml
index 93a4a18ff5b..b38ecaaea24 100644
--- a/tests/cluecode/data/copyrights/misco2/fiat.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/fiat.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the fiat-crypto authors see
count: 1
+allrights:
+ - Copyright (c) 2015-2016 the fiat-crypto authors (see https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml b/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml
index 1e432dd9a5c..b31ae4c69b8 100644
--- a/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml
@@ -20,3 +20,8 @@ holders_summary:
count: 1
- value: glyphicon-copyright-mark Rubix
count: 1
+allrights:
+ - Copyright fa-copyright 2020 by the authors
+ - Copyright 2022, LLC
+ - Copyright glyphicon-copyright-mark http://www.dalegroup.net
+ - Copyright glyphicon-copyright-mark 1998 - 2014 Rubix. Alle rechten voorbehouden.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml b/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml
index 3b0a556e962..d34d07a5bd9 100644
--- a/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: CKSource Holding sp. z o.o.
count: 1
+allrights:
+ - Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml b/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml
index 8602bfede8b..c013c4fdc1c 100644
--- a/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml
@@ -18,3 +18,8 @@ holders_summary:
count: 3
- value: Japan Registry Services Co., Ltd.
count: 1
+allrights:
+ - Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved.
+ - Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved.
+ - Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved.
+ - Copyright (c) 2010-2012 Japan Registry Services Co., Ltd. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml b/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml
index de99c95725c..b76cda1a877 100644
--- a/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml
@@ -18,3 +18,7 @@ holders_summary:
count: 1
- value: Knowledge Research and its affiliates
count: 1
+allrights:
+ - Copyright (c) Knowledge Research and its affiliates. All Rights Reserved
+ - Copyright (c) Knowledge & Experience. All rights reserved.
+ - Copyright (c) Knowledge Computing Corp. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/myconame.txt.yml b/tests/cluecode/data/copyrights/misco2/myconame.txt.yml
index d473c7e36be..223a14a0b08 100644
--- a/tests/cluecode/data/copyrights/misco2/myconame.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/myconame.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: MyCompanyName
count: 1
+allrights:
+ - Copyright 2005 MyCompanyName . All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/nick.txt.yml b/tests/cluecode/data/copyrights/misco2/nick.txt.yml
index f2ace8d1fe5..e16fc60c858 100644
--- a/tests/cluecode/data/copyrights/misco2/nick.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/nick.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Nick Galbreath
count: 1
+allrights:
+ - Copyright (c) 2005, 2006 Nick Galbreath - nickg at modp dot com All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml b/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml
index a6198a7209d..1488b746e68 100644
--- a/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: OCamlPro
count: 1
+allrights:
+ - Copyright 2013-2020 by OCamlPro.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml b/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml
index 8233f92b1cc..8c2686e95ce 100644
--- a/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Baidu Inc.
count: 1
+allrights:
+ - opyright 2014 Baidu Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/osm.txt.yml b/tests/cluecode/data/copyrights/misco2/osm.txt.yml
index 06cf18ea90c..e0b064af5e2 100644
--- a/tests/cluecode/data/copyrights/misco2/osm.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/osm.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: OpenStreetMap contributors
count: 1
+allrights:
+ - (c) OpenStreetMap contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/partners.txt.yml b/tests/cluecode/data/copyrights/misco2/partners.txt.yml
index 7d35cee9bf0..93f9cc94d4a 100644
--- a/tests/cluecode/data/copyrights/misco2/partners.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/partners.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 1999/2000 JJ2000 Partners
holders:
- JJ2000 Partners
+allrights:
+ - Copyright (c) 1999/2000 JJ2000 Partners.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml b/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml
index 8ec9d803d17..9597423f619 100644
--- a/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Carl E. Harris
count: 1
+allrights:
+ - copyrighted by Carl E. Harris, 1993 and 1995.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml b/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml
index f32043987bc..03a3cd83b9b 100644
--- a/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Object Refinery Limited and Contributors
count: 1
+allrights:
+ - Copyright (c) 2000-2013, by Object Refinery Limited and Contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml
index e07b2f7ca01..175e612e05d 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2013-2015, 2016, Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright (c) 2013-2015, 2016, Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml
index b41f97a0a87..49da82bf724 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2013-2015 Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright 2013-2015 Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml
index aa1ab9a73ad..c6d9f562e52 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright (c) Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml
index 7015ff97c38..bd084732589 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml
@@ -3,6 +3,8 @@ what:
- holders
- authors
copyrights:
- - Copyright 2011 craigslist, inc
+ - Copyright 2011 craigslist, inc.
holders:
- - craigslist, inc
+ - craigslist, inc.
+allrights:
+ - Copyright 2011 craigslist, inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml
index aba77d229b9..eeb37d34bb7 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2011, Joyent, Inc.
holders:
- Joyent, Inc.
+allrights:
+ - Copyright (c) 2011, Joyent, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml
index f88471382ff..7a088ae8999 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2011, Robert Mustacchi
holders:
- Robert Mustacchi
+allrights:
+ - Copyright (c) 2011, Robert Mustacchi. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml
index 233338ecf2b..41fd82f5188 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2009-2013, Jeff Mott
holders:
- Jeff Mott
+allrights:
+ - Copyright (c) 2009-2013, Jeff Mott. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml
index 93cb5933d7b..11840b88cd4 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2012, Mark Cavage
holders:
- Mark Cavage
+allrights:
+ - Copyright (c) 2012, Mark Cavage. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml
index 63608e72ab8..c85c1aa3814 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2011 Joyent, Inc.
holders:
- Joyent, Inc.
+allrights:
+ - Copyright 2011 Joyent, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml
index 1077bcc6cfa..8f8e518527c 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2011 Mark Cavage
holders:
- Mark Cavage
+allrights:
+ - Copyright 2011 Mark Cavage All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml
index 1549c2deb20..1f4a5a42914 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2012 Joyent, Inc.
holders:
- Joyent, Inc.
+allrights:
+ - Copyright 2012 Joyent, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml
index 0d3ba9fb369..846c5050674 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2012-2014 Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright (c) 2012-2014 Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml
index ab23b65643b..8384eec83ca 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright (c) 2014 Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml
index 76a7231bcad..e77ed740fb0 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2011, The Dojo Foundation
holders:
- The Dojo Foundation
+allrights:
+ - Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml
index 0163462edc5..4bfb95bf72c 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- copyright 2011 Kevin Kwok (antimatter15@gmail.com)
holders:
- Kevin Kwok
+allrights:
+ - copyright 2011 Kevin Kwok (antimatter15@gmail.com).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml
index a2a18d2fddc..f8507523cd7 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- copyright 2011 antimatter15 (antimatter15@gmail.com)
holders:
- antimatter15
+allrights:
+ - copyright 2011 antimatter15 (antimatter15@gmail.com).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml
index c9eba27440c..b50d3cc5201 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- copyright 2012 Eli Skeggs
holders:
- Eli Skeggs
+allrights:
+ - copyright 2012 Eli Skeggs.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml
index 67d5efe15f9..b4b964519a2 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright c 2011 by Kimberly Geswein
holders:
- Kimberly Geswein
+allrights:
+ - Copyright c 2011 by Kimberly Geswein All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml
index 47f606b4fed..dd15e9cf1f3 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2011-2013, Christopher Jeffrey
holders:
- Christopher Jeffrey
+allrights:
+ - Copyright (c) 2011-2013, Christopher Jeffrey.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml
index 47f606b4fed..dd15e9cf1f3 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2011-2013, Christopher Jeffrey
holders:
- Christopher Jeffrey
+allrights:
+ - Copyright (c) 2011-2013, Christopher Jeffrey.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml
index b1d5e92cb90..d3021d2b3cd 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2012 Tyler Kellen
holders:
- Tyler Kellen
+allrights:
+ - Copyright (c) 2012 Tyler Kellen.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml
index 0fd9bb41f37..b277bc88e4e 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2012 Vitaly Puzrin (https://github.com/puzrin)
holders:
- Vitaly Puzrin
+allrights:
+ - Copyright (c) 2012 Vitaly Puzrin (https://github.com/puzrin).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml
index 078e710b96c..1c505e39496 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2013 Jon Schlinkert, contributors
holders:
- Jon Schlinkert, contributors
+allrights:
+ - Copyright (c) 2013 Jon Schlinkert, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml
index a554cdabc64..58791f4c4f3 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2013 Upstage
holders:
- Upstage
+allrights:
+ - Copyright (c) 2013 Upstage.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml
index 1c4d1c4df76..1dc15dbc2be 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2013, Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright (c) 2013, Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml
index 4ef658162cd..1738ef004c7 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Assemble, contributors
holders:
- Assemble, contributors
+allrights:
+ - Copyright (c) 2014 Assemble, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml
index 37045081676..e1fa77e3e30 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Brian Woodward, Jon Schlinkert, contributors
holders:
- Brian Woodward, Jon Schlinkert, contributors
+allrights:
+ - Copyright (c) 2014 Brian Woodward, Jon Schlinkert, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml
index 42fb8bfee36..de2ee8a91b0 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Brian Woodward, contributors
holders:
- Brian Woodward, contributors
+allrights:
+ - Copyright (c) 2014 Brian Woodward, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml
index 385a69f9038..cb4a232c313 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors
holders:
- Jon Schlinkert, Brian Woodward, contributors
+allrights:
+ - Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml
index 6d0af0cdcde..6a34433b903 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Jon Schlinkert, Brian Woodward
holders:
- Jon Schlinkert, Brian Woodward
+allrights:
+ - Copyright (c) 2014 Jon Schlinkert, Brian Woodward.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml
index 1d6a1251f81..ef9d0547af8 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Jon Schlinkert, contributors
holders:
- Jon Schlinkert, contributors
+allrights:
+ - Copyright (c) 2014 Jon Schlinkert, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml
index ea395aef6af..dbfd399b6fa 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml
@@ -7,3 +7,5 @@ copyrights:
contributors
holders:
- Jon Schlinkert Brian Woodward contributors
+allrights:
+ - Copyright (c) 2014 Jon Schlinkert (http://twitter.com/jonschlinkert), Brian Woodward (http://twitter.com/doowb), contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml
index 2900727528c..0a92a55c733 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014, Jon Schlinkert, Brian Woodward, contributors
holders:
- Jon Schlinkert, Brian Woodward, contributors
+allrights:
+ - Copyright (c) 2014, Jon Schlinkert, Brian Woodward, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml
index f6c79eeabda..cc55aa49ec1 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014, Jon Schlinkert, contributors
holders:
- Jon Schlinkert, contributors
+allrights:
+ - Copyright (c) 2014, Jon Schlinkert, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml
index 9efab713934..a05a803b9e1 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014-2015 Jon Schlinkert, contributors
holders:
- Jon Schlinkert, contributors
+allrights:
+ - Copyright (c) 2014-2015 Jon Schlinkert, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml
index 5ac9d7a0a9d..fe15320173e 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2015 Jon Schlinkert, contributors
holders:
- Jon Schlinkert, contributors
+allrights:
+ - Copyright (c) 2015 Jon Schlinkert, contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml
index 34fabe8d964..658d365d382 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2010, 2011, Chris Winberry
holders:
- Chris Winberry
+allrights:
+ - Copyright 2010, 2011, Chris Winberry All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml
index 59a6452cb19..59aa373271e 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2010, Chris Winberry
holders:
- Chris Winberry
+allrights:
+ - Copyright 2010, Chris Winberry All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml
index f3e0e37ae81..5e50e8f00fb 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2011 The Closure Compiler Authors
holders:
- The Closure Compiler Authors
+allrights:
+ - Copyright 2011 The Closure Compiler Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml
index 856fb603345..bb05a2451ad 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2012- GoInstant, Inc. and other contributors
holders:
- GoInstant, Inc. and other contributors
+allrights:
+ - Copyright 2012- GoInstant, Inc. and other contributors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml
index 8fbd127b352..45a8ee15ef6 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014 Caolan McMahon (https://github.com/caolan), contributors
holders:
- Caolan McMahon contributors
+allrights:
+ - Copyright (c) 2014 Caolan McMahon (https://github.com/caolan), contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml
index 0aaf9e3c0cd..ea0a42b1f2a 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- copyright 2011 Kevin van Zonneveld
holders:
- Kevin van Zonneveld
+allrights:
+ - copyright 2011 Kevin van Zonneveld.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml
index a10d2ceda62..2dd3c562ac6 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- copyright (c) 2012 openmason
holders:
- openmason
+allrights:
+ - copyright (c) 2012 openmason.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml
index 31153baff06..0aa035d832d 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2013-2015, Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright (c) 2013-2015, Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml
index a8f6689155e..fa6a4f4dee6 100644
--- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml
+++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2015 Jon Schlinkert
holders:
- Jon Schlinkert
+allrights:
+ - Copyright (c) 2015 Jon Schlinkert.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml b/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml
index e81e833f7d3..cb51ffb6039 100644
--- a/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2001-2008 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml b/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml
index 0343db4d0dc..c67c2a9ba10 100644
--- a/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: W3C(r) (MIT, ERCIM, Keio, Beihang)
count: 1
+allrights:
+ - Copyright (c) YEAR W3C(r) (MIT, ERCIM, Keio, Beihang).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml b/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml
index cb0fc69da2f..12c7f6ab4db 100644
--- a/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml
+++ b/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml
@@ -13,3 +13,5 @@ holders_summary:
- value: W3C (R) (Massachusetts_Institute_of_Technology, Institut National_de_Recherche_en_Informatique_et_en_Automatique,
Keio_University)
count: 1
+allrights:
+ - Copyright (c) 1994-2002 W3C (R) (Massachusetts_Institute_of_Technology, Institut National_de_Recherche_en_Informatique_et_en_Automatique, Keio_University), All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml b/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml
index 45f36e38d69..97ab352c638 100644
--- a/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml
+++ b/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2009 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml b/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml
index c2df105837f..aff50ab205c 100644
--- a/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml
+++ b/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml
@@ -14,3 +14,6 @@ holders_summary:
count: 1
- value: GSyC/LibreSoft, Universidad Rey Juan Carlos
count: 1
+allrights:
+ - Copyright (c) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos.
+ - Copyright (c) Distributed Management Task Force
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml
index 5b909aed302..a6f1d2aeef8 100644
--- a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml
+++ b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml
@@ -16,3 +16,6 @@ holders_summary:
count: 1
- value: Formidable Labs
count: 1
+allrights:
+ - Copyright (c) 2015-2020 Formidable Labs.
+ - Copyright (c) 2016-2020 Alexey Svetliakov https://github.com/asvetliakov , snerks https://github.com/snerks, Krzysztof Cebula https://github.com Havret, Vitaliy Polyanskiy https://github.com/alreadyExisted, James Lismore https://github.com/jlismore
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml
index f2f52d3c235..2c85d03180f 100644
--- a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml
+++ b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml
@@ -16,3 +16,6 @@ holders_summary:
count: 1
- value: Formidable Labs
count: 1
+allrights:
+ - Copyright (c) 2015-2020 Formidable Labs.
+ - Copyright (c) 2016-2020 Alexey Svetliakov https://github.com/asvetliakov , snerks https://github.com/snerks, Krzysztof Cebula https://github.com/Havret , Vitaliy Polyanskiy https://github.com/alreadyExisted, James Lismore https://github.com/jlismore
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml b/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml
index edbba5e7144..7ba4a358940 100644
--- a/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml
+++ b/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: 3Dfx Interactive, Inc.
count: 1
+allrights:
+ - Copyright (1997 3Dfx Interactive, Inc.) All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml b/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml
index ac916d9803b..320142f5751 100644
--- a/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2000 United States Government as represented by the Secretary of the Navy
holders:
- United States Government as represented by the Secretary of the Navy
+allrights:
+ - Copyright (c) 2000 United States Government as represented by the Secretary of the Navy. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml b/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml
index 7ffcfac7947..7581c1825a2 100644
--- a/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 2005 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml
index a6980ce2128..6899ead7e53 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml
@@ -20,4 +20,6 @@ authors:
expected_failures:
- copyrights
- holders
- - authors
\ No newline at end of file
+ - authorsallrights:
+ - (c) 1985 Waterloo Micro.
+ - (c) 1985
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml
index 13751f0fe39..3fb614a0c89 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml
@@ -12,3 +12,7 @@ holders:
- Free Software Foundation, Inc.
authors:
- Denis Joseph Barrow
+allrights:
+ - Copyright (c) 2000-2001 IBM Deutschland Entwicklung GmbH, IBM Corporation Best
+ - (c) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation.
+ - Copyright 1998 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml
index e4d0fb2a6d8..a05a054e01e 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- People
- Russell King
+allrights:
+ - Copyright (c) People
+ - Copyright (c) 1995, 1996 Russell King.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml
index 99680374350..7c2a528e5a7 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml
@@ -12,3 +12,8 @@ holders:
- Shane Nay
- Freescale Semiconductor, Inc.
- Denis GNUtoo Carikli
+allrights:
+ - Copyright (c) 2000 Deep Blue Solutions Ltd
+ - Copyright (c) 2002 Shane Nay (shane@minirl.com)
+ - Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved.
+ - Copyright 2011 Denis GNUtoo Carikli
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml
index bbbab2d5893..d2c83737e5f 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- ARM Ltd.
- Palm
+allrights:
+ - Copyright (c) 2002 ARM Ltd. All Rights Reserved
+ - Copyright (c) 2009 Palm All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml
index 703697e6f05..96b82cd6a68 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml
@@ -10,3 +10,7 @@ holders:
- People
- Russell King
- ARM Ltd.
+allrights:
+ - Copyright (c) People
+ - Copyright (c) 1995, 1996 Russell King.
+ - Copyright (c) 2012 ARM Ltd.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml
index 1e32ec4ac7b..9793c705874 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml
@@ -10,3 +10,7 @@ holders:
- Michal Simek
- PetaLogix
- Jim Law - Iris LP
+allrights:
+ - Copyright (c) 2008-2009 Michal Simek
+ - Copyright (c) 2008-2009 PetaLogix
+ - Copyright (c) 2008 Jim Law - Iris LP All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml
index 78a2818064a..4a4c480efac 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml
@@ -3,6 +3,8 @@ what:
- holders
- authors
copyrights:
- - Copyright (c) 2005 IBM echo Hex-dump
+ - Copyright (c) 2005 IBM. echo Hex-dump
holders:
- - IBM echo Hex-dump
+ - IBM. echo Hex-dump
+allrights:
+ - Copyright (c) 2005 IBM. echo Hex-dump
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml
index cfe9f6f2393..1a4e062650c 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml
@@ -10,3 +10,7 @@ holders:
- Lennert Buytenhek and James Leu
- Jeff Dike
- various
+allrights:
+ - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net).
+ - Copyright (c) 2001 - 2007 Jeff Dike
+ - Copyright (c) 2001 by various
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml
index 6fde9d70c9c..ec2f31fa4de 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml
@@ -10,3 +10,7 @@ holders:
- Jeff Dike
- Lennert Buytenhek and James Leu
- various
+allrights:
+ - Copyright (c) 2001 - 2007 Jeff Dike
+ - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net).
+ - Copyright (c) 2001 by various
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml
index 6fde9d70c9c..ec2f31fa4de 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml
@@ -10,3 +10,7 @@ holders:
- Jeff Dike
- Lennert Buytenhek and James Leu
- various
+allrights:
+ - Copyright (c) 2001 - 2007 Jeff Dike
+ - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net).
+ - Copyright (c) 2001 by various
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml
index 34996bd8282..f33560ffbee 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml
@@ -12,3 +12,8 @@ holders:
- Jeff Dike
- Lennert Buytenhek and James Leu
- various
+allrights:
+ - Copyright (c) 2001 by Harald Welte
+ - Copyright (c) 2001 - 2007 Jeff Dike
+ - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net).
+ - Copyright (c) 2001 by various
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml
index ea166d615a8..185849531ea 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml
@@ -13,3 +13,7 @@ holders:
authors:
- Brett Russ. Extensive
- Mark Lord
+allrights:
+ - Copyright 2008-2009 Marvell Corporation, all rights reserved.
+ - Copyright 2005 EMC Corporation, all rights reserved.
+ - Copyright 2005 Red Hat, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml
index d23fd8add58..52bd80c9a4a 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml
@@ -11,3 +11,6 @@ holders:
authors:
- Rickard E.
- Gareth Hughes
+allrights:
+ - Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
+ - Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml
index cbc8cbd11d3..3a8246c2806 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml
@@ -21,3 +21,10 @@ authors:
- Greg Kroah-Hartman
- Bastien Nocera
- Benjamin Tissoires
+allrights:
+ - Copyright (c) 2006 James McKenzie
+ - Copyright (c) 2008 Greg Kroah-Hartman
+ - Copyright (c) 2008 Novell Inc.
+ - Copyright (c) 2010, 2012 Bastien Nocera
+ - Copyright (c) 2013 Benjamin Tissoires
+ - Copyright (c) 2013 Red Hat Inc. All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml
index 7ea2f1f11f5..90d014770d0 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml
@@ -12,3 +12,8 @@ holders:
- Ilyes Gouta
- m5603x
- Willem Duinker
+allrights:
+ - Copyright (c) 2008 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml
index 7ea2f1f11f5..90d014770d0 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml
@@ -12,3 +12,8 @@ holders:
- Ilyes Gouta
- m5603x
- Willem Duinker
+allrights:
+ - Copyright (c) 2008 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml
index 7ea2f1f11f5..90d014770d0 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml
@@ -12,3 +12,8 @@ holders:
- Ilyes Gouta
- m5603x
- Willem Duinker
+allrights:
+ - Copyright (c) 2008 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml
index 7b5f5f1257c..85488ec1406 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml
@@ -14,3 +14,9 @@ holders:
- m5603x
- Willem Duinker
- Robert Jarzmik
+allrights:
+ - Copyright (c) 2008 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
+ - Copyright (c) 2008, Robert Jarzmik
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml
index ea0ce1b65a7..6a30d8c367f 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml
@@ -12,3 +12,8 @@ holders:
- Ilyes Gouta
- m5603x
- Willem Duinker
+allrights:
+ - Copyright (c) 2009 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml
index 7ea2f1f11f5..90d014770d0 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml
@@ -12,3 +12,8 @@ holders:
- Ilyes Gouta
- m5603x
- Willem Duinker
+allrights:
+ - Copyright (c) 2008 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml
index 7ea2f1f11f5..90d014770d0 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml
@@ -12,3 +12,8 @@ holders:
- Ilyes Gouta
- m5603x
- Willem Duinker
+allrights:
+ - Copyright (c) 2008 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml
index 7ea2f1f11f5..90d014770d0 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml
@@ -12,3 +12,8 @@ holders:
- Ilyes Gouta
- m5603x
- Willem Duinker
+allrights:
+ - Copyright (c) 2008 Erik Andren
+ - Copyright (c) 2007 Ilyes Gouta.
+ - Copyright (c) 2005 m5603x
+ - Copyright (c) 2006 Willem Duinker
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml
index b3d24101140..fb99a50d5cd 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml
@@ -10,3 +10,6 @@ holders:
- Intel Corporation
authors:
- the Host
+allrights:
+ - Copyright (c) 2013 - 2014 Intel Corporation. All rights reserved.
+ - Copyright (c) 2013 - 2014 Intel Corporation. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml
index a51786efe8a..7d4d8e66534 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Matthias Brukner, Trajet Gmbh, Rebenring
- Volkswagen Group Electronic Research
+allrights:
+ - Copyright (c) 2003 Matthias Brukner, Trajet Gmbh, Rebenring
+ - Copyright (c) 2002-2007 Volkswagen Group Electronic Research All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml
index a51786efe8a..7d4d8e66534 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Matthias Brukner, Trajet Gmbh, Rebenring
- Volkswagen Group Electronic Research
+allrights:
+ - Copyright (c) 2003 Matthias Brukner, Trajet Gmbh, Rebenring
+ - Copyright (c) 2002-2007 Volkswagen Group Electronic Research All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml
index 58648944a16..9fe43844598 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml
@@ -25,3 +25,10 @@ authors:
- Transmit MAC.
- Receive List Placement
- Host Coalescing
+allrights:
+ - Copyright (c) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com)
+ - Copyright (c) 2001 Jeff Garzik (jgarzik@pobox.com)
+ - Copyright (c) 2004 Sun Microsystems Inc.
+ - Copyright (c) 2007-2016 Broadcom Corporation.
+ - Copyright (c) 2016-2017 Broadcom Limited.
+ - Copyright (c) 2018 Broadcom. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml
index 82aeac4bb90..83a50160c95 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml
@@ -30,3 +30,5 @@ authors:
-
-
-
+allrights:
+ - Copyright 1994, 1995 Digital Equipment Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml
index a401fc84233..c48700b2fa1 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml
@@ -12,3 +12,8 @@ holders:
- Axis Communications AB Ethereal
- Gerald Combs
- Intel Corporation
+allrights:
+ - Copyright (c) 2003 - 2006 Intel Corporation. All rights reserved.
+ - Copyright 2000, Axis Communications AB Ethereal
+ - Copyright 1998 Gerald Combs
+ - Copyright (c) 2003-2006 Intel Corporation
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml
index 40c633300a5..79030fcf843 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml
@@ -10,3 +10,6 @@ holders:
- James Smart, Emulex Corporation Rewrite
authors:
- Martin Hicks
+allrights:
+ - Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved.
+ - Copyright (c) 2004-2007 James Smart, Emulex Corporation Rewrite
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml
index 2f4970266ad..7abae426979 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml
@@ -8,3 +8,5 @@ holders:
- Realtek Corporation
authors:
- Roger
+allrights:
+ - Copyright (c) 2007 - 2012 Realtek Corporation. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml
index 24c22fbae0c..bf63ca54de5 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml
@@ -10,3 +10,5 @@ authors:
- KaiYuan Chang/Ivan Lin Return
- KaiYuan Chang Return
- Ivan Return
+allrights:
+ - Copyright (c) 2016 Realtek Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml
index 0001503be50..322d67f54db 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml
@@ -10,3 +10,5 @@ authors:
- KaiYuan Chang Return
- KaiYuan Chang Return
- Ivan Return
+allrights:
+ - Copyright (c) 2016 Realtek Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml
index aef7df5ca48..62ebee63e2b 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml
@@ -69,3 +69,5 @@ authors:
- KaiYuan Chang Return
- chunchu Return
- Ivan Lin Return
+allrights:
+ - Copyright (c) 2016 Realtek Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml
index e66041d27f4..512db4a20e1 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml
@@ -17,3 +17,5 @@ authors:
- KaiYuan Chang/Ivan Lin Return
- KaiYuan Chang/Ivan Lin Return
- Soar Tu Return
+allrights:
+ - Copyright (c) 2016 Realtek Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml
index d5d16369a6d..3f8ee6f9b66 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml
@@ -21,3 +21,5 @@ authors:
- Soar Tu Return
- Ivan Lin Return
- Soar Return
+allrights:
+ - Copyright (c) 2016 Realtek Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml
index dd3f5b6c15c..d98d04afead 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml
@@ -12,3 +12,7 @@ holders:
- Reduced
authors:
- Andrew J. Kroll
+allrights:
+ - Theodore Ts'o, Copyright 1994.
+ - Linus Torvalds, Copyright 1991, 1992, 1993
+ - Copyright 1994. Reduced
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml
index 0b8c0b71bbc..c4e1fb2d9d8 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml
@@ -12,3 +12,7 @@ holders:
- Option Wireless n/v
authors:
- Paul Hardwick (p.hardwick@option.com)
+allrights:
+ - Copyright (c) 2005,2006 Option Wireless Sweden AB
+ - Copyright (c) 2006 Sphere Systems Ltd
+ - Copyright (c) 2006 Option Wireless n/v All rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml
index a7a0235169f..d2110ea9028 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml
@@ -14,3 +14,8 @@ holders:
- Clemens Ladisch
authors:
- Grey Innovation Ben Williamson
+allrights:
+ - Copyright (c) 2006 Thumtronics Pty Ltd.
+ - Copyright (c) 2003-2004 David Brownell. USB Audio
+ - Copyright (c) 2002 by Takashi Iwai. USB
+ - Copyright (c) 2002-2005 Clemens Ladisch.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml
index 89b5356dc0a..a32a344ee26 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml
@@ -8,3 +8,5 @@ holders:
- Nippon Telegraph and Telephone Corporation
authors:
- Koji Sato. Revised
+allrights:
+ - Copyright (c) 2006-2008 Nippon Telegraph and Telephone Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml
index 37f6e8c3b36..b4b56c98eec 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml
@@ -10,3 +10,7 @@ holders:
- Intel Corp.
- Microsoft
- Microsoft Corporation
+allrights:
+ - Copyright (c) 2000 - 2018, Intel Corp.
+ - Copyright 2011 Microsoft
+ - Copyright 2006 Microsoft Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml
index 1ea4c4bfdae..9882ad21104 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2007 Panasas Inc. year of first publication
holders:
- Panasas Inc. year of first publication
+allrights:
+ - Copyright (c) 2007 Panasas Inc. year of first publication All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml
index b01b84a3a29..61df4345875 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Silicon Graphics, Inc.
- James Smart, Emulex Corporation Rewrite
+allrights:
+ - Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved.
+ - Copyright (c) 2004-2007 James Smart, Emulex Corporation Rewrite
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml
index b19512d6d9f..1e49b01e90e 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml
@@ -8,3 +8,5 @@ holders:
- Intel Corporation
authors:
- the Guest. @config Start
+allrights:
+ - Copyright (c) 2013 Intel Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml
index 4fd39790af8..a96ea666905 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml
@@ -10,3 +10,7 @@ holders:
- Pavel Machek
- VMware, Inc. (Regis HPReg Duchesne) Made
- Steven Whitehouse
+allrights:
+ - Copyright (c) Pavel Machek, pavel@ucw.cz.
+ - Copyright (c) 1999 VMware, Inc. (Regis HPReg Duchesne) Made
+ - Copyright (c) Steven Whitehouse
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml
index 2ca8d98c001..88ac2f8b7c7 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml
@@ -10,3 +10,6 @@ holders:
- Boris
authors:
- George Anzinger george@mvista.com
+allrights:
+ - Copyright (c) 2002 2003 by MontaVista Software.
+ - Copyright (c) 2004 Boris
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml
index 52f2576a997..4e326928b98 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2013 Texas Instruments Incorporated - GPLv2
holders:
- Texas Instruments Incorporated - GPLv2
+allrights:
+ - Copyright (c) 2013 Texas Instruments Incorporated - GPLv2.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml
index 9c596f2bd2d..2726ac5acda 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml
@@ -10,3 +10,7 @@ holders:
- Sony Computer Entertainment Inc.
- Sony Corporation
- R Value
+allrights:
+ - Copyright (c) 2007 Sony Computer Entertainment Inc.
+ - Copyright 2006, 2007 Sony Corporation All rights reserved.
+ - (c) R Value
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml
index 4e086044f33..e3ccf8a0e37 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml
@@ -10,3 +10,6 @@ holders:
- Nuvoton Technology Corp. Co-author Meng-Huang Kuo
authors:
- Anatol Pomozov
+allrights:
+ - Copyright 2015 Google Chromium project.
+ - Copyright 2015 Nuvoton Technology Corp. Co-author Meng-Huang Kuo
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml
index 7f57db9ee4b..0d1e3b476f7 100644
--- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml
@@ -8,3 +8,5 @@ holders:
- Microsemi
authors:
- Logan Gunthorpe
+allrights:
+ - Copyright (c) 2016 Microsemi. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml b/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml
index 400bc3a8227..631202216dc 100644
--- a/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml
@@ -16,3 +16,10 @@ holders:
- Dynamic Drive
- Dynamic System Bars Project
- Dynamic Solutions
+allrights:
+ - Copyright (c) Dynamic Network Services, Inc
+ - Copyright (c) frisB.com
+ - Copyright (c) dynamic-evaluation, https://github.com/benkrause/dynamic-evaluation
+ - copyright (c) Dynamic Drive (www.dynamicdrive.com)
+ - Copyright (c) Dynamic System Bars Project
+ - Copyright (c) Dynamic Solutions. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml b/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml
index 2a9169efd14..e92f477cabb 100644
--- a/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml
@@ -12,3 +12,7 @@ holders:
- Nokia Corporation
authors:
- Tony Lindgren and Tuukka Tikkanen
+allrights:
+ - Copyright (c) 1992 Linus Torvalds
+ - Copyright (c) 1995-2000 Russell King.
+ - Copyright (c) 2004-2005 Nokia Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml
index b5c3aa73c6c..4f482206432 100644
--- a/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml
@@ -8,3 +8,5 @@ holders:
- the University of Cambridge, England
authors:
- Philip Hazel
+allrights:
+ - copyright by the University of Cambridge, England.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml
index 9f86769f807..bf1c1c5012d 100644
--- a/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- Donald Becker
- United States Government
+allrights:
+ - Copyright 1994-2000 by Donald Becker.
+ - Copyright 1993 United States Government
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml
index 0064e5217d3..9701443fbe3 100644
--- a/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Gordon Chaffee Copyright (c) 1995
holders:
- Gordon Chaffee
+allrights:
+ - Gordon Chaffee Copyright (c) 1995.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml
index f87624036ff..36e87408e57 100644
--- a/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) September 18, 2008 Silicon Graphics, Inc.
holders:
- September Silicon Graphics, Inc.
+allrights:
+ - Copyright (c) September 18, 2008 Silicon Graphics, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml b/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml
index dcd528378c3..2f55e5aa9e7 100644
--- a/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml
@@ -47,3 +47,26 @@ holders:
- Grant R. Guenther
- Grant R. Guenther David Campbell
- its respective authors
+allrights:
+ - Copyright (c) 2011 Instituto Nokia de Tecnologia
+ - Copyright (c) 2012-2013 Tieto Poland
+ - Copyright (c) 2016 HALE electronic
+ - Copyright (c) People
+ - Copyright (c) 2010 Alan Ott
+ - Copyright (c) 2010 Signal 11 Software
+ - Copyright (c) 2010, Octasic semiconductor.
+ - Copyright 2016 Tom aan de Wiel
+ - Copyright 2018 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
+ - (c) 2006 Tim Small
+ - (c) by the respective authors
+ - copyright by the original
+ - Copyright 1993 United States Government
+ - Copyright 2010 Ben Dooks ben-linux fluff.org
+ - Copyright (c) 2010 Dmitry Torokhov
+ - (c) liplianin@me.by
+ - Ingo Molnar, Copyright (c) 2001
+ - David Rientjes, Copyright (c) 2015
+ - (c) 1985
+ - (c) 1996-8 Grant R. Guenther
+ - (c) 1996 Grant R. Guenther grant@torque.net David Campbell
+ - copyright by its respective authors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml b/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml
index 580987c0269..f3f9c839401 100644
--- a/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2010, Octasic semiconductor
holders:
- Octasic semiconductor
+allrights:
+ - Copyright (c) 2010, Octasic semiconductor.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml b/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml
index 28109c8b811..6b2ddd7d2e8 100644
--- a/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml
+++ b/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml
@@ -13,3 +13,5 @@ holders_summary:
- value: United States Government as represented by the Administrator of the National Aeronautics
and Space Administration
count: 1
+allrights:
+ - Copyright (c) 2006-2010 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml b/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml
index 96c2c1fc580..a6c7e9559f3 100644
--- a/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml
+++ b/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mit_danse-mojibake.yml b/tests/cluecode/data/copyrights/mit_danse-mojibake.yml
index b93446faaf7..2b73c7f8891 100644
--- a/tests/cluecode/data/copyrights/mit_danse-mojibake.yml
+++ b/tests/cluecode/data/copyrights/mit_danse-mojibake.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: California Institute of Technology
count: 1
+allrights:
+ - Copyright (c) 2009 California Institute of Technology. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mit_danse.yml b/tests/cluecode/data/copyrights/mit_danse.yml
index b93446faaf7..2b73c7f8891 100644
--- a/tests/cluecode/data/copyrights/mit_danse.yml
+++ b/tests/cluecode/data/copyrights/mit_danse.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: California Institute of Technology
count: 1
+allrights:
+ - Copyright (c) 2009 California Institute of Technology. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml b/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml
index 8559b4c638d..0b53d2fea3c 100644
--- a/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml
+++ b/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the NEC Research Institute
count: 1
+allrights:
+ - Copyright (c) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh Jagannathan, and Stephen Weeks.
+ - Copyright (c) 1997-2000 by the NEC Research Institute
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml b/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml
index 414c00af470..b42155d8f72 100644
--- a/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml
+++ b/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 2001, 2002, 2003, 2004, 2005 by The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml b/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml
index c785dd900a3..85873192981 100644
--- a/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml
+++ b/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Unicode, Inc.
count: 1
+allrights:
+ - Copyright (c) 1991-2005 Unicode, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml b/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml
index 4a6133d34c0..81b539ef579 100644
--- a/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml
+++ b/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Princeton University
count: 1
+allrights:
+ - Copyright 2006 by Princeton University. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/mitre-MITRE.yml b/tests/cluecode/data/copyrights/mitre-MITRE.yml
index 47a886c7528..bab94479f85 100644
--- a/tests/cluecode/data/copyrights/mitre-MITRE.yml
+++ b/tests/cluecode/data/copyrights/mitre-MITRE.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The MITRE Corporation
count: 1
+allrights:
+ - Copyright (c) 1994-1999. The MITRE Corporation (http://www.mitre.org/). All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/motorola_c-c.c.yml b/tests/cluecode/data/copyrights/motorola_c-c.c.yml
index 5e5beb9cd72..db325dcecce 100644
--- a/tests/cluecode/data/copyrights/motorola_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/motorola_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Motorola, Inc.
count: 1
+allrights:
+ - Copyright (c) 2003, 2010 Motorola, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml b/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml
index d03cff95548..5a96c493d93 100644
--- a/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Motorola, Inc.
count: 1
+allrights:
+ - Copyright (c) 2009 Motorola, Inc. All Rights Reserved.
+ - Copyright (c) 2011 Motorola Mobility, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/msntp-MSNTP.yml b/tests/cluecode/data/copyrights/msntp-MSNTP.yml
index fcc5b5e1f10..5bf7f12a95d 100644
--- a/tests/cluecode/data/copyrights/msntp-MSNTP.yml
+++ b/tests/cluecode/data/copyrights/msntp-MSNTP.yml
@@ -17,3 +17,8 @@ holders_summary:
count: 2
- value: University of Cambridge
count: 2
+allrights:
+ - (c) Copyright, N.M. Maclaren, 1996, 1997, 2000
+ - (c) Copyright, University of Cambridge, 1996, 1997, 2000
+ - (c) Copyright N.M. Maclaren
+ - (c) Copyright University of Cambridge.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/multiline-Historical.txt.yml b/tests/cluecode/data/copyrights/multiline-Historical.txt.yml
index 0f12ec01c0b..8d3034efe48 100644
--- a/tests/cluecode/data/copyrights/multiline-Historical.txt.yml
+++ b/tests/cluecode/data/copyrights/multiline-Historical.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS.
count: 1
+allrights:
+ - COPYRIGHT (c) 1990-1994 BY GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS. ALL RIGHTS RESERVED
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml b/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml
index 10bc38329e8..bc552c33864 100644
--- a/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml
+++ b/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml
@@ -14,3 +14,7 @@ copyrights_summary:
count: 2
- value: Copyright (c) 2000-2001 Alias Ltd.
count: 1
+allrights:
+ - Copyright (c) Microsoft. All rights reserved.
+ - Copyright (c) 2000-2001 Alias Ltd. All rights reserved.
+ - Copyright (c) Microsoft.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/natural_docs.txt.yml b/tests/cluecode/data/copyrights/natural_docs.txt.yml
index abeee6fd4a6..fdebfb25321 100644
--- a/tests/cluecode/data/copyrights/natural_docs.txt.yml
+++ b/tests/cluecode/data/copyrights/natural_docs.txt.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Greg Valure
count: 1
+allrights:
+ - Copyright (c) 2009 by Dimitri van Heesch.
+ - Copyright (c) 2003-2008 Greg Valure
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/naumen-Naumen.yml b/tests/cluecode/data/copyrights/naumen-Naumen.yml
index db66f87c704..f6ebf2b716b 100644
--- a/tests/cluecode/data/copyrights/naumen-Naumen.yml
+++ b/tests/cluecode/data/copyrights/naumen-Naumen.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: NAUMEN (tm) and Contributors
count: 1
+allrights:
+ - Copyright (c) NAUMEN (tm) and Contributors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/naumen_txt.txt.yml b/tests/cluecode/data/copyrights/naumen_txt.txt.yml
index db66f87c704..f6ebf2b716b 100644
--- a/tests/cluecode/data/copyrights/naumen_txt.txt.yml
+++ b/tests/cluecode/data/copyrights/naumen_txt.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: NAUMEN (tm) and Contributors
count: 1
+allrights:
+ - Copyright (c) NAUMEN (tm) and Contributors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml b/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml
index 8863c9836ec..dde2869ea41 100644
--- a/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml
+++ b/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Daniel F. Savarese
count: 1
+allrights:
+ - Copyright (c) 1996-1999 Daniel F. Savarese.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/nnp_and_co.txt.yml b/tests/cluecode/data/copyrights/nnp_and_co.txt.yml
index ffe90523017..17c61e60542 100644
--- a/tests/cluecode/data/copyrights/nnp_and_co.txt.yml
+++ b/tests/cluecode/data/copyrights/nnp_and_co.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sandra and Klaus Rennecke
count: 1
+allrights:
+ - Copyright (c) 2001, Sandra and Klaus Rennecke.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml b/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml
index 3a1a7d7fbcf..ba4b8372253 100644
--- a/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml
+++ b/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml
@@ -5,3 +5,5 @@ copyrights:
- (c) 1990-2005 Microsoft
holders:
- Microsoft
+allrights:
+ - (c) 1990-2005 Microsoft All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/nokia-Nokia.yml b/tests/cluecode/data/copyrights/nokia-Nokia.yml
index f58f5200a9b..9cbc61f335e 100644
--- a/tests/cluecode/data/copyrights/nokia-Nokia.yml
+++ b/tests/cluecode/data/copyrights/nokia-Nokia.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Nokia and others
count: 1
+allrights:
+ - Copyright (c) Nokia and others. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml b/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml
index 6ab6a16a5e5..bb3a1f1051e 100644
--- a/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml
+++ b/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Nokia Mobile Phones
count: 1
+allrights:
+ - Copyright (c) 2002, Nokia Mobile Phones. All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml b/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml
index 1fd0630c8fa..dfdcb6d976b 100644
--- a/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml
+++ b/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: iClick, Inc., software
count: 1
+allrights:
+ - at iClick, Inc., software copyright (c) 1999.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml b/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml
index a0d29c601c6..c37d71ba287 100644
--- a/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml
+++ b/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml
@@ -47,3 +47,16 @@ holders_summary:
count: 1
- value: http://xml.apache.org/xalan-j
count: 1
+allrights:
+ - Copyright 2003-2010 The Knopflerfish Project http://www.knopflerfish.org
+ - Copyright (c) OSGi Alliance (2000, 2009). All Rights Reserved.
+ - Copyright (c) 2000-2005 INRIA, France Telecom All rights reserved.
+ - (c) 1999-2003.
+ - (c) 2001-2004 http://ws.apache.org/axis2
+ - Copyright (c) 2004, Didier Donsez
+ - (c) 2001-2004 http://commons.apache.org/logging
+ - (c) 1999-2003. http://xml.apache.org/dist/LICENSE.txt
+ - (c) 2001-2004
+ - Copyright (c) 2004, Richard S. Hall
+ - (c) 2001-2004 http://xml.apache.org/xalan-j
+ - (c) 2001-2004 http://xerces.apache.org
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml b/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml
index 0cea7161171..156b5206f46 100644
--- a/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml
+++ b/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Netscape Communications Corporation
count: 1
+allrights:
+ - Copyright (c) 1998 Netscape Communications Corporation. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml b/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml
index 9068a4ca6ae..9a49de912f9 100644
--- a/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml
+++ b/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: NVIDIA, Corp.
count: 2
+allrights:
+ - Copyright (c) 1996-1998 NVIDIA, Corp. All rights reserved.
+ - Copyright (c) 1996-1998 NVIDIA, Corp.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml b/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml
index 5ffd96c608b..4722eacab3c 100644
--- a/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml
+++ b/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: OCLC Research
count: 1
+allrights:
+ - Copyright (c) 2000. OCLC Research. All Rights Reserved
+ - Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml b/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml
index 5bf2d8c120e..0c909b59241 100644
--- a/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml
+++ b/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 2
- value: OCLC Research
count: 1
+allrights:
+ - Copyright (c) 2002. OCLC Research. All Rights Reserved
+ - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. and other contributors. All rights reserved.
+ - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. and other contributors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml b/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml
index 871e313e4f0..5253703908f 100644
--- a/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml
+++ b/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The OpenLDAP Foundation, Redwood City, California, USA.
count: 1
+allrights:
+ - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml b/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml
index 1702e60919f..51b12fbd626 100644
--- a/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml
+++ b/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml
@@ -488,3 +488,155 @@ holders_summary:
count: 1
- value: ooo-build/Go-OO Team
count: 1
+allrights:
+ - Copyright (c) 2002-2009 Software in the Public Interest, Inc.
+ - Copyright (c) 2002-2009 ooo-build/Go-OO Team
+ - (c) Sun Microsystems.
+ - Copyright 2002-2009 Sun Microsystems, Inc.
+ - Copyright 2002-2009 Sun Microsystems, Inc.
+ - Copyright (c) 2002-2005 Maxim Shemanarev
+ - Copyright 2001-2004 The Apache Software Foundation.
+ - Copyright 2003-2007 The Apache Software Foundation
+ - Copyright 2001-2007 The Apache Software Foundation
+ - Copyright 1999-2007 The Apache Software Foundation
+ - Copyright (c) 2000 Pat Niemeyer
+ - Copyright (c) 2000 INRIA, France Telecom
+ - Copyright (c) 2002 France Telecom
+ - Copyright (c) 1990-2003 Sleepycat Software
+ - Copyright (c) 1990, 1993, 1994, 1995 The Regents of the University of California
+ - Copyright (c) 2003 by Bitstream, Inc.
+ - Copyright (c) 2006 by Tavmjong Bah
+ - Copyright (c) 2007 Red Hat, Inc
+ - Copyright (c) 2007 Red Hat, Inc. All rights reserved.
+ - Copyright 2000-2003 Beman Dawes
+ - Copyright (c) 1998-2003 Joel de Guzman
+ - Copyright (c) 2001-2003 Daniel Nuffer
+ - Copyright (c) 2001-2003 Hartmut Kaiser
+ - Copyright (c) 2002-2003 Martin Wille
+ - Copyright (c) 2002 Juan Carlos Arevalo-Baeza
+ - Copyright (c) 2002 Raghavendra Satish
+ - Copyright (c) 2002 Jeff Westfahl
+ - Copyright (c) 2001 Bruce Florman
+ - Copyright 1999 Tom Tromey
+ - Copyright 2002, 2003 University of Southern California, Information Sciences Institute (ISI)
+ - Copyright 2004 David Reveman
+ - Copyright 2000, 2002, 2004, 2005 Keith Packard
+ - Copyright 2004 Calum Robinson
+ - Copyright 2004 Richard D. Worth
+ - Copyright 2004, 2005 Red Hat, Inc.
+ - Copyright 2004 David Reveman
+ - Copyright (c) Copyright 2000, Baptiste Lepilleur
+ - Copyright (c) 1996 - 2004, Daniel Stenberg
+ - Copyright (c) 1992,1994 by Dennis Vadura
+ - Copyright (c) 1996 by WTI Corp.
+ - Copyright 1999-2003 by Easy Software
+ - Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
+ - Copyright (c) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+ - Copyright (c) 2000,2001,2002,2003 by George William
+ - Copyright (c) 2001-2008, The HSQL Development Group
+ - Copyright (c) 1995, 1997, 2000, 2001, 2002 Free Software Foundation, Inc.
+ - Copyright (c) Kevin Hendricks, 2001-2002
+ - Copyright (c) 2002-2008 Laszlo Nemeth
+ - Copyright (c) 2000 Bjoern Jacke
+ - Copyright 2000 by Sun Microsystems, Inc.
+ - Copyright (c) 1998 Raph Levien
+ - Copyright (c) 2001 ALTLinux, Moscow
+ - Copyright (c) 2006, 2007, 2008 Laszlo Nemeth
+ - Copyright (c) 2003-2006 The International Color Consortiu
+ - Copyright (c) 1995-2008 International Business Machines Corporation and others
+ - Copyright 2000-2005, by Object Refinery Limited
+ - Copyright 2005-2007, by Pentaho Corporation
+ - Copyright 1994-2002 World Wide Web Consortium
+ - Copyright (c) 1991-1998, Thomas G. Lane
+ - Copyright 1994-2002 World Wide Web Consortium
+ - Copyright (c) 2002 Anders Carlsson
+ - Copyright (c) 2003, WiseGuys Internet B.V.
+ - Copyright (c) 2003, WiseGuys Internet B.V.
+ - Copyright 1997-1999 World Wide Web Consortium
+ - Copyright (c) 2002-2003 Aleksey Sanin
+ - Copyright (c) 2003 America Online, Inc.
+ - Copyright (c) 2001-2002 Daniel Veillard. All Rights Reserved.
+ - Copyright (c) 1998-2001 by the University of Florida
+ - Copyright (c) 1991, 2007 Free Software Foundation, Inc
+ - Copyright 2004 The Apache Software Foundation
+ - Copyright 2005 The Apache Software Foundation
+ - Copyright 2007 The Apache Software Foundation
+ - Copyright (c) 1999-2007 Brian Paul
+ - Copyright (c) 2007 The Khronos Group Inc.
+ - Copyright (c) 2003 Stuart Caie
+ - Copyright (c) 1999-2006 Joe Orton
+ - Copyright (c) 1999-2000 Tommi Komulainen
+ - Copyright (c) 1999-2000 Peter Boos
+ - Copyright (c) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+ - Copyright (c) 2004 Aleix Conchillo Flaque
+ - Copyright (c) 2004 Jiang Lei
+ - Copyright (c) 2004-2005 Vladimir Berezniker @ http://public.xdi.org
+ - Copyright (c) 1998 Netscape Communications Corporation
+ - Copyright (c) 1998-2007 The OpenSSL Project
+ - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
+ - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved.
+ - holder is Tim Hudson (tjh@cryptsoft.com).
+ - Copyright (c) 2001, 2002, 2003, 2004 Python Software Foundation
+ - Copyright (c) 2000 BeOpen.com
+ - Copyright (c) 1995-2001 Corporation for National Research Initiatives
+ - Copyright (c) 1991-1995 Stichting Mathematisch Centrum
+ - Copyright (c) 2000-2007 David Beckett
+ - Copyright (c) 2000-2005 University of Bristol
+ - Copyright (c) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc
+ - Copyright (c) 1997-2000 Netscape Communications Corporation
+ - Copyright (c) 2000 See Beyond Communications Corporation
+ - Copyright (c) 1997 David Mosberger-Tang and Andreas Beck
+ - Copyright (c) 1998, 1999 James Clark
+ - Copyright 1999 CERN - European Organization for Nuclear Research
+ - Copyright (c) 2002-2003 Aleksey Sanin
+ - Copyright (c) 2003 America Online, Inc.
+ - Copyright (c) 2001-2002 Daniel Veillard. All Rights Reserved.
+ - Copyright (c) 1998-2001 by the University of Florida
+ - Copyright (c) 1991, 2007 Free Software Foundation, Inc
+ - Copyright 2004 The Apache Software Foundation
+ - Copyright 2005 The Apache Software Foundation
+ - Copyright 2007 The Apache Software Foundation
+ - Copyright (c) 1999-2007 Brian Paul
+ - Copyright (c) 2007 The Khronos Group Inc.
+ - Copyright (c) 2003 Stuart Caie
+ - Copyright (c) 1999-2006 Joe Orton
+ - Copyright (c) 1999-2000 Tommi Komulainen
+ - Copyright (c) 1999-2000 Peter Boos
+ - Copyright (c) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+ - Copyright (c) 2004 Aleix Conchillo Flaque
+ - Copyright (c) 2004 Jiang Lei
+ - Copyright (c) 2004-2005 Vladimir Berezniker @ http://public.xdi.org
+ - Copyright (c) 1998 Netscape Communications Corporation
+ - Copyright (c) 1998-2007 The OpenSSL Project
+ - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
+ - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved.
+ - holder is Tim Hudson (tjh@cryptsoft.com).
+ - Copyright (c) 2001, 2002, 2003, 2004 Python Software Foundation
+ - Copyright (c) 2000 BeOpen.com
+ - Copyright (c) 1995-2001 Corporation for National Research Initiatives
+ - Copyright (c) 1991-1995 Stichting Mathematisch Centrum
+ - Copyright (c) 2000-2007 David Beckett
+ - Copyright (c) 2000-2005 University of Bristol
+ - Copyright (c) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc
+ - Copyright (c) 1997-2000 Netscape Communications Corporation
+ - Copyright (c) 2000 See Beyond Communications Corporation
+ - Copyright (c) 1997 David Mosberger-Tang and Andreas Beck
+ - Copyright (c) 1998, 1999 James Clark
+ - Copyright 1999 CERN - European Organization for Nuclear Research
+ - Copyright (c) 1994 Hewlett-Packard Company
+ - Copyright (c) 1996-1999 Silicon Graphics Computer Systems, Inc.
+ - Copyright (c) 1997 Moscow Center for SPARC Technology
+ - Copyright (c) 1999, 2000, 2001 Boris Fomitchev
+ - Copyright 1999-2002,2004 The Apache Software Foundation
+ - Copyright (c) 1991, 1992 TWAIN Working Group
+ - Copyright (c) 1997 TWAIN Working Group
+ - Copyright (c) 1998 TWAIN Working Group
+ - Copyright (c) 2000 TWAIN Working Group
+ - Copyright 1998-2001 by Ullrich Koethe
+ - Copyright 2004 by Urban Widmark
+ - Copyright 2002-2007 by Henrik Just
+ - Copyright (c) 2000, Compaq Computer Corporation
+ - Copyright (c) 2002, Hewlett Packard, Inc
+ - Copyright (c) 2000 SuSE, Inc.
+ - Copyright 1996-2007 Glyph & Cog, LLC.
+ - Copyright (c) 1995-2002 Jean-loup Gailly and Mark Adler
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml b/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml
index 5a12d8daf8c..347a2ed7425 100644
--- a/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml
+++ b/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Veridian Information Solutions, Inc.
count: 1
+allrights:
+ - Copyright (c) 1999-2000 Veridian Information Solutions, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml b/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml
index 54781089a57..226f1f48da7 100644
--- a/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml
+++ b/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: ThisOldHouse
count: 1
+allrights:
+ - Copyright (c) 2000 by ThisOldHouse.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/openssl-OpenSSL.yml b/tests/cluecode/data/copyrights/openssl-OpenSSL.yml
index ac7c65f2263..57f0cb5e45d 100644
--- a/tests/cluecode/data/copyrights/openssl-OpenSSL.yml
+++ b/tests/cluecode/data/copyrights/openssl-OpenSSL.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The OpenSSL Project
count: 1
+allrights:
+ - Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/openssl-c.c.yml b/tests/cluecode/data/copyrights/openssl-c.c.yml
index e7d4fec90ef..9655fa76131 100644
--- a/tests/cluecode/data/copyrights/openssl-c.c.yml
+++ b/tests/cluecode/data/copyrights/openssl-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Tim Hudson
count: 1
+allrights:
+ - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved.
+ - holder is Tim Hudson (tjh@mincom.oz.au).
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/opyrights.java.yml b/tests/cluecode/data/copyrights/opyrights.java.yml
index 85a251c63b7..cb089d7cff3 100644
--- a/tests/cluecode/data/copyrights/opyrights.java.yml
+++ b/tests/cluecode/data/copyrights/opyrights.java.yml
@@ -37,3 +37,13 @@ holders_summary:
count: 1
- value: Zeta Microcomputer Software
count: 1
+allrights:
+ - (c) Copyright 2000-2005, by Object Refinery Limited and Contributors.
+ - Copyright (c) 2000-2004, by Thomas Morgner and Contributors.
+ - opylefted by -Harvie 2oo7
+ - Copyright (c) by Max Ziebell
+ - Copyright (c).
+ - Copyright (c) 1990 by Jon Orten Thunderball Cave BBS
+ - Copyright (c) by Zeta Microcomputer Software
+ - Copyright (c). 08/95, Abigwar
+ - Copyright (c) by Parik Rao.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/oracle.txt.yml b/tests/cluecode/data/copyrights/oracle.txt.yml
index d3878441d7b..51868484dec 100644
--- a/tests/cluecode/data/copyrights/oracle.txt.yml
+++ b/tests/cluecode/data/copyrights/oracle.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Oracle and/or its affiliates
count: 1
+allrights:
+ - Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml b/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml
index 44fd30660bf..13cf9f8c470 100644
--- a/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml
+++ b/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Lawrence Rosen
count: 1
+allrights:
+ - Copyright (c) 2005 Lawrence Rosen.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/partial_detection.txt.yml b/tests/cluecode/data/copyrights/partial_detection.txt.yml
index 3b0b0cc4525..553eae72c9c 100644
--- a/tests/cluecode/data/copyrights/partial_detection.txt.yml
+++ b/tests/cluecode/data/copyrights/partial_detection.txt.yml
@@ -66,3 +66,19 @@ holders_summary:
count: 1
- value: the Perl 5 Porters
count: 1
+allrights:
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright (c) 2001 AT&T
+ - Copyright (c) 2004-2006 by Henrique de Moraes Holschuh
+ - Copyright 2005-2007 Christopher Montgomery, Jean-Marc Valin, Timothy Terriberry, CSIRO, and other contributors
+ - Copyright (c) 2007 James Newton-King
+ - Copyright (c) 2006, SHIMODA Hiroshi
+ - Copyright (c) 2006, FUJITA Yuji
+ - Copyright (c) 2002-2009 ooo-build/Go-OO Team
+ - Copyright (c) 2002-2009 Software in the Public Interest, Inc.
+ - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
+ - Copyright (c) 2006 Academy of Motion Picture Arts and Sciences
+ - Copyright (c) 1995-2000 Corporation for National Research Initiatives
+ - Copyright (c) 2001 EU DataGrid
+ - Copyright (c) 2000. OCLC Research
+ - Copyright (c) 1999 Trolltech AS, Norway
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml b/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml
index 3b0b0cc4525..553eae72c9c 100644
--- a/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml
+++ b/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml
@@ -66,3 +66,19 @@ holders_summary:
count: 1
- value: the Perl 5 Porters
count: 1
+allrights:
+ - Copyright 1991 by the Massachusetts Institute of Technology
+ - Copyright (c) 2001 AT&T
+ - Copyright (c) 2004-2006 by Henrique de Moraes Holschuh
+ - Copyright 2005-2007 Christopher Montgomery, Jean-Marc Valin, Timothy Terriberry, CSIRO, and other contributors
+ - Copyright (c) 2007 James Newton-King
+ - Copyright (c) 2006, SHIMODA Hiroshi
+ - Copyright (c) 2006, FUJITA Yuji
+ - Copyright (c) 2002-2009 ooo-build/Go-OO Team
+ - Copyright (c) 2002-2009 Software in the Public Interest, Inc.
+ - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
+ - Copyright (c) 2006 Academy of Motion Picture Arts and Sciences
+ - Copyright (c) 1995-2000 Corporation for National Research Initiatives
+ - Copyright (c) 2001 EU DataGrid
+ - Copyright (c) 2000. OCLC Research
+ - Copyright (c) 1999 Trolltech AS, Norway
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml b/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml
index ae30e848a21..d63495e3d28 100644
--- a/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml
+++ b/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml
@@ -35,3 +35,13 @@ holders_summary:
count: 1
- value: the Perl 5 Porters
count: 1
+allrights:
+ - Copyright 1989-2001, Larry Wall All rights reserved.
+ - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler
+ - Copyright (c) 1991-2006 Unicode, Inc.
+ - Copyright (c) 1991-2008 Unicode, Inc. All rights reserved.
+ - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
+ - copyright (c) 1994 by the Regents of the University of California. All rights reserved.
+ - Copyright (c) 1994 The Regents of the University of California. All rights reserved.
+ - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
+ - copyright (c) 1996-2007 Julian R Seward. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/phorum-Phorum.yml b/tests/cluecode/data/copyrights/phorum-Phorum.yml
index 5762ecd001d..75f2698b3bc 100644
--- a/tests/cluecode/data/copyrights/phorum-Phorum.yml
+++ b/tests/cluecode/data/copyrights/phorum-Phorum.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Phorum Development Team
count: 1
+allrights:
+ - Copyright (c) 2001 The Phorum Development Team. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/pine-Pine.yml b/tests/cluecode/data/copyrights/pine-Pine.yml
index 2f96fc905d0..a576170c7a6 100644
--- a/tests/cluecode/data/copyrights/pine-Pine.yml
+++ b/tests/cluecode/data/copyrights/pine-Pine.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the University of Washington
count: 1
+allrights:
+ - Copyright 1989-2007 by the University of Washington.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml b/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml
index 55d1055aef3..374f56b40c9 100644
--- a/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml
+++ b/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml
@@ -24,3 +24,8 @@ holders_summary:
- value: the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation,
ActiveState Corporation
count: 1
+allrights:
+ - Portions Copyright (c) 1996-2003, The PostgreSQL Global Development Group
+ - Portions Copyright (c) 1994, The Regents of the University of California
+ - Copyright (c) 1998, 1999 Henry Spencer. All rights reserved.
+ - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/present_year_range.txt.yml b/tests/cluecode/data/copyrights/present_year_range.txt.yml
index b3d4e337201..28b6d773b73 100644
--- a/tests/cluecode/data/copyrights/present_year_range.txt.yml
+++ b/tests/cluecode/data/copyrights/present_year_range.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Adobe Systems Incorporated
count: 1
+allrights:
+ - Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/properties-properties.properties.yml b/tests/cluecode/data/copyrights/properties-properties.properties.yml
index a37b6a4c2bc..5714c5b8da7 100644
--- a/tests/cluecode/data/copyrights/properties-properties.properties.yml
+++ b/tests/cluecode/data/copyrights/properties-properties.properties.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Restaurant
count: 1
+allrights:
+ - (c) 2004-2007 Restaurant. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml b/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml
index ac8d7f4cd63..ae810a20ef5 100644
--- a/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml
+++ b/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Avinash Kak. Python Software Foundation
count: 1
+allrights:
+ - (c) 2008 Avinash Kak. Python Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml b/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml
index 62febc2e66d..bfd78658226 100644
--- a/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml
+++ b/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: Stichting Mathematisch Centrum Amsterdam, The Netherlands
count: 1
+allrights:
+ - Copyright (c) 2001, 2002 Python Software Foundation All Rights Reserved
+ - Copyright (c) 1995-2001 Corporation for National Research Initiatives All Rights Reserved
+ - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml b/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml
index 4b12e6dc680..0e79e102aa8 100644
--- a/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml
+++ b/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Corporation for National Research Initiatives
count: 1
+allrights:
+ - Copyright (c) 1995-2000 Corporation for National Research Initiatives All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml b/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml
index 9c58f3cf660..6cf48e02ba6 100644
--- a/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml
+++ b/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Corporation for National Research Initiatives
count: 1
+allrights:
+ - Copyright 1995-2001 Corporation for National Research Initiatives All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/python_v2-Python_v.yml b/tests/cluecode/data/copyrights/python_v2-Python_v.yml
index c1ffb40de9a..83273da953e 100644
--- a/tests/cluecode/data/copyrights/python_v2-Python_v.yml
+++ b/tests/cluecode/data/copyrights/python_v2-Python_v.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Python Software Foundation
count: 1
+allrights:
+ - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation All Rights Reserved
+ - Copyright (c) 1995-2001 Corporation for National Research Initiatives All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml b/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml
index 4805d430d87..88623fb4944 100644
--- a/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml
+++ b/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Trolltech AS, Norway
count: 1
+allrights:
+ - Copyright (c) 1999 Trolltech AS, Norway.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/rda.c.yml b/tests/cluecode/data/copyrights/rda.c.yml
index 76fbf957b9e..f7ea26d52b7 100644
--- a/tests/cluecode/data/copyrights/rda.c.yml
+++ b/tests/cluecode/data/copyrights/rda.c.yml
@@ -83,3 +83,25 @@ holders_summary:
count: 1
- value: Yann Collet
count: 1
+allrights:
+ - Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic
+ - Copyright 2003-2017, BugSplat.
+ - Copyright 2009-2011 Intel Corporation
+ - Copyright 2017 Intel Corporation
+ - Copyright (c) 2003-2018 Ready At Dawn Studios LLC.
+ - Copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler
+ - Copyright (c) 2000-2007 Niels Provos
+ - Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
+ - Copyright (c) 1996 - 2018, Daniel Stenberg,
+ - Copyright (c) 2006, Google Inc.
+ - Copyright (c) 2009-2011, Salvatore Sanfilippo
+ - Copyright (c) 2009-2014 Petri Lehtinen
+ - Copyright (c) 2010-2011, Pieter Noordhuis
+ - Copyright (c) 2011-2016, Yann Collet.
+ - Copyright (c) 2012 NVIDIA Corporation. All rights reserved.
+ - Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
+ - Copyright (c) 2017 Advanced Micro Devices, Inc.
+ - Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
+ - Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
+ - Copyright (c) 2018 William Pitcock
+ - Copyright (c) Facebook Technologies, LLC and its affiliates.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml b/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml
index 11d59690c22..67d939c5094 100644
--- a/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml
+++ b/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: RealNetworks, Inc. and/or its licensors
count: 1
+allrights:
+ - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml b/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml
index 435da2be3c8..ec4bbe2fcf2 100644
--- a/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml
+++ b/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: RealNetworks, Inc.
count: 1
+allrights:
+ - Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml b/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml
index 35c2911288d..3a85d237905 100644
--- a/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml
+++ b/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Technical Pursuit Inc.
count: 1
+allrights:
+ - Copyright (c) 2001-2007 Technical Pursuit Inc., All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml b/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml
index 092ad398a84..56cc953d799 100644
--- a/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml
+++ b/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: Red Hat
count: 2
+allrights:
+ - Copyright (c) 2007 Red Hat, Inc
+ - Copyright (c) 2007 Red Hat, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/redhatref-RedHatref.yml b/tests/cluecode/data/copyrights/redhatref-RedHatref.yml
index c9c240f107f..e34f5c7c45c 100644
--- a/tests/cluecode/data/copyrights/redhatref-RedHatref.yml
+++ b/tests/cluecode/data/copyrights/redhatref-RedHatref.yml
@@ -15,3 +15,7 @@ holders_summary:
count: 2
- value: Red Hat, Inc. and others
count: 1
+allrights:
+ - Copyright (c) 2005 Red Hat, Inc.
+ - Copyright (c) 1995-2005 Red Hat, Inc. and others.
+ - copyrighted by Red Hat, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml b/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml
index d3cddab4eab..45e2c12542a 100644
--- a/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml
+++ b/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1990 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/regents_license-LICENSE.yml b/tests/cluecode/data/copyrights/regents_license-LICENSE.yml
index fe904f0ee9a..e1520709a09 100644
--- a/tests/cluecode/data/copyrights/regents_license-LICENSE.yml
+++ b/tests/cluecode/data/copyrights/regents_license-LICENSE.yml
@@ -20,3 +20,8 @@ holders_summary:
count: 1
- value: the Institute of Electrical and Electronics Engineers, Inc.
count: 1
+allrights:
+ - copyrighted by The Regents of the University of California.
+ - Copyright 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved.
+ - copyright C 1988 by the Institute of Electrical and Electronics Engineers, Inc.
+ - copyright of UC Berkeley's Berkeley Software
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml b/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml
index 0e559bc07d4..80126cf62c7 100644
--- a/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml
+++ b/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml
@@ -5,3 +5,5 @@ what:
copyrights:
- Copyright (c) 1995-1999
notes: the trailing are is rare enough not to be made an exception
+allrights:
+ - Copyright (c) 1995-1999. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/rim.txt.yml b/tests/cluecode/data/copyrights/rim.txt.yml
index 39cb0870f5c..b2054668b21 100644
--- a/tests/cluecode/data/copyrights/rim.txt.yml
+++ b/tests/cluecode/data/copyrights/rim.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Research In Motion Limited
count: 1
+allrights:
+ - Copyright (c) Research In Motion Limited 2010. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml b/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml
index 94bede6cbea..b7db6412ea8 100644
--- a/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml
+++ b/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Dag-Erling Coidan Smorgrav
count: 1
+allrights:
+ - Copyright (c) 2003 Dag-Erling Coidan Smorgrav All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/sample_py-py.py.yml b/tests/cluecode/data/copyrights/sample_py-py.py.yml
index 56de5e6eb81..6db3b3fd64e 100644
--- a/tests/cluecode/data/copyrights/sample_py-py.py.yml
+++ b/tests/cluecode/data/copyrights/sample_py-py.py.yml
@@ -9,3 +9,7 @@ holders:
- ABC ABC CONFIDENTIAL PROPRIETARY
- Motorola, Inc. - Motorola Confidential Proprietary
- Metalink L.T.D.
+allrights:
+ - COPYRIGHT 2006 ABC ABC CONFIDENTIAL PROPRIETARY
+ - Copyright 2006 (c), Motorola, Inc. - Motorola Confidential Proprietary
+ - Metalink L.T.D. (c) Copyright 2006.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/scilab-Scilab.yml b/tests/cluecode/data/copyrights/scilab-Scilab.yml
index 7c92e80883d..5df8357fc5b 100644
--- a/tests/cluecode/data/copyrights/scilab-Scilab.yml
+++ b/tests/cluecode/data/copyrights/scilab-Scilab.yml
@@ -28,3 +28,10 @@ expected_failures:
- holders
- authors
- holders_summary
+allrights:
+ - Scilab (c) INRIA-ENPC.
+ - Scilab (c) INRIA-ENPC.
+ - Scilab (c) INRIA-ENPC.
+ - Scilab inside (c) INRIA-ENPC
+ - Scilab (c) INRIA-ENPC
+ - Scilab (c) INRIA-ENPC
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml b/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml
index cdb8d29f586..c46b48dea0e 100644
--- a/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml
+++ b/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml
@@ -181,3 +181,46 @@ notes: |
Copyright (c) 1998-2006 by the....
and this is not detected
following: Dave Ahlswede, Manuel Amador, Matt Amato, Daniel Atallah, Paul Aurich, Patrick Aussems, Anibal Avelar, Alex Badea, John Bailey, Chris Banal, Luca Barbato, Levi Bard, Kevin Barry, Derek Battams, Martin Bayard, Curtis Beattie, Dave Bell, Igor Belyi, Brian Bernas, Paul Betts, Jonas Birme, Eric Blade, Ethan Blanton, Joshua Blanton, Rainer Blessing, Herman Bloggs, David Blue, Jason Boerner, Graham Booker, Paolo Borelli, Julien Bossart, Craig Boston, Chris Boyle, Derrick J Brashear, Matt Brenneke, Jeremy Brooks, Philip Brown, Sean Burke, Thomas Butter, Andrea Canciani, Damien Carbery, Michael Carlson, Keegan Carruthers-Smith, Steve Cavilia, Julien Cegarra, Cerulean Studios, LLC
+allrights:
+ - Copyright (c) 2004-2007 Stefan Walter
+ - Copyright (c) 2004-2006 Adam Schreiber
+ - Copyright (c) 2001-2003 Jose Carlos Garcia Sogo
+ - Copyright (c) 2002, 2003 Jacob Perkins
+ - Copyright (c) 2004, 2006 Nate Nielsen
+ - Copyright (c) 2000-2004 Marco Pesenti Gritti
+ - Copyright (c) 2003-2006 Christian Persch
+ - Copyright (c) 2004, 2006 Jean-Francois Rameau
+ - Copyright (c) 2000, 2001 Eazel, Inc.
+ - Copyright (c) 2007, 2008 Jorge Gonzalez
+ - Copyright (c) 2007, 2008 Daniel Nylander
+ - Copyright (c) 2004-2005 Shaun McCance
+ - Copyright (c) 2007 Milo Casagrande
+ - Copyright (c) 2007-2008 Claude Paroz
+ - Copyright (c) 2007 GNOME i18n Project for Vietnamese
+ - Copyright (c) 2008 Vasilii Faronov
+ - Copyright (c) 1992-2008 Free Software Foundation, Inc.
+ - Copyright (c) 1999 Dave Camp
+ - Copyright (c) 2005 Tecsidel S.A.
+ - Copyright (c) 2004-2005 Adam Weinberger and the GNOME Foundation
+ - Copyright (c) 2007, 2008 The GNOME Project
+ - Copyright (c) 2007 Swecha Telugu Localisation Team
+ - Copyright (c) 1995-1997 Ulrich Drepper
+ - Copyright (c) 2004-2008 Rodney Dawes
+ - Copyright (c) 1999, 2000 Anthony Mulcahy
+ - Copyright (c) 2007 Ihar Hrachyshka
+ - Copyright (c) 2004, 2005 Miloslav Trmac
+ - Copyright (c) 2003 Peter Mato
+ - Copyright (c) 2004, 2005 Danijel Studen, Denis Lackovic, Ivan Jankovic
+ - Copyright (c) 1994 X Consortium
+ - Copyright (c) 2006 Alexander Larsson
+ - Copyright (c) 2000-2003 Ximian Inc.
+ - Copyright (c) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
+ - Copyright (c) 1999, 2000 Robert Bihlmeyer
+ - Copyright (c) Crispin Flowerday
+ - Copyright (c) 2008 Frederic Peters
+ - Copyright (c) 2008 Lucas Lommer
+ - Copyright (c) 2008 Mario Blattermann
+ - Copyright (c) 2001-2004 Red Hat, Inc.
+ - Copyright (c) 2004 Scott James Remnant
+ - Copyright (c) 1998-2006 by the
+ - Copyright (c) 2008 Sebastien Bacher, Andreas Moog, Emilio Pozuelo Monfort and Josselin Mouette.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml b/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml
index 92b03a6b20d..207b7ac5059 100644
--- a/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml
+++ b/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: Silicon Graphics, Inc.
count: 2
+allrights:
+ - Copyright (c) 1994-1999 Silicon Graphics, Inc.
+ - Copyright (c) 1994-1999 Silicon Graphics, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml b/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml
index 6ae61ff9b85..7b5f669b410 100644
--- a/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml
+++ b/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Silicon Graphics, Inc.
count: 1
+allrights:
+ - (c) 1991-9 Silicon Graphics, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/sinica.txt.yml b/tests/cluecode/data/copyrights/sinica.txt.yml
index 7129aa07b65..5a5bde1deec 100644
--- a/tests/cluecode/data/copyrights/sinica.txt.yml
+++ b/tests/cluecode/data/copyrights/sinica.txt.yml
@@ -11,3 +11,5 @@ holders_summary:
- value: Computer Systems and Communication Lab, Institute of Information Science, Academia
Sinica
count: 1
+allrights:
+ - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml b/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml
index d14ebe9e415..c9e0373124d 100644
--- a/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml
+++ b/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sleepycat Software
count: 1
+allrights:
+ - Copyright (c) 1990-1999 Sleepycat Software. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml b/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml
index 97871aac1fb..eb576099e7a 100644
--- a/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml
+++ b/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml
@@ -15,3 +15,7 @@ holders_summary:
count: 2
- value: Foobar Company (PC) Property of Foobar Company
count: 1
+allrights:
+ - Foobar Company, All Rights Reserved, (c) 2005
+ - Copyright Foobar Company (PC) Property of Foobar Company
+ - Copyright (2003) Foobar Company All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml
index d389adc362f..10e1be06d96 100644
--- a/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml
+++ b/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: werken digital
count: 1
+allrights:
+ - Copyright (c) 2000-2002 werken digital. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml
index d8ca44344cb..5cb47323476 100644
--- a/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml
+++ b/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: MetaStuff, Ltd.
count: 1
+allrights:
+ - Copyright 2001-2005 (c) MetaStuff, Ltd. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml
index 53837b609e7..7579f14d8ab 100644
--- a/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml
+++ b/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Project Mayo
count: 1
+allrights:
+ - Copyright (c) 2001 Project Mayo.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml
index afe72327841..714db253054 100644
--- a/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml
+++ b/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: University Corporation for Atmospheric Research/Unidata
count: 1
+allrights:
+ - Copyright 1993-2014 University Corporation for Atmospheric Research/Unidata
+ - copyright 1991-1998 by LCS/Telegraphics.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml b/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml
index 07e66a4a286..5bdf2e341fb 100644
--- a/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml
+++ b/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: ST-Microelectronics
count: 1
+allrights:
+ - COPYRIGHT (c) ST-Microelectronics 1998.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml b/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml
index ca4d3cbd62c..8e70c0ae403 100644
--- a/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml
+++ b/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: STMicroelectronics
count: 1
+allrights:
+ - COPYRIGHT (c) STMicroelectronics 2005.
+ - COPYRIGHT (c) ST-Microelectronics 1998.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/super_tech_c-c.c.yml b/tests/cluecode/data/copyrights/super_tech_c-c.c.yml
index 2ff78ee8f43..223794cb56a 100644
--- a/tests/cluecode/data/copyrights/super_tech_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/super_tech_c-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A.
count: 1
+allrights:
+ - Copyright (c) $LastChangedDate$ Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A. ALL RIGHTS RESERVED
+ - Copyright (c) 2004 Benjamin Herrenschmuidt (benh@kernel.crashing.org), IBM Corp.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml b/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml
index a77d745540d..eb92e612823 100644
--- a/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml
+++ b/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sybase, Inc.
count: 1
+allrights:
+ - Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/the_native_web.txt.yml b/tests/cluecode/data/copyrights/the_native_web.txt.yml
index 5d013218338..4d65bbbd0d0 100644
--- a/tests/cluecode/data/copyrights/the_native_web.txt.yml
+++ b/tests/cluecode/data/copyrights/the_native_web.txt.yml
@@ -5,3 +5,5 @@ copyrights:
- Copyright (c) 2014-2018 the native web
holders:
- the native web
+allrights:
+ - Copyright (c) 2014-2018 the native web.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml b/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml
index fd28a945063..9c653dcd8ee 100644
--- a/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml
+++ b/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2010 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/toolchain.txt.yml b/tests/cluecode/data/copyrights/toolchain.txt.yml
index de917d25e79..ab4a3df9fde 100644
--- a/tests/cluecode/data/copyrights/toolchain.txt.yml
+++ b/tests/cluecode/data/copyrights/toolchain.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: lowRISC contributors
count: 1
+allrights:
+ - Copyright lowRISC contributors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/trailing_For-c.c.yml b/tests/cluecode/data/copyrights/trailing_For-c.c.yml
index 52757fd41ea..141492888da 100644
--- a/tests/cluecode/data/copyrights/trailing_For-c.c.yml
+++ b/tests/cluecode/data/copyrights/trailing_For-c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Mycom Pany, inc.
count: 1
+allrights:
+ - Copyright 2008 Mycom Pany, inc.
+ - Copyright (c) 1995-2003 Jean-loup Gailly.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml b/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml
index 31dc2984b85..e63c62ce012 100644
--- a/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml
+++ b/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Colin Percival
count: 1
+allrights:
+ - Copyright (c) 2008 The Android Open Source Project
+ - Copyright 2003-2005 Colin Percival All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml b/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml
index 55c61ec9653..f850bbeaec6 100644
--- a/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml
+++ b/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml
@@ -73,3 +73,21 @@ holders_summary:
count: 1
- value: Uri Blumenthal, IBM
count: 1
+allrights:
+ - Copyright (c) 1985-1988 Supoj Sutantavibul
+ - Copyright (c) 1991-1999 Micah Beck
+ - Copyright (c) 1989-2002 by Brian V. Smith
+ - Parts Copyright (c) 1991 by Paul King
+ - Parts Copyright (c) 1995 C. Blanc and C. Schlick
+ - Parts Copyright (c) 1993 Anthony Starks
+ - Parts Copyright (c) 1992 Uri Blumenthal, IBM
+ - Parts Copyright (c) 1992 by Brian Boyter
+ - Parts Copyright (c) 1995 Dane Dwyer
+ - Parts Copyright (c) 1999 by Philippe Bekaert
+ - Parts Copyright (c) 1999 by T. Sato
+ - Parts Copyright (c) 1998 by Mike Markowski
+ - Parts Copyright (c) 1994-2002 by Thomas Merz
+ - Parts Copyright (c) 2002-2006 by Martin Kroeker
+ - Copyright 1990, David Koblas.
+ - Copyright, 1987, Massachusetts Institute of Technology
+ - Copyright (c) 2006 Michael Pfeiffer - p3fff@web.de
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml b/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
index e82cf9043fe..16b701e6a0e 100644
--- a/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
+++ b/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
count: 1
+allrights:
+ - Copyright 1997, 1998 by Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/unicode_translit.txt.yml b/tests/cluecode/data/copyrights/unicode_translit.txt.yml
index 07aaf7d05ab..370f97fcd15 100644
--- a/tests/cluecode/data/copyrights/unicode_translit.txt.yml
+++ b/tests/cluecode/data/copyrights/unicode_translit.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Wojciech Mula
count: 1
+allrights:
+ - Copyright (c) 2011-2016 Wojciech Mula All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/unicol.txt.yml b/tests/cluecode/data/copyrights/unicol.txt.yml
index ad39d8d6653..82163e37ea1 100644
--- a/tests/cluecode/data/copyrights/unicol.txt.yml
+++ b/tests/cluecode/data/copyrights/unicol.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: University College London
count: 1
+allrights:
+ - Copyright (c) 1998-2000 University College London All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/unpublished.txt.yml b/tests/cluecode/data/copyrights/unpublished.txt.yml
index 3a697e1230a..dd13bf9ff47 100644
--- a/tests/cluecode/data/copyrights/unpublished.txt.yml
+++ b/tests/cluecode/data/copyrights/unpublished.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Unpublished Work of Sample Group, Inc.
count: 1
+allrights:
+ - (c) Unpublished Work of Sample Group, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml b/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml
index a72b8c1d6f0..f4322d3f738 100644
--- a/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml
+++ b/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: University of Utah
count: 1
+allrights:
+ - Copyright (c) 2001, 1998 University of Utah. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml b/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml
index 433f3ba1310..9eae45a0805 100644
--- a/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml
+++ b/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml
@@ -9,3 +9,5 @@ expected_failures:
- copyrights
- holders
+allrights:
+ - (c) Oss http://s.pudn.com/upload_log.asp?e
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml b/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml
index c95bd3285a2..66a49f4c263 100644
--- a/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml
+++ b/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Yahoo! Inc.
count: 1
+allrights:
+ - Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+ - Copyright 2001 Robert Penner All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml b/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml
index b0227a255f2..cce2bb53800 100644
--- a/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml
+++ b/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml
@@ -13,3 +13,7 @@ holders:
holders_summary:
- value: The Vitess Authors
count: 3
+allrights:
+ - Copyright 2019 The Vitess Authors.
+ - Copyright 2019 The Vitess Authors
+ - Copyright 2020 The Vitess Authors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml b/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml
index c88cf3f8fca..146ca16c068 100644
--- a/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml
+++ b/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Vovida Networks, Inc.
count: 1
+allrights:
+ - Copyright (c) 2000 Vovida Networks, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml b/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml
index 4e265f387d0..16c758e6b91 100644
--- a/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml
+++ b/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sun Microsystems
count: 1
+allrights:
+ - Copyright 2000-2007 Sun Microsystems, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml b/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml
index 0a63969334d..a1536bf9a3f 100644
--- a/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml
+++ b/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml
@@ -14,3 +14,6 @@ holders_summary:
count: 1
- value: Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California 94303, U.S.A.
count: 1
+allrights:
+ - Copyright (c) 2000 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California 94303, U.S.A. All rights reserved.
+ - Copyright (c) 2000 Sun Microsystems, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/weird-date.java.yml b/tests/cluecode/data/copyrights/weird-date.java.yml
index 0c276237ecb..7cfd09e3ee3 100644
--- a/tests/cluecode/data/copyrights/weird-date.java.yml
+++ b/tests/cluecode/data/copyrights/weird-date.java.yml
@@ -5,3 +5,5 @@ copyrights:
- Copyright 2010-20224 Amazon.com, Inc. or its affiliates
holders:
- Amazon.com, Inc. or its affiliates
+allrights:
+ - Copyright 2010-20224 Amazon.com, Inc. or its affiliates. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/wide_c-c.c.yml b/tests/cluecode/data/copyrights/wide_c-c.c.yml
index 1496c419588..dec39c12bfb 100644
--- a/tests/cluecode/data/copyrights/wide_c-c.c.yml
+++ b/tests/cluecode/data/copyrights/wide_c-c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: WIDE Project
count: 1
+allrights:
+ - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/wide_txt.txt.yml b/tests/cluecode/data/copyrights/wide_txt.txt.yml
index 1496c419588..dec39c12bfb 100644
--- a/tests/cluecode/data/copyrights/wide_txt.txt.yml
+++ b/tests/cluecode/data/copyrights/wide_txt.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: WIDE Project
count: 1
+allrights:
+ - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_ascii_art.txt.yml b/tests/cluecode/data/copyrights/with_ascii_art.txt.yml
index c8090465861..f71fc374a77 100644
--- a/tests/cluecode/data/copyrights/with_ascii_art.txt.yml
+++ b/tests/cluecode/data/copyrights/with_ascii_art.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1996. The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_colon.yml b/tests/cluecode/data/copyrights/with_colon.yml
index 377713210e4..d3da54ab576 100644
--- a/tests/cluecode/data/copyrights/with_colon.yml
+++ b/tests/cluecode/data/copyrights/with_colon.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Armin Ronacher
count: 1
+allrights:
+ - copyright (c) 2013 by Armin Ronacher.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml b/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml
index 536b626cec2..f1332d836c0 100644
--- a/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml
+++ b/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: D.T.Shield
count: 1
+allrights:
+ - Copyright 1999, 2000 - D.T.Shield.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml b/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml
index 672df54a86c..725b1363d9f 100644
--- a/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml
+++ b/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Evgeniy Polyakov
count: 1
+allrights:
+ - 2004+ Copyright (c) Evgeniy Polyakov All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml b/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml
index 36838c1447b..e75eed2f62d 100644
--- a/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml
+++ b/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: D.T.Shield
count: 1
+allrights:
+ - Copyright (c) 1999, 2000 - D.T.Shield.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml b/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml
index 1bec7188d26..89c9e49bc15 100644
--- a/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml
+++ b/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the original author or authors
count: 1
+allrights:
+ - Copyright (c) 2007-2010 the original author or authors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml b/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml
index 7d0b67b32bc..a233dcdfc28 100644
--- a/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml
+++ b/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Colin Percival
count: 1
+allrights:
+ - Copyright 2003-2005 Colin Percival All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml b/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml
index 22f1fcbc6bc..f27c83015be 100644
--- a/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml
+++ b/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the original author or authors
count: 1
+allrights:
+ - Copyright 2007-2010 the original author or authors.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/with_zoo.txt.yml b/tests/cluecode/data/copyrights/with_zoo.txt.yml
index 89db5d2e57a..cf4cd6549f6 100644
--- a/tests/cluecode/data/copyrights/with_zoo.txt.yml
+++ b/tests/cluecode/data/copyrights/with_zoo.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Open-RnD Sp. z o.o.
count: 1
+allrights:
+ - Copyright (c) 2012-2013 Open-RnD Sp. z o.o. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml b/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml
index 462219352b7..45b80813085 100644
--- a/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml
+++ b/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml
@@ -57,3 +57,20 @@ holders_summary:
count: 1
- value: Unicode, Inc.
count: 1
+allrights:
+ - Copyright 1991, 1993, 1998 The Open Group
+ - Copyright 2005 Red Hat, Inc.
+ - Copyright 2005 Red Hat, Inc
+ - Copyright (c) 1991-2003 Unicode, Inc. All Rights reserved.
+ - Copyright (c) 2003 The NetBSD Foundation, Inc. All rights reserved.
+ - Copyright (c) 2006 Martin Husemann.
+ - Copyright (c) 2007 Joerg Sonnenberger. All rights reserved.
+ - Copyright (c) 2002-2008 by Juliusz Chroboczek
+ - Copyright (c) 1987, 1993 The Regents of the University of California. All rights reserved.
+ - Copyright 1993, 1994, 1998 The Open Group
+ - Copyright (c) 2002-2008 by Juliusz Chroboczek
+ - Copyright 1999, 2001, 2002, 2004 Branden Robinson.
+ - Copyright 2006 Steve Langasek.
+ - Copyright 1999, 2001, 2002, 2004 Branden Robinson.
+ - Copyright 1999-2002, 2004 Branden Robinson.
+ - Copyright 2006 Steve Langasek.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml b/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml
index 92e21d5dbb8..5e9a3e252d6 100644
--- a/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml
+++ b/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml
@@ -29,3 +29,10 @@ holders_summary:
count: 1
- value: Terra Soft Solutions, Inc.
count: 1
+allrights:
+ - copyright (c) 2004 Canonical Software
+ - Copyright (c) 2002 Terra Soft Solutions, Inc.
+ - Copyright (c) 1998 by Josh Vanderhoof
+ - Copyright (c) 1996-1999 SciTech Software, Inc.
+ - copyright (c) David Mosberger-Tang
+ - Copyright (c) 1999 Egbert Eich.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/zend-Zend.yml b/tests/cluecode/data/copyrights/zend-Zend.yml
index 4f266e06455..93e8db112a1 100644
--- a/tests/cluecode/data/copyrights/zend-Zend.yml
+++ b/tests/cluecode/data/copyrights/zend-Zend.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Zend Technologies Ltd.
count: 1
+allrights:
+ - Copyright (c) 1999-2002 Zend Technologies Ltd. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml b/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml
index 4989e10d6e3..fe0ef9859c5 100644
--- a/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml
+++ b/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Digital Creations
count: 1
+allrights:
+ - Copyright (c) Digital Creations. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml b/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml
index 240768857ba..6e43f30dbc7 100644
--- a/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml
+++ b/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Zope Corporation (tm) and Contributors
count: 1
+allrights:
+ - Copyright (c) Zope Corporation (tm) and Contributors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_10.txt.yml b/tests/cluecode/data/generated/copyright_10.txt.yml
index 44e20c6897e..cc8b45f821b 100644
--- a/tests/cluecode/data/generated/copyright_10.txt.yml
+++ b/tests/cluecode/data/generated/copyright_10.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) by Leh. www.leh.jp
holders:
- Leh
+allrights:
+ - Copyright (c) All Rights Reserved by Leh. www.leh.jp
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_11.txt.yml b/tests/cluecode/data/generated/copyright_11.txt.yml
index c1c65157d9e..5f7662f322a 100644
--- a/tests/cluecode/data/generated/copyright_11.txt.yml
+++ b/tests/cluecode/data/generated/copyright_11.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2014-2019 New Avenue Foundation
holders:
- New Avenue Foundation
+allrights:
+ - Copyright (c) All Rights Reserved 2014-2019 New Avenue Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_12.txt.yml b/tests/cluecode/data/generated/copyright_12.txt.yml
index bb0ae899dc4..2646bba463d 100644
--- a/tests/cluecode/data/generated/copyright_12.txt.yml
+++ b/tests/cluecode/data/generated/copyright_12.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) - - PROAIM Medical
holders:
- PROAIM Medical
+allrights:
+ - Copyright (c) - All Rights Reserved - PROAIM Medical.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_14.txt.yml b/tests/cluecode/data/generated/copyright_14.txt.yml
index a5caca62d9f..ae09655a2b0 100644
--- a/tests/cluecode/data/generated/copyright_14.txt.yml
+++ b/tests/cluecode/data/generated/copyright_14.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) Lei Connection Inc.
holders:
- Lei Connection Inc.
+allrights:
+ - Copyright (c) All Rights Reserved, Lei Connection Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_15.txt.yml b/tests/cluecode/data/generated/copyright_15.txt.yml
index 696a4254b30..ae6e3983066 100644
--- a/tests/cluecode/data/generated/copyright_15.txt.yml
+++ b/tests/cluecode/data/generated/copyright_15.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) by Minds, Japan Council for Quality Health Care
holders:
- Minds, Japan Council for Quality Health Care
+allrights:
+ - Copyright (c) All rights reserved by Minds, Japan Council for Quality Health Care.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_16.txt.yml b/tests/cluecode/data/generated/copyright_16.txt.yml
index 82107215d3a..e30b60820ea 100644
--- a/tests/cluecode/data/generated/copyright_16.txt.yml
+++ b/tests/cluecode/data/generated/copyright_16.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) by Chinese Service Center for Scholarly Exchange
holders:
- Chinese Service Center for Scholarly Exchange
+allrights:
+ - Copyright (c) All Rights Reserved by Chinese Service Center for Scholarly Exchange
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_17.txt.yml b/tests/cluecode/data/generated/copyright_17.txt.yml
index 74f0b0a2bcf..d0f329432a6 100644
--- a/tests/cluecode/data/generated/copyright_17.txt.yml
+++ b/tests/cluecode/data/generated/copyright_17.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) Chungjungwon Iotacoffee.Com 2011
holders:
- Chungjungwon Iotacoffee.Com
+allrights:
+ - Copyright (c) All Rights Are Reserved. Chungjungwon Iotacoffee.Com 2011
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_18.txt.yml b/tests/cluecode/data/generated/copyright_18.txt.yml
index c037b3c83ad..b87fdbaedec 100644
--- a/tests/cluecode/data/generated/copyright_18.txt.yml
+++ b/tests/cluecode/data/generated/copyright_18.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- South Baylo University Copyright (c)
holders:
- South Baylo University
+allrights:
+ - South Baylo University Copyright (c) All Right Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_19.txt.yml b/tests/cluecode/data/generated/copyright_19.txt.yml
index 6babfb07c4d..a8227696aa4 100644
--- a/tests/cluecode/data/generated/copyright_19.txt.yml
+++ b/tests/cluecode/data/generated/copyright_19.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- http://www.enox.biz/ Copyright (c) by Zhu Shi Hui She
holders:
- Zhu Shi Hui She
+allrights:
+ - http://www.enox.biz/ Copyright (c) All rights Reserved by Zhu Shi Hui She
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_2.txt.yml b/tests/cluecode/data/generated/copyright_2.txt.yml
index 611a0c9b4ac..7ce8212c6db 100644
--- a/tests/cluecode/data/generated/copyright_2.txt.yml
+++ b/tests/cluecode/data/generated/copyright_2.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) SSC. Ltd.
holders:
- SSC. Ltd.
+allrights:
+ - Copyright (c) All right reserved SSC. Ltd.
diff --git a/tests/cluecode/data/generated/copyright_20.txt.yml b/tests/cluecode/data/generated/copyright_20.txt.yml
index fe0c90e2154..99bb778e498 100644
--- a/tests/cluecode/data/generated/copyright_20.txt.yml
+++ b/tests/cluecode/data/generated/copyright_20.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) by Zhu Shi Hui She Zhao Ri Zhu Zhai She
holders:
- Zhu Shi Hui She Zhao Ri Zhu Zhai She
+allrights:
+ - Copyright (c) All rights Reserved by Zhu Shi Hui She Zhao Ri Zhu Zhai She
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_21.txt.yml b/tests/cluecode/data/generated/copyright_21.txt.yml
index 97a90ab975d..e11dfaee320 100644
--- a/tests/cluecode/data/generated/copyright_21.txt.yml
+++ b/tests/cluecode/data/generated/copyright_21.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- copyright (c) localism,Inc.
holders:
- localism,Inc.
+allrights:
+ - copyright (c) All rights reserved localism,Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_23.txt.yml b/tests/cluecode/data/generated/copyright_23.txt.yml
index 2368d67b201..4460cf16b25 100644
--- a/tests/cluecode/data/generated/copyright_23.txt.yml
+++ b/tests/cluecode/data/generated/copyright_23.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Iotacoffee.Com 2011 Copyright (c)
holders:
- Iotacoffee.Com
+allrights:
+ - Iotacoffee.Com 2011 Copyright (c) All Rights Are Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_25.txt.yml b/tests/cluecode/data/generated/copyright_25.txt.yml
index f1c25da6cd4..d7aa9b26dc9 100644
--- a/tests/cluecode/data/generated/copyright_25.txt.yml
+++ b/tests/cluecode/data/generated/copyright_25.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) Hair Plus Trading Co., Inc.
holders:
- Hair Plus Trading Co., Inc.
+allrights:
+ - Copyright (c) All Rights Reserved. Hair Plus Trading Co., Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_26.txt.yml b/tests/cluecode/data/generated/copyright_26.txt.yml
index 3e314ca0a51..ea00368458b 100644
--- a/tests/cluecode/data/generated/copyright_26.txt.yml
+++ b/tests/cluecode/data/generated/copyright_26.txt.yml
@@ -7,3 +7,5 @@ copyrights:
holders:
- 2007-2020Ban Quan Suo
notes: we do not split year from Chinese name correctly.
+allrights:
+ - Copyright (c) All Rights Reserved 2007-2020Ban Quan Suo
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_29.txt.yml b/tests/cluecode/data/generated/copyright_29.txt.yml
index 91097ae45ec..2008f3a6ec6 100644
--- a/tests/cluecode/data/generated/copyright_29.txt.yml
+++ b/tests/cluecode/data/generated/copyright_29.txt.yml
@@ -11,3 +11,5 @@ expected_failures:
- copyrights
- authors
+allrights:
+ - Created by Samvel Khalatyan, May 28, 2013 Copyright 2013, All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_3.txt.yml b/tests/cluecode/data/generated/copyright_3.txt.yml
index f5b9d40db81..cd5a744602e 100644
--- a/tests/cluecode/data/generated/copyright_3.txt.yml
+++ b/tests/cluecode/data/generated/copyright_3.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Crown Copyright C
holders:
- Crown
+allrights:
+ - Crown Copyright C All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_31.txt.yml b/tests/cluecode/data/generated/copyright_31.txt.yml
index b1ce3ed3315..516277462ae 100644
--- a/tests/cluecode/data/generated/copyright_31.txt.yml
+++ b/tests/cluecode/data/generated/copyright_31.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- (c) Copyright CNRI
holders:
- CNRI
+allrights:
+ - (c) Copyright CNRI, All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_32.txt.yml b/tests/cluecode/data/generated/copyright_32.txt.yml
index 46ef38baf56..13123acc449 100644
--- a/tests/cluecode/data/generated/copyright_32.txt.yml
+++ b/tests/cluecode/data/generated/copyright_32.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright michimani
holders:
- michimani
+allrights:
+ - Copyright michimani All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_33.txt.yml b/tests/cluecode/data/generated/copyright_33.txt.yml
index 61b69b13034..c1ade425726 100644
--- a/tests/cluecode/data/generated/copyright_33.txt.yml
+++ b/tests/cluecode/data/generated/copyright_33.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright 2019
authors:
- Pine
+allrights:
+ - Copyright 2019, All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_34.txt.yml b/tests/cluecode/data/generated/copyright_34.txt.yml
index 38cc302fe8e..d5e4c1a3fbd 100644
--- a/tests/cluecode/data/generated/copyright_34.txt.yml
+++ b/tests/cluecode/data/generated/copyright_34.txt.yml
@@ -9,3 +9,5 @@ copyrights:
expected_failures:
- authors
+allrights:
+ - Copyright 2011 All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_35.txt.yml b/tests/cluecode/data/generated/copyright_35.txt.yml
index 2188884b4cf..98ca23457dc 100644
--- a/tests/cluecode/data/generated/copyright_35.txt.yml
+++ b/tests/cluecode/data/generated/copyright_35.txt.yml
@@ -9,3 +9,5 @@ copyrights:
expected_failures:
- authors
+allrights:
+ - Copyright 2010. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_36.txt.yml b/tests/cluecode/data/generated/copyright_36.txt.yml
index ee8ce0704ab..db2acd01fb7 100644
--- a/tests/cluecode/data/generated/copyright_36.txt.yml
+++ b/tests/cluecode/data/generated/copyright_36.txt.yml
@@ -4,3 +4,5 @@ what:
- authors
copyrights:
- Copyright 2016
+allrights:
+ - Copyright 2016, All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_38.txt.yml b/tests/cluecode/data/generated/copyright_38.txt.yml
index ee7b98212a7..11a4934fb12 100644
--- a/tests/cluecode/data/generated/copyright_38.txt.yml
+++ b/tests/cluecode/data/generated/copyright_38.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) All the Raige Dog Salon
holders:
- All the Raige Dog Salon
+allrights:
+ - Copyright (c) All the Raige Dog Salon. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_41.txt.yml b/tests/cluecode/data/generated/copyright_41.txt.yml
index 1002d7f2499..a6fab1a7a02 100644
--- a/tests/cluecode/data/generated/copyright_41.txt.yml
+++ b/tests/cluecode/data/generated/copyright_41.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) Joe Joyce and contributors, 2016-2019
holders:
- Joe Joyce and contributors
+allrights:
+ - Copyright (c) Joe Joyce and contributors, 2016-2019.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_45.txt.yml b/tests/cluecode/data/generated/copyright_45.txt.yml
index 4d6b41a2198..bfe05beeef1 100644
--- a/tests/cluecode/data/generated/copyright_45.txt.yml
+++ b/tests/cluecode/data/generated/copyright_45.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) 2013, OpenCV Foundation
holders:
- OpenCV Foundation
+allrights:
+ - Copyright (c) 2013, OpenCV Foundation, all rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_46.txt.yml b/tests/cluecode/data/generated/copyright_46.txt.yml
index fb7aeef7754..f59cbb089e2 100644
--- a/tests/cluecode/data/generated/copyright_46.txt.yml
+++ b/tests/cluecode/data/generated/copyright_46.txt.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- The Regents of the University of California (Regents)
- the respective contributors
+allrights:
+ - Copyright (c) 2014, 2015, The Regents of the University of California (Regents) All rights reserved.
+ - Copyright (c) 2014, 2015, the respective contributors All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_47.txt.yml b/tests/cluecode/data/generated/copyright_47.txt.yml
index de368553a54..b029d61ce37 100644
--- a/tests/cluecode/data/generated/copyright_47.txt.yml
+++ b/tests/cluecode/data/generated/copyright_47.txt.yml
@@ -4,3 +4,5 @@ what:
- authors
copyrights:
- Copyright 2011
+allrights:
+ - Copyright 2011. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_48.txt.yml b/tests/cluecode/data/generated/copyright_48.txt.yml
index f6dfc418e5b..f5fabfe5ec7 100644
--- a/tests/cluecode/data/generated/copyright_48.txt.yml
+++ b/tests/cluecode/data/generated/copyright_48.txt.yml
@@ -4,3 +4,5 @@ what:
- authors
copyrights:
- Copyright 2012
+allrights:
+ - Copyright 2012. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_51.txt.yml b/tests/cluecode/data/generated/copyright_51.txt.yml
index f6dfc418e5b..f5fabfe5ec7 100644
--- a/tests/cluecode/data/generated/copyright_51.txt.yml
+++ b/tests/cluecode/data/generated/copyright_51.txt.yml
@@ -4,3 +4,5 @@ what:
- authors
copyrights:
- Copyright 2012
+allrights:
+ - Copyright 2012. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_52.txt.yml b/tests/cluecode/data/generated/copyright_52.txt.yml
index 7e4d25b1603..205c969c38b 100644
--- a/tests/cluecode/data/generated/copyright_52.txt.yml
+++ b/tests/cluecode/data/generated/copyright_52.txt.yml
@@ -8,3 +8,6 @@ copyrights:
holders:
- The Regents of the University of California (Regents)
- the respective contributors
+allrights:
+ - Copyright (c) 2014, The Regents of the University of California (Regents) All rights reserved.
+ - Copyright (c) 2014, the respective contributors All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_6.txt.yml b/tests/cluecode/data/generated/copyright_6.txt.yml
index cc43354f00e..5da7290bc62 100644
--- a/tests/cluecode/data/generated/copyright_6.txt.yml
+++ b/tests/cluecode/data/generated/copyright_6.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- copyright (c) istyle Inc.
holders:
- istyle Inc.
+allrights:
+ - copyright (c) All rights reserved istyle Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_7.txt.yml b/tests/cluecode/data/generated/copyright_7.txt.yml
index 00016d26d11..64aca28f949 100644
--- a/tests/cluecode/data/generated/copyright_7.txt.yml
+++ b/tests/cluecode/data/generated/copyright_7.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- Copyright (c) by the District Export Council of Georgia
holders:
- the District Export Council of Georgia
+allrights:
+ - Copyright (c) All Rights Reserved by the District Export Council of Georgia.
\ No newline at end of file
diff --git a/tests/cluecode/data/generated/copyright_9.txt.yml b/tests/cluecode/data/generated/copyright_9.txt.yml
index a928bbf3623..d5553d85de9 100644
--- a/tests/cluecode/data/generated/copyright_9.txt.yml
+++ b/tests/cluecode/data/generated/copyright_9.txt.yml
@@ -6,3 +6,5 @@ copyrights:
- COPYRIGHT (c) All About, Inc.
holders:
- All About, Inc.
+allrights:
+ - COPYRIGHT (c) All About, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml b/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml
index d9073e1f186..41b885b3592 100644
--- a/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml
+++ b/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin
count: 1
+allrights:
+ - Copyright (c) 2011 Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_acme_c-c.c.yml b/tests/cluecode/data/holders/holder_acme_c-c.c.yml
index af8c0f095f8..17a4ddfd82e 100644
--- a/tests/cluecode/data/holders/holder_acme_c-c.c.yml
+++ b/tests/cluecode/data/holders/holder_acme_c-c.c.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: ACME, Inc.
count: 1
+allrights:
+ - Copyright (c) 2000 ACME, Inc., All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml b/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml
index 0786f3d679d..1016d69bf1a 100644
--- a/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml
+++ b/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml
@@ -9,3 +9,6 @@ holders_summary:
count: 1
- value: Jon Doe
count: 1
+allrights:
+ - Copyright 1999 Cornell University. All rights reserved.
+ - Copyright 2000 Jon Doe. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_atheros_py-py.py.yml b/tests/cluecode/data/holders/holder_atheros_py-py.py.yml
index 02387c9697c..e007ee082e9 100644
--- a/tests/cluecode/data/holders/holder_atheros_py-py.py.yml
+++ b/tests/cluecode/data/holders/holder_atheros_py-py.py.yml
@@ -10,3 +10,7 @@ holders_summary:
count: 2
- value: Intel Corporation
count: 1
+allrights:
+ - Copyright (c) 2000 Atheros Communications, Inc., All Rights Reserved
+ - Copyright (c) 2001 Atheros Communications, Inc., All Rights Reserved
+ - Copyright (c) 1994-1997 by Intel Corporation.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_audio_c-c.c.yml b/tests/cluecode/data/holders/holder_audio_c-c.c.yml
index f52dd4cf51d..6b8bb28c16f 100644
--- a/tests/cluecode/data/holders/holder_audio_c-c.c.yml
+++ b/tests/cluecode/data/holders/holder_audio_c-c.c.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke
count: 1
+allrights:
+ - copyright (c) 1995, AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_basic-copy_c.c.yml b/tests/cluecode/data/holders/holder_basic-copy_c.c.yml
index e08b4db2d19..e47f1d5571e 100644
--- a/tests/cluecode/data/holders/holder_basic-copy_c.c.yml
+++ b/tests/cluecode/data/holders/holder_basic-copy_c.c.yml
@@ -19,3 +19,18 @@ holders:
holders_summary:
- value: Markus Franz Xaver Johannes Oberhumer
count: 14
+allrights:
+ - Copyright (c) 2008 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2007 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2006 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2005 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2004 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2003 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2002 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2001 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2000 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1999 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1998 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1997 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer All Rights Reserved.
+ - (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Markus Franz Xaver Johannes Oberhumer http://www.oberhumer.com
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml b/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml
index 9b03b2af247..d3b9f6bbd78 100644
--- a/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml
+++ b/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1990 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml b/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml
index f6475019199..067b921dfe7 100644
--- a/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml
+++ b/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Hans-Jurgen Koch
count: 1
+allrights:
+ - Copyright (c) 2006 by Hans-Jurgen Koch.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml b/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml
index 64aac13b415..35485cdf7da 100644
--- a/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml
+++ b/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml
@@ -9,3 +9,6 @@ holders_summary:
count: 1
- value: Jouni Malinen and contributors
count: 1
+allrights:
+ - Copyright (c) 2004-2005, Jouni Malinen
+ - Copyright (c) 2004-2005, Jouni Malinen and contributors
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml b/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml
index 5b131903d0e..169a431bcb5 100644
--- a/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml
+++ b/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml
@@ -19,3 +19,10 @@ holders_summary:
count: 1
- value: ibm.com
count: 1
+allrights:
+ - Copyright (c) ibm technologies 2008
+ - Copyright (c) IBM Corporation 2008
+ - Copyright (c) Ibm Corp. 2008
+ - Copyright (c) ibm.com 2008
+ - Copyright (c) IBM technology 2008
+ - Copyright (c) IBM company 2008
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml b/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml
index 18ab0afaf69..751381dc4e1 100644
--- a/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml
+++ b/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Jean Tourrilhes
count: 1
+allrights:
+ - Copyright (c) 2004 Jean Tourrilhes
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_in_c-c.c.yml b/tests/cluecode/data/holders/holder_in_c-c.c.yml
index f5090a98c0a..e600fa1d034 100644
--- a/tests/cluecode/data/holders/holder_in_c-c.c.yml
+++ b/tests/cluecode/data/holders/holder_in_c-c.c.yml
@@ -15,3 +15,14 @@ holders:
holders_summary:
- value: Markus Franz Xaver Johannes Oberhumer
count: 10
+allrights:
+ - Copyright (c) 2005 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2004 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2003 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2002 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2001 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2000 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1999 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1998 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1997 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml b/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml
index 42b41df3edf..c23df44aa99 100644
--- a/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml
+++ b/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml b/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml
index 42b41df3edf..c23df44aa99 100644
--- a/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml
+++ b/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml b/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml
index 9ecae8374c5..f8be9d8448d 100644
--- a/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml
+++ b/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml
@@ -7,3 +7,6 @@ holders:
holders_summary:
- value: Free Software Foundation
count: 2
+allrights:
+ - Copyright (c) 1989, 1991 Free Software Foundation, Inc.
+ - copyrighted by the Free Software Foundation
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_in_readme-README.yml b/tests/cluecode/data/holders/holder_in_readme-README.yml
index 5c10746370b..be902b8cf85 100644
--- a/tests/cluecode/data/holders/holder_in_readme-README.yml
+++ b/tests/cluecode/data/holders/holder_in_readme-README.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Jouni Malinen and contributors
count: 1
+allrights:
+ - Copyright (c) 2002-2006, Jouni Malinen and contributors All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_in_text_.txt.yml b/tests/cluecode/data/holders/holder_in_text_.txt.yml
index f5090a98c0a..e600fa1d034 100644
--- a/tests/cluecode/data/holders/holder_in_text_.txt.yml
+++ b/tests/cluecode/data/holders/holder_in_text_.txt.yml
@@ -15,3 +15,14 @@ holders:
holders_summary:
- value: Markus Franz Xaver Johannes Oberhumer
count: 10
+allrights:
+ - Copyright (c) 2005 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2004 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2003 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2002 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2001 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 2000 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1999 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1998 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1997 Markus Franz Xaver Johannes Oberhumer
+ - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml b/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml
index 42b41df3edf..c23df44aa99 100644
--- a/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml
+++ b/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Sam Leffler, Errno Consulting, Atheros Communications, Inc.
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml b/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml
index ffc375647bf..d2ec7c202b8 100644
--- a/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml
+++ b/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml
@@ -9,3 +9,6 @@ holders_summary:
count: 1
- value: Yahoo! Inc.
count: 1
+allrights:
+ - Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+ - Copyright 2001 Robert Penner All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml b/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml
index 7d0e4b8a9f0..683bd419eef 100644
--- a/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml
+++ b/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Ext JS, LLC
count: 1
+allrights:
+ - Copyright (c) 2006-2009 Ext JS, LLC licensing@extjs.com http://www.extjs.com/license
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml b/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml
index ee3eb8780be..c9086c7c572 100644
--- a/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml
+++ b/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Sun Microsystems
count: 1
+allrights:
+ - Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml b/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml
index 2b6dfdf6940..a713423bd8d 100644
--- a/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml
+++ b/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS.
count: 1
+allrights:
+ - COPYRIGHT (c) 1990-1994 BY GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS. ALL RIGHTS RESERVED
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml b/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml
index 4e1ea58989b..cc15cd77e8d 100644
--- a/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml
+++ b/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Nokia Mobile Phones
count: 1
+allrights:
+ - Copyright (c) 2002, Nokia Mobile Phones. All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_sample_java-java.java.yml b/tests/cluecode/data/holders/holder_sample_java-java.java.yml
index b4624847799..54c2a604467 100644
--- a/tests/cluecode/data/holders/holder_sample_java-java.java.yml
+++ b/tests/cluecode/data/holders/holder_sample_java-java.java.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Sample ABC Inc.
count: 1
+allrights:
+ - Copyright (c) 2000-2007, Sample ABC Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_simple-copy_c.c.yml b/tests/cluecode/data/holders/holder_simple-copy_c.c.yml
index 4da86d3504b..856a17834d2 100644
--- a/tests/cluecode/data/holders/holder_simple-copy_c.c.yml
+++ b/tests/cluecode/data/holders/holder_simple-copy_c.c.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Markus Franz Xaver Johannes Oberhumer
count: 1
+allrights:
+ - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml b/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml
index 5565ce86850..5866f6fff5c 100644
--- a/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml
+++ b/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Carnegie Mellon University
count: 1
+allrights:
+ - Copyright 1989, 1991, 1992 by Carnegie Mellon University
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml b/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml
index 67d7fb6b879..8e9fa860947 100644
--- a/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml
+++ b/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml
@@ -15,3 +15,7 @@ holders_summary:
count: 2
- value: Foobar Company (PC) Property of Foobar Company
count: 1
+allrights:
+ - Foobar Company, All Rights Reserved, (c) 2005
+ - Copyright Foobar Company (PC) Property of Foobar Company
+ - Copyright (2003) Foobar Company All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml b/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml
index c1b692265c7..20065c5f97a 100644
--- a/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml
+++ b/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Rickard E. Faith
count: 1
+allrights:
+ - Copyright 2003, 2004 Rickard E. Faith (faith@dict.org)
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_super_c-c.c.yml b/tests/cluecode/data/holders/holder_super_c-c.c.yml
index 64355d873a1..faae0eaedcf 100644
--- a/tests/cluecode/data/holders/holder_super_c-c.c.yml
+++ b/tests/cluecode/data/holders/holder_super_c-c.c.yml
@@ -9,3 +9,6 @@ holders_summary:
count: 1
- value: Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A.
count: 1
+allrights:
+ - Copyright (c) \$LastChangedDate\$ Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A. ALL RIGHTS RESERVED
+ - Copyright (c) 2004 Benjamin Herrenschmuidt (benh@kernel.crashing.org), IBM Corp.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml b/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
index e82cf9043fe..16b701e6a0e 100644
--- a/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
+++ b/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
count: 1
+allrights:
+ - Copyright 1997, 1998 by Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml b/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml
index c62bfc94a61..dca0d8a2b3f 100644
--- a/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml
+++ b/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Frank Strauss
count: 1
+allrights:
+ - Copyright (c) 2000 Frank Strauss
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml b/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml
index 014d3bc1587..8928418fe27 100644
--- a/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml
+++ b/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml
@@ -9,3 +9,6 @@ holders_summary:
count: 1
- value: TGV, Incorporated
count: 1
+allrights:
+ - Copyright 1988, 1989 by Carnegie Mellon University
+ - Copyright 1989 TGV, Incorporated
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml b/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml
index 128bcbf1473..b50f7b39c73 100644
--- a/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml
+++ b/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: X Consortium
count: 1
+allrights:
+ - Copyright (c) 1994 X Consortium
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/holder_young_c-c.c.yml b/tests/cluecode/data/holders/holder_young_c-c.c.yml
index d7dd8fef68c..e8bd0d1230b 100644
--- a/tests/cluecode/data/holders/holder_young_c-c.c.yml
+++ b/tests/cluecode/data/holders/holder_young_c-c.c.yml
@@ -9,3 +9,6 @@ holders_summary:
count: 1
- value: Tim Hudson
count: 1
+allrights:
+ - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved.
+ - holder is Tim Hudson (tjh@mincom.oz.au).
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml b/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml
index 904db16f7cd..f434dae827e 100644
--- a/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml
+++ b/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: IBM, Corp.
count: 1
+allrights:
+ - Copyright IBM, Corp. 2007
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/man_page_holders.txt.yml b/tests/cluecode/data/holders/man_page_holders.txt.yml
index b59ac8dce33..48a51da5621 100644
--- a/tests/cluecode/data/holders/man_page_holders.txt.yml
+++ b/tests/cluecode/data/holders/man_page_holders.txt.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Free Software Foundation, Inc., and others
count: 1
+allrights:
+ - Copyright 2001-2017 Free Software Foundation, Inc., and others.
\ No newline at end of file
diff --git a/tests/cluecode/data/holders/oracle.txt.yml b/tests/cluecode/data/holders/oracle.txt.yml
index c4ba2aef8e5..176f84b705c 100644
--- a/tests/cluecode/data/holders/oracle.txt.yml
+++ b/tests/cluecode/data/holders/oracle.txt.yml
@@ -6,3 +6,5 @@ holders:
holders_summary:
- value: Oracle and/or its affiliates
count: 1
+allrights:
+ - Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml b/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml
index fd28a945063..9c653dcd8ee 100644
--- a/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml
+++ b/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2010 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml b/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml
index 98e267d0fee..adfc8dd4fe8 100644
--- a/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml
+++ b/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2011 The Android Open Source Project.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml b/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml
index d801e23a27d..5408a5fef0d 100644
--- a/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml
+++ b/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Terence Parr
count: 1
+allrights:
+ - Copyright (c) 2005-2009 Terence Parr All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-harmony/NOTICE.yml b/tests/cluecode/data/ics/apache-harmony/NOTICE.yml
index 1b580812031..b09d8c4b1b6 100644
--- a/tests/cluecode/data/ics/apache-harmony/NOTICE.yml
+++ b/tests/cluecode/data/ics/apache-harmony/NOTICE.yml
@@ -15,3 +15,8 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 4
+allrights:
+ - Copyright 2001-2004 The Apache Software Foundation.
+ - Copyright 2001-2006 The Apache Software Foundation.
+ - Copyright 2003-2004 The Apache Software Foundation.
+ - Copyright 2004 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml
index 1c7a1982ff0..c85ef557534 100644
--- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml
+++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2001-2004 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml
index 6179e209d13..9fe001d9f92 100644
--- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml
+++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2003-2004 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml
index b66499dfdca..469dbeec6b7 100644
--- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml
+++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2004 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml
index f72e661ae29..7e7ac327b8c 100644
--- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml
+++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2001-2006 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml
index 1c7a1982ff0..c85ef557534 100644
--- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml
+++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Apache Software Foundation
count: 1
+allrights:
+ - Copyright 2001-2004 The Apache Software Foundation.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml b/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml
index fd28a945063..9c653dcd8ee 100644
--- a/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml
+++ b/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2010 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml b/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml
index 34b038d55e0..17464b8bc98 100644
--- a/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml
+++ b/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml
@@ -13,3 +13,5 @@ holders_summary:
de Recherche en Informatique et en Automatique, Keio University)
count: 1
notes: the results are not great, but the French institute is a rare case
+allrights:
+ - Copyright (c) 2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University).
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/apache-xml/NOTICE.yml b/tests/cluecode/data/ics/apache-xml/NOTICE.yml
index 736081714e1..75bc47c5248 100644
--- a/tests/cluecode/data/ics/apache-xml/NOTICE.yml
+++ b/tests/cluecode/data/ics/apache-xml/NOTICE.yml
@@ -43,3 +43,17 @@ holders_summary:
count: 1
- value: iClick, Inc., software
count: 1
+allrights:
+ - Copyright 1999-2006 The Apache Software Foundation
+ - Copyright 1999-2006 The Apache Software Foundation
+ - copyright (c) 1999-2002, Lotus Development Corporation., http://www.lotus.com.
+ - copyright (c) 2001-2002, Sun Microsystems., http://www.sun.com.
+ - copyright (c) 2003, IBM Corporation., http://www.ibm.com.
+ - Copyright 1999-2006 The Apache Software Foundation
+ - copyright (c) 1999, IBM Corporation., http://www.ibm.com.
+ - copyright (c) 1999, Sun Microsystems., http://www.sun.com.
+ - at iClick, Inc., software copyright (c) 1999.
+ - Copyright 2001-2003,2006 The Apache Software Foundation.
+ - copyright (c) 1999, IBM Corporation., http://www.ibm.com.
+ - copyright (c) 1999, Sun Microsystems., http://www.sun.com.
+ - copyright (c) 2000 World Wide Web Consortium, http://www.w3.org
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/astl-include/algorithm.yml b/tests/cluecode/data/ics/astl-include/algorithm.yml
index d206eb51980..2c3b9c44a0f 100644
--- a/tests/cluecode/data/ics/astl-include/algorithm.yml
+++ b/tests/cluecode/data/ics/astl-include/algorithm.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2009 The Android Open Source Project All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/astl-include/basic_ios.h.yml b/tests/cluecode/data/ics/astl-include/basic_ios.h.yml
index 2aeb728ed79..ea5f3c80d0a 100644
--- a/tests/cluecode/data/ics/astl-include/basic_ios.h.yml
+++ b/tests/cluecode/data/ics/astl-include/basic_ios.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2010 The Android Open Source Project All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/astl-include/streambuf.yml b/tests/cluecode/data/ics/astl-include/streambuf.yml
index 2aeb728ed79..ea5f3c80d0a 100644
--- a/tests/cluecode/data/ics/astl-include/streambuf.yml
+++ b/tests/cluecode/data/ics/astl-include/streambuf.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2010 The Android Open Source Project All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/astl-include/string.yml b/tests/cluecode/data/ics/astl-include/string.yml
index d206eb51980..2c3b9c44a0f 100644
--- a/tests/cluecode/data/ics/astl-include/string.yml
+++ b/tests/cluecode/data/ics/astl-include/string.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2009 The Android Open Source Project All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/astl-src/ostream.cpp.yml b/tests/cluecode/data/ics/astl-src/ostream.cpp.yml
index 2aeb728ed79..ea5f3c80d0a 100644
--- a/tests/cluecode/data/ics/astl-src/ostream.cpp.yml
+++ b/tests/cluecode/data/ics/astl-src/ostream.cpp.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2010 The Android Open Source Project All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml b/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml
index d206eb51980..2c3b9c44a0f 100644
--- a/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml
+++ b/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2009 The Android Open Source Project All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/astl/NOTICE.yml b/tests/cluecode/data/ics/astl/NOTICE.yml
index d206eb51980..2c3b9c44a0f 100644
--- a/tests/cluecode/data/ics/astl/NOTICE.yml
+++ b/tests/cluecode/data/ics/astl/NOTICE.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Android Open Source Project
count: 1
+allrights:
+ - Copyright (c) 2009 The Android Open Source Project All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/blktrace/NOTICE.yml b/tests/cluecode/data/ics/blktrace/NOTICE.yml
index b66d6a9addb..f6e584e1227 100644
--- a/tests/cluecode/data/ics/blktrace/NOTICE.yml
+++ b/tests/cluecode/data/ics/blktrace/NOTICE.yml
@@ -43,3 +43,15 @@ holders_summary:
count: 1
- value: Silicon Graphics, Inc.
count: 1
+allrights:
+ - Copyright (c) 1997, 2002, 2005 Free Software Foundation, Inc.
+ - Copyright (c) 2005 Jens Axboe
+ - Copyright (c) 2006 Alan D. Brunelle
+ - Copyright (c) 2006 Jens Axboe
+ - Copyright (c) 2006. Bob Jenkins (bob_jenkins@burtleburtle.net)
+ - Copyright (c) 2009 Jozsef Kadlecsik (kadlec@blackhole.kfki.hu)
+ - Copyright IBM Corp. 2008
+ - Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
+ - Copyright (c) 2005 Silicon Graphics, Inc.
+ - Copyright (c) 1989, 1991 Free Software Foundation, Inc.
+ - copyrighted by the Free Software Foundation
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/blktrace/btrace.spec.yml b/tests/cluecode/data/ics/blktrace/btrace.spec.yml
index 77675b89ea0..be6e109455f 100644
--- a/tests/cluecode/data/ics/blktrace/btrace.spec.yml
+++ b/tests/cluecode/data/ics/blktrace/btrace.spec.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: SUSE LINUX Products GmbH, Nuernberg, Germany
count: 1
+allrights:
+ - Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/blktrace/btrace.yml b/tests/cluecode/data/ics/blktrace/btrace.yml
index d7acae7c68f..59640a18f98 100644
--- a/tests/cluecode/data/ics/blktrace/btrace.yml
+++ b/tests/cluecode/data/ics/blktrace/btrace.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Silicon Graphics, Inc.
count: 1
+allrights:
+ - Copyright (c) 2005 Silicon Graphics, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml
index ce65a68270d..1d450de1613 100644
--- a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml
+++ b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: GSyC/LibreSoft, Universidad Rey Juan Carlos
count: 1
+allrights:
+ - Copyright (c) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml
index fe353fa8150..2933493cffb 100644
--- a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml
+++ b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Signove
count: 1
+allrights:
+ - Copyright (c) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos.
+ - Copyright (c) 2010 Signove
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml b/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml
index 7500697a0dd..caa8ee14d07 100644
--- a/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml
+++ b/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Marcel Holtmann
count: 1
+allrights:
+ - Copyright (c) 2005-2010 Marcel Holtmann
+ - Copyright (c) 2010, Code Aurora Forum. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml b/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml
index d5d87093386..9c0719df1d6 100644
--- a/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml
+++ b/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: University of Cambridge
count: 1
+allrights:
+ - Copyright (c) 1997-2006 University of Cambridge.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml b/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml
index 61e170869b7..3997a741980 100644
--- a/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml
+++ b/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Sebastian Droge
count: 1
+allrights:
+ - Copyright (c) 2006-2007 Red Hat, Inc.
+ - Copyright (c) 2007 Sebastian Droge.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml
index ccdfaa91a24..ceeeb6afa67 100644
--- a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml
+++ b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sun Microsystems
count: 1
+allrights:
+ - Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml
index 38a47ddf643..beefe775226 100644
--- a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml
+++ b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: Sun Microsystems
count: 1
+allrights:
+ - Copyright (c) 2006-2007 Red Hat, Inc.
+ - Copyright (c) 2007 Sebastian Droge.
+ - Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml b/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml
index 32824d8aae1..a553eff4641 100644
--- a/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml
+++ b/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml
@@ -3,9 +3,11 @@ what:
- holders
- holders_summary
copyrights:
- - Copyright (c) 1998-2004 Tim Janik and Red Hat, Inc
+ - Copyright (c) 1998-2004 Tim Janik and Red Hat, Inc.
holders:
- - Tim Janik and Red Hat, Inc
+ - Tim Janik and Red Hat, Inc.
holders_summary:
- - value: Tim Janik and Red Hat, Inc
+ - value: Tim Janik and Red Hat, Inc.
count: 1
+allrights:
+ - Copyright (c) 1998-2004 Tim Janik and Red Hat, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml b/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml
index 8411f9eb37c..429649b9ff3 100644
--- a/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml
+++ b/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Sebastian Wilhelmi. Modified by the GLib Team and others
count: 1
+allrights:
+ - Copyright (c) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald.
+ - Copyright (c) 1998 Sebastian Wilhelmi. Modified by the GLib Team and others
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml b/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml
index 9105c8eb458..d13025a8319 100644
--- a/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml
+++ b/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml
@@ -10,3 +10,5 @@ holders:
holders_summary:
- value: Free Software Foundation, Inc. Ulrich Drepper
count: 1
+allrights:
+ - Copyright (c) 1995 Free Software Foundation, Inc. Ulrich Drepper , 1995.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml b/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml
index 7d0b67b32bc..a233dcdfc28 100644
--- a/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml
+++ b/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Colin Percival
count: 1
+allrights:
+ - Copyright 2003-2005 Colin Percival All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml b/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml
index 7d0b67b32bc..a233dcdfc28 100644
--- a/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml
+++ b/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Colin Percival
count: 1
+allrights:
+ - Copyright 2003-2005 Colin Percival All rights reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bzip2/LICENSE.yml b/tests/cluecode/data/ics/bzip2/LICENSE.yml
index 89be1dc252e..13d77be49ba 100644
--- a/tests/cluecode/data/ics/bzip2/LICENSE.yml
+++ b/tests/cluecode/data/ics/bzip2/LICENSE.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Julian R Seward
count: 1
+allrights:
+ - copyright (c) 1996-2010 Julian R Seward. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bzip2/bzip2.c.yml b/tests/cluecode/data/ics/bzip2/bzip2.c.yml
index bd9261570ce..36d4a6a5184 100644
--- a/tests/cluecode/data/ics/bzip2/bzip2.c.yml
+++ b/tests/cluecode/data/ics/bzip2/bzip2.c.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: Julian Seward
count: 2
+allrights:
+ - Copyright (c) 1996-2010 Julian Seward
+ - Copyright (c) 1996-2010 by Julian Seward.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/bzip2/manual.html.yml b/tests/cluecode/data/ics/bzip2/manual.html.yml
index 712a0425bbe..45572d38d11 100644
--- a/tests/cluecode/data/ics/bzip2/manual.html.yml
+++ b/tests/cluecode/data/ics/bzip2/manual.html.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: Julian Seward
count: 2
+allrights:
+ - Copyright (c) 1996-2010 Julian Seward
+ - copyright (c) 1996-2010 Julian Seward. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml b/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml
index 516f6c00973..e0322e9c79c 100644
--- a/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml
+++ b/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml b/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml
+++ b/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml b/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml
index 2083c9c295d..be94f7bd147 100644
--- a/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml
+++ b/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml b/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml
index 2083c9c295d..be94f7bd147 100644
--- a/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml
+++ b/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml b/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml
index 3a5bfd5373d..178edd83176 100644
--- a/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml
+++ b/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
+ - Copyright (c) 1995-2006 International Business Machines Corporation and others
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml
index a7afdf39528..027b887a212 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Lucent Technologies
count: 1
+allrights:
+ - Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml
index 9f0addd20ad..65569b035ed 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2011 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml
index a7afdf39528..027b887a212 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Lucent Technologies
count: 1
+allrights:
+ - Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml
index c2b4b46b525..aa95008c770 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Lucent Technologies
count: 1
+allrights:
+ - Copyright (c) 1991, 1996 by Lucent Technologies.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml
index 596ee0773f1..947113be51e 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright (c) 2008-2009, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml
index 516f6c00973..e0322e9c79c 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml
index 5e0608b476b..d80fddff5bf 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: International Business Machines Corporation and others
count: 1
+allrights:
+ - Copyright (c) 1999-2006, International Business Machines Corporation and others. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml
index 74aceccde00..9fc76386faf 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: International Business Machines Corporation and others
count: 1
+allrights:
+ - Copyright (c) 1999-2004, International Business Machines Corporation and others. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml b/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml
index de8c619a632..096f6a6a0c0 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 1998-2000 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml
index 593fbdfb680..219cf81d8ad 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2008, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml
index 848ac9577f9..2da297e2e02 100644
--- a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml
+++ b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2011 Google Inc
+ - Portions created by the Initial Developer are Copyright (c) 1998-2000 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml
index 2ba06afc999..93850466127 100644
--- a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml
+++ b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml
index 2ba06afc999..93850466127 100644
--- a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml
+++ b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/base.gyp.yml b/tests/cluecode/data/ics/chromium-base/base.gyp.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-base/base.gyp.yml
+++ b/tests/cluecode/data/ics/chromium-base/base.gyp.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml b/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml
index 35ad75943db..06008f26251 100644
--- a/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml
+++ b/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml b/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml
+++ b/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml b/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml
+++ b/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml b/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml
index 4a1a606cf03..3b234109d42 100644
--- a/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml
+++ b/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2008 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/md5.cc.yml b/tests/cluecode/data/ics/chromium-base/md5.cc.yml
index b6c8273cbc9..5bad7bb9b6c 100644
--- a/tests/cluecode/data/ics/chromium-base/md5.cc.yml
+++ b/tests/cluecode/data/ics/chromium-base/md5.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2006 Google Inc. All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml b/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml
index 516f6c00973..e0322e9c79c 100644
--- a/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml
+++ b/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml b/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml
index 4a1a606cf03..3b234109d42 100644
--- a/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml
+++ b/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2008 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml b/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml
index 4a1a606cf03..3b234109d42 100644
--- a/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml
+++ b/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2008 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml b/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml
index 83d4e271598..de3fb6017c3 100644
--- a/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml
+++ b/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml
@@ -19,3 +19,9 @@ holders_summary:
count: 4
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ - Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+ - Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+ - Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+ - Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml b/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml
+++ b/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml
index 2083c9c295d..be94f7bd147 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml b/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml
index 2083c9c295d..be94f7bd147 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml
index d94be1c7000..34604043d32 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1998-1999 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml
index 1cda1a98014..817984931c7 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml
index df80ef9e717..139863e0ca3 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml
index 6413aad5c59..1f426eec336 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2008 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml
index 4e3f73342a6..a8dfacb58af 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 2006 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml
index 8a20feeb922..9803cc45805 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml
index c611f6a41e4..edbf8517809 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml
index be6529516ac..47685a0e64c 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml b/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml
index 2083c9c295d..be94f7bd147 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml b/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml
index 2a6b217c788..7e201d38436 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ - Copyright (c) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
+ - (c) 2006, 2007 Graham Dennis (graham.dennis@gmail.com)
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml
index 4ff54e89242..71a4e150a05 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml
@@ -358,3 +358,107 @@ holders_summary:
count: 1
- value: Xiph.org Foundation
count: 1
+allrights:
+ - Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
+ - Copyright (c) 2008-2009, Google Inc. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1998-2000 the Initial Developer. All Rights Reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved.
+ - (c) Copyright IBM Corporation. 2006, 2006. All Rights Reserved.
+ - Copyright (c) 2006, Google Inc. All rights reserved.
+ - Copyright (c) 2000-2008 Julian Seward. All rights reserved.
+ - Copyright (c) 2007 Red Hat, inc
+ - Copyright 2003-2005 Colin Percival All rights reserved
+ - Portions created by the Initial Developer are Copyright (c) 2000 the Initial Developer. All Rights Reserved.
+ - Copyright 1993 by OpenVision Technologies, Inc.
+ - Copyright 2007 Google Inc.
+ - Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Alexander Kellett, Alexey Proskuryakov, Alex Mathews, Allan Sandfeld Jensen, Alp Toker, Anders Carlsson, Andrew Wellington, Antti
+ - Copyright (c) 1991 Free Software Foundation, Inc.
+ - copyrighted by the Free Software Foundation
+ - Copyright (c) 1991, 1999 Free Software Foundation, Inc.
+ - copyrighted by the Free Software Foundation
+ - Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
+ - Copyright (c) 2009 Apple Inc. All Rights Reserved.
+ - Portions Copyright (c) 1999-2007 Apple Inc. All Rights Reserved.
+ - copyright (c) 1996-2010 Julian R Seward. All rights reserved.
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Copyright (c) 1998-1999 Netscape Communications Corporation. All Rights Reserved.
+ - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
+ - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers.
+ - Copyright (c) 2008 The Khronos Group Inc.
+ - Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002 by Remco Treffkorn, and others
+ - Copyright (c) 2005 by Eric S. Raymond.
+ - Copyright (c) 2007, 2010 Linux Foundation
+ - Copyright (c) 2006 IBM Corporation
+ - Copyright (c) 2000, 2006 Sun Microsystems, Inc. All rights reserved.
+ - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved
+ - Copyright (c) 1995-2009 International Business Machines Corporation and others
+ - Copyrighy (c) 1999 TaBE Project.
+ - Copyright (c) 1999 Pai-Hsiang Hsiao. All rights reserved.
+ - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica. All rights reserved.
+ - Copyright 1996 Chih-Hao Tsai @ Beckman Institute, University of Illinois c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4
+ - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology. All Rights Reserved.
+ - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved.
+ - Copyright (c) 2006-2008 Jason Evans jasone@FreeBSD.org
+ - Copyright (c) International Business Machines Corp., 2002,2007
+ - Copyright 2000-2007 Niels Provos provos@citi.umich.edu
+ - Copyright 2007-2009 Niels Provos and Nick Mathewson
+ - Copyright (c) 2004-2005, Google Inc. All rights reserved.
+ - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved
+ - copyright holder, Aladdin Enterprises of Menlo Park
+ - copyright by the Free Software Foundation
+ - copyright by M.I.T.
+ - Copyright property of CompuServe Incorporated.
+ - Copyright (c) 1998-2005 Julian Smart, Robert Roebling
+ - Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson
+ - Copyright (c) 2000-2002 Glenn Randers-Pehrson
+ - Copyright (c) 1998, 1999 Glenn Randers-Pehrson
+ - Copyright (c) 1996, 1997 Andreas Dilger
+ - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
+ - Copyright (c) 2001-2006 Cisco Systems, Inc. All rights reserved.
+ - Copyright (c) 2010, Google Inc. All rights reserved.
+ - Copyright (c) 2010, Google Inc. All rights reserved.
+ - Copyright (c) 1998-2003 Daniel Veillard. All Rights Reserved.
+ - Copyright (c) 2001-2002 Daniel Veillard. All Rights Reserved.
+ - Copyright (c) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All Rights Reserved.
+ - Copyright (c) 1991 Free Software Foundation, Inc.
+ - copyrighted by the Free Software Foundation
+ - Copyright (c) 2005, 2006 Nick Galbreath - nickg at modp dot com All rights reserved.
+ - Copyright 2008 MolokoCacao All rights reserved
+ - Copyright (c) 2004-2009 Sergey Lyubka
+ - Portions Copyright (c) 2009 Gilbert Wellisch
+ - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1998 the Initial Developer. All Rights Reserved.
+ - Copyright (c) 2004-2009 by Mulle Kybernetik. All rights reserved.
+ - Copyright (c) 2008 The Khronos Group Inc.
+ - Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved.
+ - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved.
+ - holder is Tim Hudson (tjh@cryptsoft.com).
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
+ - Copyright 2007 Google Inc.
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Copyright 2008, Google Inc. All rights reserved.
+ - Copyright (c) 2007 Giampaolo Rodola g.rodola@gmail.com
+ - Copyright 2009, Google Inc. All rights reserved.
+ - Copyright (c) 2009 Mozilla Corporation
+ - Copyright (c) 1998-2007 Marti Maria
+ - Copyright (c) 1994-1996 SunSoft, Inc.
+ - Copyright 2009 Google Inc.
+ - Copyright (c) 2006 Bob Ippolito
+ - Copyright 2002-2008 Xiph.org Foundation
+ - Copyright 2002-2008 Jean-Marc Valin
+ - Copyright 2005-2007 Analog Devices Inc.
+ - Copyright 2005-2008 Commonwealth Scientific and Industrial Research Organisation (CSIRO)
+ - Copyright 1993, 2002, 2006 David Rowe
+ - Copyright 2003 EpicGames
+ - Copyright 1992-1994 Jutta Degener, Carsten Bormann
+ - Copyright (c) 1995-1998 The University of Utah and the Regents of the University of California All Rights Reserved
+ - Copyright (c) 1998-2005 University of Chicago. All rights reserved.
+ - Copyright (c) 2005-2006 Arizona Board of Regents (University of Arizona). All Rights Reserved
+ - Copyright (c) Andrew Tridgell 2004-2005
+ - Copyright (c) Stefan Metzmacher 2006
+ - Copyright (c) 2005, Google Inc. All rights reserved.
+ - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org
+ - Copyright (c) 1998-1999 Netscape Communications Corporation. All Rights Reserved.
+ - Copyright (c) 2001-2010 Peter Johnson and other Yasm developers.
+ - Copyright (c) 1995-2010 Jean-loup Gailly and Mark Adler
+ - Copyright (c) 1994-2006 Sun Microsystems Inc.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml
index 516f6c00973..e0322e9c79c 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml
index 35ad75943db..06008f26251 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml
index 10c5cb05edf..8441a1df7cd 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2006-2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml b/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml
index 516f6c00973..e0322e9c79c 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml
index 42804137f63..51963e7b356 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2009 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml
index fd28a945063..9c653dcd8ee 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2010 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml b/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml
index 2083c9c295d..be94f7bd147 100644
--- a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml
index 05e582f6387..f49d5b39078 100644
--- a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: unitedHeroes.net
count: 2
+allrights:
+ - copyright unitedHeroes.net
+ - Copyright (c) 2009, unitedHeroes.net All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml
index 6909a1ae13e..655a8c208d0 100644
--- a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml
+++ b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml
@@ -16,3 +16,7 @@ holders_summary:
count: 2
- value: Paul Johnston Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet
count: 1
+allrights:
+ - copyright unitedHeroes.net
+ - Copyright (c) 2009, unitedHeroes.net All rights reserved.
+ - Copyright Paul Johnston 2000 - 2002. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml
index 36bfc34d0af..22e7877cd16 100644
--- a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml
+++ b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml
index 50d775dbc73..fea69ba16b0 100644
--- a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml
+++ b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml b/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml
index fb4bafe2964..007a3e534ed 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2001 - 2003 Google Inc. All Rights Reserved
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml
index 787d756a0d2..73ae41aa09e 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2007, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml b/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml
index b6c8273cbc9..865a746d3a4 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2006 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml b/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml
index 566b356417c..0d70bd70990 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Peter Dimov
count: 1
+allrights:
+ - (c) Copyright Greg Colvin and Beman Dawes 1998, 1999.
+ - Copyright (c) 2001, 2002 Peter Dimov
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml
index c5461a1f8d4..ff51230eb29 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2007 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml
index c33bb9af53d..fa2a05dc6eb 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2009, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml
index 480e9e8e3f5..e0a9c52c62e 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2010, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml
index e8f81cb6bd5..c34e755cb06 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 1998 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml
index c5461a1f8d4..524ed5c3671 100644
--- a/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2007 Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml b/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml
index a5de130fa9e..b554713c578 100644
--- a/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml
+++ b/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright 2007, Google Inc. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 1998 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml b/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml
index 7d6dd46a3db..700457d47cc 100644
--- a/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 2003 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml b/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml
index bec4c936fbb..a9e0d6cd482 100644
--- a/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml
+++ b/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: the Initial Developer
count: 1
+allrights:
+ - Portions created by the Initial Developer are Copyright (c) 2007 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml b/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml
index 9dbde1a17ad..036a2f46138 100644
--- a/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 2
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml b/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml
index 0523e566966..6ecda23fea6 100644
--- a/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml
@@ -21,3 +21,9 @@ holders_summary:
count: 2
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - (c) Kasim 2005
+ - (c) 1999 Entrust.net Limited
+ - (c) Kasim 2005
+ - (c) 1999 Entrust.net Limited
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml b/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml
index de879e231e5..0cd51644cee 100644
--- a/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml b/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml
index 2477f610e18..7b74e4f5650 100644
--- a/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml
+++ b/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: John LoVerso
count: 1
+allrights:
+ - Copyright 1996-2004, John LoVerso. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml b/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml
index d0de80cec73..b6e75b6df71 100644
--- a/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2009-2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml b/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml
index 4a1a606cf03..3b234109d42 100644
--- a/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2008 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-http/des.cc.yml b/tests/cluecode/data/ics/chromium-net-http/des.cc.yml
index ccdc0649150..26a0c6ca2d8 100644
--- a/tests/cluecode/data/ics/chromium-net-http/des.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-http/des.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ - Copyright (c) 2003 IBM Corporation. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml b/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml
index f685362d27f..6d920894199 100644
--- a/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Copyright (c) 2003 IBM Corporation. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml b/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml
index 4d1208e382e..625f92773d1 100644
--- a/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 2001 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml b/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml
index 08ad0c5430a..785f9a5f7b0 100644
--- a/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: IBM Corporation
count: 1
+allrights:
+ - Copyright (c) 2003 IBM Corporation. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml b/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml
index 81b87a39245..eecd9336f2b 100644
--- a/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: the Initial Developer
count: 1
+allrights:
+ - Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ - Portions created by the Initial Developer are Copyright (c) 2000 the Initial Developer. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml b/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml
index 516f6c00973..e0322e9c79c 100644
--- a/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml
+++ b/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 1
+allrights:
+ - Copyright (c) 2010 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml b/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml
index 782e4e4f951..010fe70072a 100644
--- a/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml
+++ b/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 2
+allrights:
+ - Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml
index 942b76e2706..6069b5e76b5 100644
--- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml
+++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2005, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml
index 1201bead34d..15bf8bca4eb 100644
--- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml
+++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2006, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml
index 7a73bfbd2e1..c5514c0212d 100644
--- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml
+++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2008 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml
index 16814c32c43..3e860541265 100644
--- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml
+++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright (c) 2006, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml
index e9927a41c74..a90921370f3 100644
--- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml
+++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright (c) 2007, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml
index e46e3f037f6..32808b9155f 100644
--- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml
+++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Jean-loup Gailly
count: 1
+allrights:
+ - Copyright (c) 1995-2005 Jean-loup Gailly.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml b/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml
index 787d756a0d2..73ae41aa09e 100644
--- a/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2007, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml
index bb3b10f2116..f2f0f05ee21 100644
--- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml
@@ -13,3 +13,6 @@ holders_summary:
count: 1
- value: Neal Norwitz
count: 1
+allrights:
+ - Copyright 2009 Neal Norwitz All Rights Reserved.
+ - Portions Copyright 2009 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml
index 7a73bfbd2e1..c5514c0212d 100644
--- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2008 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml
index c33bb9af53d..fa2a05dc6eb 100644
--- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2009, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml
index 593fbdfb680..219cf81d8ad 100644
--- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2008, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml
index 1201bead34d..15bf8bca4eb 100644
--- a/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2006, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml b/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml
index 593fbdfb680..219cf81d8ad 100644
--- a/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2008, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml
index c5e4ce567bf..1e8bcec3df5 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2003 Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml
index 42804137f63..51963e7b356 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2009 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml b/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml
index 42804137f63..51963e7b356 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2009 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml
index 4c85b1c8d6c..5abc1012f6b 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml
@@ -13,3 +13,7 @@ holders:
holders_summary:
- value: Google
count: 3
+allrights:
+ - Copyright 2006, Google Inc. All rights reserved.
+ - Copyright 2006, Google Inc. All rights reserved.
+ - Copyright 2006, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml b/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml
index 593fbdfb680..219cf81d8ad 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2008, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml
index a33ef0193db..40aaa51e061 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2003, Google Inc. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml
index fd28a945063..9c653dcd8ee 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2010 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml
index 6c88e7f86c6..438a169c3fc 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2005 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml
index 42804137f63..51963e7b356 100644
--- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Google
count: 1
+allrights:
+ - Copyright 2009 Google Inc. All Rights Reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml b/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml
index 1bbbb740b09..0a54a84b597 100644
--- a/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml
+++ b/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml
@@ -11,3 +11,6 @@ holders:
holders_summary:
- value: The Chromium Authors
count: 2
+allrights:
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
+ - Copyright (c) 2009 The Chromium Authors. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml
index b695b41745d..254d1a52500 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1982, 1986, 1993 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml
index 32136a19f80..c82699a9a6d 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml
index d5f3f000691..2c73105efb3 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2003-2006 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml
index 9b311873651..5da778e16a8 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2002, 2003 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml
index c6265a65edf..f8949c63b7e 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright 2000-2004 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml
index f35160b5dd6..5acdf8a46d8 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright 2000-2003 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml
index 11acbe0911b..17565dc5031 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright 2003 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml
index db14d7f80d5..839052b5d62 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2002-2004 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml
index f682ceb121c..78c15bfcf7e 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2006 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml
index f682ceb121c..78c15bfcf7e 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2006 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml
index 02b031d3d18..e58d22e0e78 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2000-2004 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml
index 99352509f0d..8c51961721c 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Artur Grabowski
count: 1
+allrights:
+ - Copyright (c) 2000 Artur Grabowski All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml
index 3050e7fb94a..ac643fd91ad 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2000-2007 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml
index 176288f7051..1ccbbb0d8f2 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2005 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml
index 4a6f573af4a..a7b2d005728 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2003, 2004 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml
index 6c587035104..f4457523387 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Sun Microsystems
count: 1
+allrights:
+ - Copyright (c) 2007 Sun Microsystems. All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml
index 32c69760456..364410df3ca 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright 2000-2002 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml
index 216ba7dc562..cb53191740b 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2007 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml
index 3fbd9ca225c..d5028527a28 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright 2001 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml
index 90721298775..c00f64501da 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml
@@ -9,3 +9,5 @@ holders:
holders_summary:
- value: Niels Provos
count: 1
+allrights:
+ - Copyright (c) 2002-2006 Niels Provos All rights reserved.
\ No newline at end of file
diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml
index bdf419fa307..40e478aa42d 100644
--- a/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml
+++ b/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml
@@ -17,3 +17,7 @@ holders_summary:
count: 1
- value: The Regents of the University of California
count: 1
+allrights:
+ - Copyright (c) 2005 Nick Mathewson
+ - Copyright (c) 2000 Dug Song