diff --git a/pyproject.toml b/pyproject.toml
index f2371c6bb2..8b7f4679cb 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 6d17467acf..4faeb6e68a 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 0000000000..2bb8ee3d1f
--- /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/licensedcode/data/licenses/autodesk-3d-sft-3.0.LICENSE b/src/licensedcode/data/licenses/autodesk-3d-sft-3.0.LICENSE
index 51c4e55e36..4e798f4318 100644
--- a/src/licensedcode/data/licenses/autodesk-3d-sft-3.0.LICENSE
+++ b/src/licensedcode/data/licenses/autodesk-3d-sft-3.0.LICENSE
@@ -7,11 +7,10 @@ owner: Autodesk
homepage_url: https://github.com/Toksisitee/ALACNPopWorldEditor/blob/43d4119d698a7567ab4f32ddceb4076984dce136/_3ds/3dsftk3/license.txt
spdx_license_key: LicenseRef-scancode-autodesk-3d-sft-3.0
ignorable_copyrights:
- - (c) Copyright 1995 by Autodesk, Inc
+ - (c) Copyright 1995 by Autodesk, Inc.
- (c) Copyright 1997 by Autodesk, Inc.
- copyrighted by Autodesk, Inc.
ignorable_holders:
- - Autodesk, Inc
- Autodesk, Inc.
---
diff --git a/src/licensedcode/data/licenses/fsf-regex-gpl.LICENSE b/src/licensedcode/data/licenses/fsf-regex-gpl.LICENSE
index b24c5c777b..188519bb70 100644
--- a/src/licensedcode/data/licenses/fsf-regex-gpl.LICENSE
+++ b/src/licensedcode/data/licenses/fsf-regex-gpl.LICENSE
@@ -7,9 +7,9 @@ owner: Free Software Foundation (FSF)
homepage_url: https://sources.debian.org/src/xxgdb/1.12-9.4potato/regex.h/
spdx_license_key: LicenseRef-scancode-fsf-regex-gpl
ignorable_copyrights:
- - Copyright (c) 1985 Free Software Foundation, Inc
+ - Copyright (c) 1985 Free Software Foundation, Inc.
ignorable_holders:
- - Free Software Foundation, Inc
+ - Free Software Foundation, Inc.
---
NO WARRANTY
diff --git a/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE b/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE
index 28180ccd4b..bcdfe3a8a4 100644
--- a/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE
+++ b/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE
@@ -10,9 +10,9 @@ text_urls:
- https://www.cs.bham.ac.uk/research/projects/poplog/emacs/COPYING
ignorable_copyrights:
- Copyright (c) 1985, 1987, 1988 Richard M. Stallman
- - Copyright (c) 1988 Free Software Foundation, Inc
+ - Copyright (c) 1988 Free Software Foundation, Inc.
ignorable_holders:
- - Free Software Foundation, Inc
+ - Free Software Foundation, Inc.
- Richard M. Stallman
---
diff --git a/src/licensedcode/data/licenses/ricoh-1.0.LICENSE b/src/licensedcode/data/licenses/ricoh-1.0.LICENSE
index 1a87fcc096..d29816e765 100644
--- a/src/licensedcode/data/licenses/ricoh-1.0.LICENSE
+++ b/src/licensedcode/data/licenses/ricoh-1.0.LICENSE
@@ -17,7 +17,6 @@ other_urls:
ignorable_copyrights:
- Copyright (c) 1995-1999
ignorable_authors:
- - Ricoh Silicon Valley, Inc
- Ricoh Silicon Valley, Inc.
ignorable_urls:
- http://www.risource.org/RPL
diff --git a/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE b/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE
index 7a1e62caa1..89ffc6fe2e 100644
--- a/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE
+++ b/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE
@@ -10,10 +10,8 @@ text_urls:
- http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html
minimum_coverage: 50
ignorable_copyrights:
- - Copyright (c) 2001 Sun Microsystems, Inc
- Copyright (c) 2001 Sun Microsystems, Inc.
ignorable_holders:
- - Sun Microsystems, Inc
- Sun Microsystems, Inc.
---
diff --git a/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE b/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE
index c3885381cb..105c7ff987 100644
--- a/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE
+++ b/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE
@@ -6,7 +6,6 @@ notes: license text as published by SPDX
ignorable_copyrights:
- Copyright (c) 1995-1999
ignorable_authors:
- - Ricoh Silicon Valley, Inc
- Ricoh Silicon Valley, Inc.
ignorable_urls:
- http://www.risource.org/RPL
diff --git a/src/scancode/api.py b/src/scancode/api.py
index 71382f4a6a..433f1d3580 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 e3b0b4781b..411852a601 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 91ed9be1ac..443ef93cc4 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 110f6c71b1..f05d3fad3a 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 2f0bb97ab0..88cbcdf939 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 2f0bb97ab0..88cbcdf939 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 4d26eb31d0..f1e90c1a71 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 a80c0f83d1..a8e01e7054 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 a80c0f83d1..da78592f02 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 b5a3451c67..7d0e3433ec 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 0aa44ce712..4dc927f013 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 2f33496e92..0a2f149a6b 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 a80c0f83d1..0cf5a67898 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 a80c0f83d1..82e2bc0218 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 01a4c4d310..37f2b7feb4 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 a80c0f83d1..2560818c1e 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 54a5b04af3..b80336b07a 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 2d7b8301f0..4052e5bd54 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 41e5fc74e8..fb02e74578 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 f4e3648a3a..9d57c28f50 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 91ed9be1ac..90cd1a05e2 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 e01d2901a3..41222df5d8 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 91ed9be1ac..f38eef2d10 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 30a123c507..2757d6a8a9 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 8075cdf178..f132b3b181 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 ff70e613da..26d34f636f 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 91ed9be1ac..7ee0b6aa0f 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 91ed9be1ac..57b057e2fd 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 91ed9be1ac..fb2e2f115c 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 91ed9be1ac..7cd4e071ee 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 fcf8dd397b..1863ad596b 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 e456e1d64c..2a4c96aa83 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 fe8f922579..545fade8e1 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 fe8f922579..5847e3bd56 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 91ed9be1ac..e3a9f62957 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 07ffe30640..644a815b5f 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 26875e2af0..23b0cc08c5 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 8cf5731c50..77567e1af3 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 fad4bea8e4..6e827b24ce 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 dc7ebec7ca..cac4bfde60 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 a633286b6f..ca89fcf2bf 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 9e625e78fd..c73540d28b 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 ff9f369f0e..68fdf564a6 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 ff9f369f0e..68fdf564a6 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 86430175b6..554c04bd7f 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 86430175b6..554c04bd7f 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 1a35101b98..5e63785b99 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 2100066b05..5d793a89d9 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 2100066b05..5d793a89d9 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 2100066b05..5d793a89d9 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 519dc39439..46ac21abbd 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 519dc39439..46ac21abbd 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 4f0454d003..43ca2c95be 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 792fb7e8e5..7b1d5d46aa 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 86430175b6..554c04bd7f 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 8047adfaa0..af82c43a9e 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 4c0c883c65..0d5748f4cb 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 21ac71da92..e53b36bfd9 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 97612d3db9..ea60779bc2 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 481709f34b..e4db4fa852 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 653da0150c..07c9231306 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 6debcc4436..410fea114d 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 7dba1654fa..cf7c3e828f 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 d9eb817075..42ca0f5f31 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 a608bda71d..c4665e1921 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 3d619ffd0a..236041b2e4 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 4da8ebaa74..27707946c4 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 e7a1643666..d19914f809 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 6f87062700..75d8a68056 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 b550b430f2..8438603cf7 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 92f7b28182..29a1f71e92 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 fc554887af..12df9753e5 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 18c62aaa77..0ae3200c52 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 18c62aaa77..0ae3200c52 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 18c62aaa77..0ae3200c52 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 18c62aaa77..0ae3200c52 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 10d1fac5ec..a140a6ce02 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 7567688edd..3f1da189a0 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 126c0ab818..9d0d9503ed 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 126c0ab818..9d0d9503ed 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 80923b2c93..1e69519009 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 76689d89e0..65f70b9211 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 2970a0e6a5..ddab2ef871 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 2970a0e6a5..ddab2ef871 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 2970a0e6a5..ddab2ef871 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 a545a395be..980f07ce36 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 52e26d034b..31160eaa36 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 79d3547442..06bfe9f946 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 8e21f1fcdb..95361ceab3 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 c691696f76..c596227229 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 9a23ff9362..b588a42755 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 c5029692da..572fd702ae 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 ff9f369f0e..68fdf564a6 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 bd4cdba584..80b2bee35a 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 1adb6164c7..910bf0b229 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 e3db51d357..2410002107 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 35587ee836..1944f80d6e 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 df281f93eb..f12b690e62 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 a8703d75c5..fe335596ba 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 2970a0e6a5..ddab2ef871 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 7c3be9eabd..f97032e937 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 f77443a6c6..d8bce1ed77 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 f0a2ce85a2..37f52c1be9 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 5ed016a09e..083de61630 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 aff285c3c1..38c56bf146 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 76555a8c37..e9050a0b8f 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 cc1a53e4eb..9a64741c1f 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 d0b0712430..0b7383b2dd 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 6ae5921568..b6bed81464 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 df2647ced3..28cf4718e5 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 ca8e9bddbb..8736e19784 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 120133ae5f..b1f23c6cdc 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 3ca052af29..f08bb0d5a0 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 ec55d16023..db9b651564 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 44fd30660b..13cf9f8c47 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 57aad5b643..8abcc96bbb 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 f2f8440d12..1fc26467f8 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 c0832d78ba..cea3d7e7ad 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 0ed8c25304..bdf232d0e2 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 f2586a98f0..dca047ee56 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 29aef713b0..3f998ec328 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 6e135547fd..10c75efe9e 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 a8610b1c8e..ec34553f4d 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 1d0447dcb2..00a573f3cc 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 6c5502a949..4e47946537 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 3d277aa460..422f7fb898 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 a0fb088809..a10889d58b 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 a8d9d36a0d..c1d408597e 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 c6c4104050..9e6fa64d50 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 653a9c6429..4afc96d910 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 3a0054ca58..f6ae70756c 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 d8510418ca..b0b05745cc 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 dae1b52cd9..3d778d8baa 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 e7d4fec90e..9655fa7613 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 b2aaa9b8dd..5f4749edc9 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 c70fb34fbf..9a6ea631a2 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 4d2bfc4072..8acb2dfbf3 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 d1e4648b28..41c645f6f5 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 eb0f49c515..23b7955c6c 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 3c905997df..3773e542b0 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 07e66a4a28..5bdf2e341f 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 da073deb44..56d8fda7e5 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 bae9836c45..6909af39dd 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 43a4b65e42..cd7a526b78 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 4b12e6dc68..0e79e102aa 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 29aef713b0..3f998ec328 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 d8eb72e706..b1e59f2ac2 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 d8eb72e706..b1e59f2ac2 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 238642b4db..54bce11ae0 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 aa18c45436..85760d53a1 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 5cf6918508..09d9109ce1 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 e4c37b994a..08d5d7c120 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 0e9aafd83b..f119283bb0 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 ea1c0a5519..cdbc6ef458 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 c2aace97f6..1ae5bd7520 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 4fd838a43c..131e4e5645 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 4ae29eb57a..e2e6783a06 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 536b626cec..f1332d836c 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 00771a3c88..05e4aeccca 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 2356490691..2f65f8b6d6 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 c9a1c9a31c..5f7d253997 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 b9e7a1024a..6ba8eab276 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 0c3b650b4f..afa7aaef91 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 e68885cd19..b5223c20db 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 94bede6cbe..b7db6412ea 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 43afb7d33b..82591e9ed0 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 ba237805f2..ee5bc0d15d 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 61a541490c..44b3b15fe7 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 ecb3b0639d..297cbaa242 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 ecb3b0639d..297cbaa242 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 785af3905a..223411de3b 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 c2c0c12ae4..c8c50a0115 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 1701f36e2d..bedf996d90 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 67e0f95045..4842f5bc8e 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 4cbd67f859..ecd0514655 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 909e909079..05b01c5062 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 50d775dbc7..fea69ba16b 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 9ad3fd072b..4a1f2cdc12 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 d722f909cf..3836484763 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 679322b4ce..a12773abb2 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 94304adb22..e51920b640 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 e7d4fec90e..9655fa7613 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 aff285c3c1..38c56bf146 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 aff285c3c1..38c56bf146 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 aff285c3c1..38c56bf146 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 47b523b1e0..c14aa1811e 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 7c6ea01eb7..d124003a5a 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 87f0c9bd6a..a7c9115e9a 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 b53955b45d..b6a173e531 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 44b836e35d..45f382aee8 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 26617e14bb..8723baa769 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 3e499f9a14..c5bf9a274a 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 fe8ac2ee11..0d13a9f9ab 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 fa934be422..061462199b 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 07e66a4a28..5bdf2e341f 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 50e7c9e885..db0e0e9605 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 e86b5160c1..d97e7af126 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 964b477d86..58d2bd84dc 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 5d4e8b16cc..44778f8d56 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 e64f5e056b..8311625ee2 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 7500697a0d..caa8ee14d0 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 7bab37afb2..ab6dceaff5 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 0edf4ae02e..3e557cdd99 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 361332ee37..956f3b8ae1 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 d2d234661a..32885858d8 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 82043ced6e..5b061b9ae7 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 74e15d079a..5c5706bf5a 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 c4b8c8350c..a1cdcab104 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 fa73b5d62f..19bc871d59 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 fa73b5d62f..19bc871d59 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 40d684b06f..7109750418 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 ea1cffdc65..51a65b6f3d 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 75fcd9bd30..beaa0f326d 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 3ccecfc58a..b167fd3025 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 b44bae8405..97ae8881bb 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 de07adae14..bde40b2acd 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 dc5e3503b5..b511b479b9 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 4a9481c641..ae3039aaa8 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 ab2ac228a6..a112170ccd 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 974287488e..adea638d8c 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 fa3169e373..68587aa2bc 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 e52246af6a..18f661dd0f 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 5aaaca8642..fc17395249 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 c4d94670cf..4d9f2205de 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 5b1be28537..5a51269879 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 5b1be28537..5a51269879 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 5b1be28537..5a51269879 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 d2d234661a..32885858d8 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 e9062fec3e..22c1f6d2af 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 0d5a816dc6..aa0b186d35 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 80403d1898..269b1e1f08 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 2356490691..2f65f8b6d6 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 488aeaa2b9..fa3aeccd1f 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 3ef6178841..281db8829e 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 f10823f446..5e9f6d7a45 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 4fc295343a..b040811311 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 0c1931fc18..36a2d3b747 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 006e1092e4..4a30a4be95 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 4805d430d8..88623fb494 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 59f3f997d8..059f130552 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 4116269d99..b2f44cdce3 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 8784bc6c3e..f6d55cd479 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 130a851020..c2ff99d137 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 5167539d17..6e28d97361 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 cb16aca93a..e36cd04e14 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 f0d004b7bd..b74dad931b 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 bb0ec0b7c1..b8dc5618d6 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 6a309e4f6d..d137647966 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 7fac18ec53..47beb793f8 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 aff285c3c1..38c56bf146 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 a99776f87e..ee79273ca5 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 defd06728a..2efe45dade 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 425e73c5aa..c1b1478e70 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 7a317881e4..8339348b1c 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 8f81c2ffbb..c6f600f83c 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 348ec2c996..307e97492c 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 901a8256a8..26f6b32e58 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 b8435f8135..800ba3442e 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 7f1f7ad970..3617606174 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 995fa41fb0..0f97c961ef 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 10675d09fa..8ef78324b7 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 1b1b5945a3..13744fbedf 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 a20e9080c1..4499b4bd7b 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 2187849e9a..64fd2bfb69 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 971e15be15..d9e2e33ef7 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 e2032d719b..de9cb65d6a 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 8e6a8b9977..2cca606020 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 ae9bb8c7b7..2f6ff3099b 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 7d8747fc2e..2a4a8321ce 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 c57a942aad..cfb5ff4b28 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 248d9aa430..62c78fb1b2 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 757e7168ef..e7b9c293cc 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 39eb454be8..a8780064f2 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 2187849e9a..64fd2bfb69 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 6a805ca839..4db0679a23 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 93a4a18ff5..b38ecaaea2 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 1e432dd9a5..b31ae4c69b 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 3b0a556e96..d34d07a5bd 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 8602bfede8..c013c4fdc1 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 de99c95725..b76cda1a87 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 d473c7e36b..223a14a0b0 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 f2ace8d1fe..e16fc60c85 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 a6198a7209..1488b746e6 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 8233f92b1c..8c2686e95c 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 06cf18ea90..e0b064af5e 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 7d35cee9bf..93f9cc94d4 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 8ec9d803d1..9597423f61 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 f32043987b..03a3cd83b9 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 e07b2f7ca0..175e612e05 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 b41f97a0a8..49da82bf72 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 aa1ab9a73a..c6d9f562e5 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 7015ff97c3..bd08473258 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 aba77d229b..eeb37d34bb 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 f88471382f..7a088ae899 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 233338ecf2..41fd82f518 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 93cb5933d7..11840b88cd 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 63608e72ab..c85c1aa381 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 1077bcc6cf..8f8e518527 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 1549c2deb2..1f4a5a4291 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 0d3ba9fb36..846c505067 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 ab23b65643..8384eec83c 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 76a7231bca..e77ed740fb 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 0163462edc..4bfb95bf72 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 a2a18d2fdd..f8507523cd 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 c9eba27440..b50d3cc520 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 67d5efe15f..b4b964519a 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 47f606b4fe..dd15e9cf1f 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 47f606b4fe..dd15e9cf1f 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 b1d5e92cb9..d3021d2b3c 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 0fd9bb41f3..b277bc88e4 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 078e710b96..1c505e3949 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 a554cdabc6..58791f4c4f 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 1c4d1c4df7..1dc15dbc2b 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 4ef658162c..1738ef004c 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 3704508167..e1fa77e3e3 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 42fb8bfee3..de2ee8a91b 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 385a69f903..cb4a232c31 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 6d0af0cdcd..6a34433b90 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 1d6a1251f8..ef9d0547af 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 ea395aef6a..dbfd399b6f 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 2900727528..0a92a55c73 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 f6c79eeabd..cc55aa49ec 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 9efab71393..a05a803b9e 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 5ac9d7a0a9..fe15320173 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 34fabe8d96..658d365d38 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 59a6452cb1..59aa373271 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 f3e0e37ae8..5e50e8f00f 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 856fb60334..bb05a2451a 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 8fbd127b35..45a8ee15ef 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 0aaf9e3c0c..ea0a42b1f2 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 a10d2ceda6..2dd3c562ac 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 31153baff0..0aa035d832 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 a8f6689155..fa6a4f4dee 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 e81e833f7d..cb51ffb603 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 0343db4d0d..c67c2a9ba1 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 cb0fc69da2..12c7f6ab4d 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 45f36e38d6..97ab352c63 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 c2df105837..aff50ab205 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 5b909aed30..a6f1d2aeef 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 f2f52d3c23..2c85d03180 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 edbba5e714..7ba4a35894 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 ac916d9803..320142f575 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 7ffcfac794..7581c1825a 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 a6980ce212..6899ead7e5 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 13751f0fe3..3fb614a0c8 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 e4d0fb2a6d..a05a054e01 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 9968037435..7c2a528e5a 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 bbbab2d589..d2c83737e5 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 703697e6f0..96b82cd6a6 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 1e32ec4ac7..9793c70587 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 78a2818064..4a4c480efa 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 cfe9f6f239..1a4e062650 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 6fde9d70c9..ec2f31fa4d 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 6fde9d70c9..ec2f31fa4d 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 34996bd828..f33560ffbe 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 ea166d615a..185849531e 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 d23fd8add5..52bd80c9a4 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 cbc8cbd11d..3a8246c280 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 7ea2f1f11f..90d014770d 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 7ea2f1f11f..90d014770d 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 7ea2f1f11f..90d014770d 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 7b5f5f1257..85488ec140 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 ea0ce1b65a..6a30d8c367 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 7ea2f1f11f..90d014770d 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 7ea2f1f11f..90d014770d 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 7ea2f1f11f..90d014770d 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 b3d2410114..fb99a50d5c 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 a51786efe8..7d4d8e6653 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 a51786efe8..7d4d8e6653 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 58648944a1..9fe4384459 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 82aeac4bb9..83a50160c9 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 a401fc8423..c48700b2fa 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 40c633300a..79030fcf84 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 2f4970266a..7abae42697 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 24c22fbae0..bf63ca54de 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 0001503be5..322d67f54d 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 aef7df5ca4..62ebee63e2 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 e66041d27f..512db4a20e 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 d5d16369a6..3f8ee6f9b6 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 dd3f5b6c15..d98d04afea 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 0b8c0b71bb..c4e1fb2d9d 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 a7a0235169..d2110ea902 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 89b5356dc0..a32a344ee2 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 37f6e8c3b3..b4b56c98ee 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 1ea4c4bfda..9882ad2110 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 b01b84a3a2..61df434587 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 b19512d6d9..1e49b01e90 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 4fd39790af..a96ea66690 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 2ca8d98c00..88ac2f8b7c 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 52f2576a99..4e326928b9 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 9c596f2bd2..2726ac5acd 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 4e086044f3..e3ccf8a0e3 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 7f57db9ee4..0d1e3b476f 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 400bc3a822..631202216d 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 2a9169efd1..e92f477cab 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 b5c3aa73c6..4f48220643 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 9f86769f80..bf1c1c5012 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 0064e5217d..9701443fbe 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 f87624036f..36e87408e5 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 dcd528378c..2f55e5aa9e 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 580987c026..f3f9c83940 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 28109c8b81..6b2ddd7d2e 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 96c2c1fc58..a6c7e9559f 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 b93446faaf..2b73c7f889 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 b93446faaf..2b73c7f889 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 8559b4c638..0b53d2fea3 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 414c00af47..b42155d8f7 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 c785dd900a..8587319298 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 4a6133d34c..81b539ef57 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 47a886c752..bab94479f8 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 5e5beb9cd7..db325dcecc 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 d03cff9554..5a96c493d9 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 fcc5b5e1f1..5bf7f12a95 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 0f12ec01c0..8d3034efe4 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 10bc38329e..bc552c3386 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 abeee6fd4a..fdebfb2532 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 db66f87c70..f6ebf2b716 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 db66f87c70..f6ebf2b716 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 8863c9836e..dde2869ea4 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 ffe9052301..17c61e6054 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 3a1a7d7fbc..ba4b837225 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 f58f5200a9..9cbc61f335 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 6ab6a16a5e..bb3a1f1051 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 1fd0630c8f..dfdcb6d976 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 a0d29c601c..c37d71ba28 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 0cea716117..156b5206f4 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 9068a4ca6a..9a49de912f 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 5ffd96c608..4722eacab3 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 5bf2d8c120..0c909b5924 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 871e313e4f..5253703908 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 1702e60919..51b12fbd62 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 5a12d8daf8..347a2ed742 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 54781089a5..226f1f48da 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 ac7c65f226..57f0cb5e45 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 e7d4fec90e..9655fa7613 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 85a251c63b..cb089d7cff 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 d3878441d7..51868484de 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 44fd30660b..13cf9f8c47 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 3b0b0cc452..553eae72c9 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 3b0b0cc452..553eae72c9 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 ae30e848a2..d63495e3d2 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 5762ecd001..75f2698b3b 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 2f96fc905d..a576170c7a 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 55d1055aef..374f56b40c 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 b3d4e33720..28b6d773b7 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 a37b6a4c2b..5714c5b8da 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 ac8d7f4cd6..ae810a20ef 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 62febc2e66..bfd7865822 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 4b12e6dc68..0e79e102aa 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 9c58f3cf66..6cf48e02ba 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 c1ffb40de9..83273da953 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 4805d430d8..88623fb494 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 76fbf957b9..f7ea26d52b 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 11d59690c2..67d939c509 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 435da2be3c..ec4bbe2fcf 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 35c2911288..3a85d23790 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 092ad398a8..56cc953d79 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 c9c240f107..e34f5c7c45 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 d3cddab4ea..45e2c12542 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 fe904f0ee9..e1520709a0 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 0e559bc07d..80126cf62c 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 39cb0870f5..b2054668b2 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 94bede6cbe..b7db6412ea 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 56de5e6eb8..6db3b3fd64 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 7c92e80883..5df8357fc5 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 cdb8d29f58..c46b48dea0 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 92b03a6b20..207b7ac505 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 6ae61ff9b8..7b5f669b41 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 7129aa07b6..5a5bde1dee 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 d14ebe9e41..c9e0373124 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 97871aac1f..eb576099e7 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 d389adc362..10e1be06d9 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 d8ca44344c..5cb4732347 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 53837b609e..7579f14d8a 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 afe7232784..714db25305 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 07e66a4a28..5bdf2e341f 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 ca4d3cbd62..8e70c0ae40 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 2ff78ee8f4..223794cb56 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 a77d745540..eb92e61282 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 5d01321833..4d65bbbd0d 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 fd28a94506..9c653dcd8e 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 de917d25e7..ab4a3df9fd 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 52757fd41e..141492888d 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 31dc2984b8..e63c62ce01 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 55c61ec965..f850bbeaec 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 e82cf9043f..16b701e6a0 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 07aaf7d05a..370f97fcd1 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 ad39d8d665..82163e37ea 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 3a697e1230..dd13bf9ff4 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 a72b8c1d6f..f4322d3f73 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 433f3ba131..9eae45a080 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 c95bd3285a..66a49f4c26 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 b0227a255f..cce2bb5380 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 c88cf3f8fc..146ca16c06 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 4e265f387d..16c758e6b9 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 0a63969334..a1536bf9a3 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 0c276237ec..7cfd09e3ee 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 1496c41958..dec39c12bf 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 1496c41958..dec39c12bf 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 c809046586..f71fc374a7 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 377713210e..d3da54ab57 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 536b626cec..f1332d836c 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 672df54a86..725b1363d9 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 36838c1447..e75eed2f62 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 1bec7188d2..89c9e49bc1 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 7d0b67b32b..a233dcdfc2 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 22f1fcbc6b..f27c83015b 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 89db5d2e57..cf4cd6549f 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 462219352b..45b8081308 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 92e21d5dbb..5e9a3e252d 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 4f266e0645..93e8db112a 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 4989e10d6e..fe0ef9859c 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 240768857b..6e43f30dbc 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 44e20c6897..cc8b45f821 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 c1c65157d9..5f7662f322 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 bb0ae899dc..2646bba463 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 a5caca62d9..ae09655a2b 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 696a4254b3..ae6e398306 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 82107215d3..e30b60820e 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 74f0b0a2bc..d0f329432a 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 c037b3c83a..b87fdbaede 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 6babfb07c4..a8227696aa 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 611a0c9b4a..7ce8212c6d 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 fe0c90e215..99bb778e49 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 97a90ab975..e11dfaee32 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 2368d67b20..4460cf16b2 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 f1c25da6cd..d7aa9b26dc 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 3e314ca0a5..ea00368458 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 91097ae45e..2008f3a6ec 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 f5b9d40db8..cd5a744602 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 b1ce3ed331..516277462a 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 46ef38baf5..13123acc44 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 61b69b1303..c1ade42572 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 38cc302fe8..d5e4c1a3fb 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 2188884b4c..98ca23457d 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 ee8ce0704a..db2acd01fb 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 ee7b98212a..11a4934fb1 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 1002d7f249..a6fab1a7a0 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 4d6b41a219..bfe05beeef 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 fb7aeef775..f59cbb089e 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 de368553a5..b029d61ce3 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 f6dfc418e5..f5fabfe5ec 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 f6dfc418e5..f5fabfe5ec 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 7e4d25b160..205c969c38 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 cc43354f00..5da7290bc6 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 00016d26d1..64aca28f94 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 a928bbf362..d5553d85de 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 d9073e1f18..41b885b359 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 af8c0f095f..17a4ddfd82 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 0786f3d679..1016d69bf1 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 02387c9697..e007ee082e 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 f52dd4cf51..6b8bb28c16 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 e08b4db2d1..e47f1d5571 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 9b03b2af24..d3b9f6bbd7 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 f647501919..067b921dfe 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 64aac13b41..35485cdf7d 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 5b131903d0..169a431bcb 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 18ab0afaf6..751381dc4e 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 f5090a98c0..e600fa1d03 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 42b41df3ed..c23df44aa9 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 42b41df3ed..c23df44aa9 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 9ecae8374c..f8be9d8448 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 5c10746370..be902b8cf8 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 f5090a98c0..e600fa1d03 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 42b41df3ed..c23df44aa9 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 ffc375647b..d2ec7c202b 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 7d0e4b8a9f..683bd419ee 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 ee3eb8780b..c9086c7c57 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 2b6dfdf694..a713423bd8 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 4e1ea58989..cc15cd77e8 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 b462484779..54c2a60446 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 4da86d3504..856a17834d 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 5565ce8685..5866f6fff5 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 67d7fb6b87..8e9fa86094 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 c1b692265c..20065c5f97 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 64355d873a..faae0eaedc 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 e82cf9043f..16b701e6a0 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 c62bfc94a6..dca0d8a2b3 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 014d3bc158..8928418fe2 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 128bcbf147..b50f7b39c7 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 d7dd8fef68..e8bd0d1230 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 904db16f7c..f434dae827 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 b59ac8dce3..48a51da562 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 c4ba2aef8e..176f84b705 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 fd28a94506..9c653dcd8e 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 98e267d0fe..adfc8dd4fe 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 d801e23a27..5408a5fef0 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 1b58081203..b09d8c4b1b 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 1c7a1982ff..c85ef55753 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 6179e209d1..9fe001d9f9 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 b66499dfdc..469dbeec6b 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 f72e661ae2..7e7ac327b8 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 1c7a1982ff..c85ef55753 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 fd28a94506..9c653dcd8e 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 34b038d55e..17464b8bc9 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 736081714e..75bc47c524 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 d206eb5198..2c3b9c44a0 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 2aeb728ed7..ea5f3c80d0 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 2aeb728ed7..ea5f3c80d0 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 d206eb5198..2c3b9c44a0 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 2aeb728ed7..ea5f3c80d0 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 d206eb5198..2c3b9c44a0 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 d206eb5198..2c3b9c44a0 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 b66d6a9add..f6e584e122 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 77675b89ea..be6e109455 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 d7acae7c68..59640a18f9 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 ce65a68270..1d450de161 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 fe353fa815..2933493cff 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 7500697a0d..caa8ee14d0 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 d5d8709338..9c0719df1d 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 61e170869b..3997a74198 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 ccdfaa91a2..ceeeb6afa6 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 38a47ddf64..beefe77522 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 32824d8aae..a553eff464 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 8411f9eb37..429649b9ff 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 9105c8eb45..d13025a831 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 7d0b67b32b..a233dcdfc2 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 7d0b67b32b..a233dcdfc2 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 89be1dc252..13d77be49b 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 bd9261570c..36d4a6a518 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 712a0425bb..45572d38d1 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 516f6c0097..e0322e9c79 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 de879e231e..0cd51644ce 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 2083c9c295..be94f7bd14 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 2083c9c295..be94f7bd14 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 3a5bfd5373..178edd8317 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 a7afdf3952..027b887a21 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 9f0addd20a..65569b035e 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 a7afdf3952..027b887a21 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 c2b4b46b52..aa95008c77 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 596ee0773f..947113be51 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 516f6c0097..e0322e9c79 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 5e0608b476..d80fddff5b 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 74aceccde0..9fc76386fa 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 de8c619a63..096f6a6a0c 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 593fbdfb68..219cf81d8a 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 848ac9577f..2da297e2e0 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 2ba06afc99..9385046612 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 2ba06afc99..9385046612 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 de879e231e..0cd51644ce 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 35ad75943d..06008f2625 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 de879e231e..0cd51644ce 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 de879e231e..0cd51644ce 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 4a1a606cf0..3b234109d4 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 b6c8273cbc..5bad7bb9b6 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 516f6c0097..e0322e9c79 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 4a1a606cf0..3b234109d4 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 4a1a606cf0..3b234109d4 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 83d4e27159..de3fb6017c 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 de879e231e..0cd51644ce 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 2083c9c295..be94f7bd14 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 2083c9c295..be94f7bd14 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 d94be1c700..34604043d3 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 1cda1a9801..817984931c 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 df80ef9e71..139863e0ca 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 6413aad5c5..1f426eec33 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 4e3f73342a..a8dfacb58a 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 8a20feeb92..9803cc4580 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 c611f6a41e..edbf851780 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 be6529516a..47685a0e64 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 2083c9c295..be94f7bd14 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 2a6b217c78..7e201d3843 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 de879e231e..0cd51644ce 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 de879e231e..0cd51644ce 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 4ff54e8924..71a4e150a0 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 516f6c0097..e0322e9c79 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 de879e231e..0cd51644ce 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 35ad75943d..06008f2625 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 10c5cb05ed..8441a1df7c 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 516f6c0097..e0322e9c79 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 42804137f6..51963e7b35 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 fd28a94506..9c653dcd8e 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 de879e231e..0cd51644ce 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 2083c9c295..be94f7bd14 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 05e582f638..f49d5b3907 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 6909a1ae13..655a8c208d 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 36bfc34d0a..22e7877cd1 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 50d775dbc7..fea69ba16b 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 fb4bafe296..007a3e534e 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 787d756a0d..73ae41aa09 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 b6c8273cbc..865a746d3a 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 566b356417..0d70bd7099 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 c5461a1f8d..ff51230eb2 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 c33bb9af53..fa2a05dc6e 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 480e9e8e3f..e0a9c52c62 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 e8f81cb6bd..c34e755cb0 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 c5461a1f8d..524ed5c367 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 a5de130fa9..b554713c57 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 7d6dd46a3d..700457d47c 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 bec4c936fb..a9e0d6cd48 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 9dbde1a17a..036a2f4613 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 0523e56696..6ecda23fea 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 de879e231e..0cd51644ce 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 2477f610e1..7b74e4f565 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 d0de80cec7..b6e75b6df7 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 4a1a606cf0..3b234109d4 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 ccdc064915..26a0c6ca2d 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 f685362d27..6d92089419 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 4d1208e382..625f92773d 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 08ad0c5430..785f9a5f7b 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 81b87a3924..eecd9336f2 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 516f6c0097..e0322e9c79 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 782e4e4f95..010fe70072 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 942b76e270..6069b5e76b 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 1201bead34..15bf8bca4e 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 7a73bfbd2e..c5514c0212 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 16814c32c4..3e86054126 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 e9927a41c7..a90921370f 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 e46e3f037f..32808b9155 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 787d756a0d..73ae41aa09 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 bb3b10f211..f2f0f05ee2 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 7a73bfbd2e..c5514c0212 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 c33bb9af53..fa2a05dc6e 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 593fbdfb68..219cf81d8a 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 1201bead34..15bf8bca4e 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 593fbdfb68..219cf81d8a 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 c5e4ce567b..1e8bcec3df 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 42804137f6..51963e7b35 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 42804137f6..51963e7b35 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 4c85b1c8d6..5abc1012f6 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 593fbdfb68..219cf81d8a 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 a33ef0193d..40aaa51e06 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 fd28a94506..9c653dcd8e 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 6c88e7f86c..438a169c3f 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 42804137f6..51963e7b35 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 1bbbb740b0..0a54a84b59 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 b695b41745..254d1a5250 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 32136a19f8..c82699a9a6 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 d5f3f00069..2c73105efb 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 9b31187365..5da778e16a 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 c6265a65ed..f8949c63b7 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 f35160b5dd..5acdf8a46d 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 11acbe0911..17565dc503 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 db14d7f80d..839052b5d6 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 f682ceb121..78c15bfcf7 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 f682ceb121..78c15bfcf7 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 02b031d3d1..e58d22e0e7 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 99352509f0..8c51961721 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 3050e7fb94..ac643fd91a 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 176288f705..1ccbbb0d8f 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 4a6f573af4..a7b2d00572 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 6c58703510..f445752338 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 32c6976045..364410df3c 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 216ba7dc56..cb53191740 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 3fbd9ca225..d5028527a2 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 9072129877..c00f64501d 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 bdf419fa30..40e478aa42 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