diff --git a/pyproject.toml b/pyproject.toml index f2371c6bb2b..8b7f4679cba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -272,6 +272,7 @@ facet = "summarycode.facet:AddFacet" info = "scancode.plugin_info:InfoScanner" licenses = "licensedcode.plugin_license:LicenseScanner" copyrights = "cluecode.plugin_copyright:CopyrightScanner" +allrights = "cluecode.plugin_allrights:AllrightsCopyrightScanner" packages = "packagedcode.plugin_package:PackageScanner" emails = "cluecode.plugin_email:EmailScanner" urls = "cluecode.plugin_url:UrlScanner" diff --git a/src/cluecode/copyrights.py b/src/cluecode/copyrights.py index 6d17467acf6..4faeb6e68a1 100644 --- a/src/cluecode/copyrights.py +++ b/src/cluecode/copyrights.py @@ -336,20 +336,25 @@ def detect(self, tree_node_label = tree_node.label if (include_copyrights or include_holders) and 'COPYRIGHT' in tree_node_label: - copyrght = build_detection_from_node( + if include_copyright_allrights: + refiner = refine_allrights + else: + refiner = refine_copyright + + copyright = build_detection_from_node( node=tree_node, cls=CopyrightDetection, ignored_labels=non_copyright_labels, include_copyright_allrights=include_copyright_allrights, - refiner=refine_copyright, + refiner=refiner, ) if TRACE or TRACE_DEEP: - logger_debug(f'CopyrightDetector: final copyright: {copyrght}') + logger_debug(f'CopyrightDetector: final copyright: {copyright}') - if copyrght: + if copyright: if include_copyrights: - yield copyrght + yield copyright if include_holders: # By default we strip email and urls from holders .... @@ -3562,6 +3567,31 @@ def refine_copyright(c): return c.strip() +def refine_allrights(c): + """ + Refine a detected copyright string. + FIXME: the grammar should not allow this to happen. + """ + if not c: + return + c = ' '.join(c.split()) + c = strip_some_punct(c) + c = strip_solo_quotes(c) + # this catches trailing slashes in URL for consistency + c = c.strip('/ ~') + c = strip_all_unbalanced_parens(c) + c = remove_some_extra_words_and_punct(c) + c = ' '.join(c.split()) + c = remove_dupe_copyright_words(c) + c = strip_prefixes(c, prefixes=set(['by', 'c'])) + c = c.strip() + c = c.strip('+') + c = strip_balanced_edge_parens(c) + c = strip_suffixes(c, suffixes=COPYRIGHTS_SUFFIXES) + c = c.strip("'") + return c.strip() + + def remove_dupe_holder(h): """ Remove duplicated holders @@ -4452,7 +4482,7 @@ def collect_candidate_lines(numbered_lines): remove_weird_comment_markers = re.compile(r'^(rem|\@rem|dnl)\s+').sub # common comment line prefix in man pages -remove_man_comment_markers = re.compile(r'\."').sub +remove_man_comment_markers = re.compile(r'^\.\\"').sub def remove_code_comment_markers(s): diff --git a/src/cluecode/plugin_allrights.py b/src/cluecode/plugin_allrights.py new file mode 100644 index 00000000000..2bb8ee3d1f7 --- /dev/null +++ b/src/cluecode/plugin_allrights.py @@ -0,0 +1,61 @@ +# +# This code is heavily inspired by original code from ScanCode Toolkit. +# The copyright header is therefore propagated. The content is primarily +# taken from following packages in the ScanCode Toolkit: +# - cluecode.plugin_copyright +# - scancode.api +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# ScanCode is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/nexB/scancode-toolkit for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# + +import attr +from plugincode.scan import ScanPlugin +from plugincode.scan import scan_impl + +from commoncode.cliutils import PluggableCommandLineOption +from commoncode.cliutils import SCAN_GROUP + + +@scan_impl +class AllrightsCopyrightScanner(ScanPlugin): + """Scan a Resource for copyrights with all rights reserved. This class is an adapted version of + scancodes cluecode.plugin_copyright. + """ + + resource_attributes = dict( + [ + ("copyrights", attr.ib(default=attr.Factory(list))), + ("holders", attr.ib(default=attr.Factory(list))), + ("authors", attr.ib(default=attr.Factory(list))), + ] + ) + + run_order = 6 + sort_order = 6 + + options = [ + PluggableCommandLineOption( + ( + "-a", + "--allrights", + ), + is_flag=True, + default=False, + help="Scan for copyrights and all rights reserved.", + help_group=SCAN_GROUP, + sort_order=50, + ), + ] + + def is_enabled(self, allrights, **kwargs): # NOQA + return allrights + + def get_scanner(self, **kwargs): + from scancode.api import allrights_scanner + return allrights_scanner + diff --git a/src/scancode/api.py b/src/scancode/api.py index 71382f4a6a0..433f1d35808 100644 --- a/src/scancode/api.py +++ b/src/scancode/api.py @@ -6,16 +6,17 @@ # See https://github.com/nexB/scancode-toolkit for support or download. # See https://aboutcode.org for more information about nexB OSS projects. # -from itertools import islice -from os.path import getsize import logging import os import sys +from itertools import islice +from os.path import getsize + +from typecode.contenttype import get_type from commoncode.filetype import get_last_modified_date from commoncode.hash import multi_checksums from scancode import ScancodeError -from typecode.contenttype import get_type TRACE = os.environ.get('SCANCODE_DEBUG_API', False) @@ -30,6 +31,7 @@ def logger_debug(*args): logging.basicConfig(stream=sys.stdout) logger.setLevel(logging.DEBUG) + def logger_debug(*args): return logger.debug( ' '.join(isinstance(a, str) and a or repr(a) for a in args) @@ -46,9 +48,9 @@ def logger_debug(*args): def get_copyrights( - location, - deadline=sys.maxsize, - **kwargs, + location, + deadline=sys.maxsize, + **kwargs, ): """ Return a mapping with a single 'copyrights' key with a value that is a list @@ -79,12 +81,45 @@ def get_copyrights( return results +def allrights_scanner( + location, + deadline=sys.maxsize, + **kwargs, +): + """Return a mapping with a single 'copyrights' key with a value that is a list + of mappings for copyright detected in the file at `location`. + Adapted copy of scancodes scancode.api.get_copyrights. + """ + from cluecode.copyrights import detect_copyrights + from cluecode.copyrights import Detection + + detections = detect_copyrights( + location, + include_copyrights=True, + include_holders=True, + include_authors=True, + include_copyright_years=True, + include_copyright_allrights=True, + deadline=deadline, + ) + + copyrights, holders, authors = Detection.split(detections, to_dict=True) + + results = dict([ + ('copyrights', copyrights), + ('holders', holders), + ('authors', authors), + ]) + + return results + + def get_emails( - location, - threshold=50, - test_slow_mode=False, - test_error_mode=False, - **kwargs, + location, + threshold=50, + test_slow_mode=False, + test_error_mode=False, + **kwargs, ): """ Return a mapping with a single 'emails' key with a value that is a list of @@ -148,14 +183,14 @@ def get_urls(location, threshold=50, **kwargs): def get_licenses( - location, - min_score=0, - include_text=False, - license_text_diagnostics=False, - license_diagnostics=False, - deadline=sys.maxsize, - unknown_licenses=False, - **kwargs, + location, + min_score=0, + include_text=False, + license_text_diagnostics=False, + license_diagnostics=False, + deadline=sys.maxsize, + unknown_licenses=False, + **kwargs, ): """ Return a mapping or license_detections for licenses detected in the file at @@ -257,12 +292,12 @@ def get_licenses( def _get_package_data( - location, - application=True, - system=False, - compiled=False, - package_only=False, - **kwargs + location, + application=True, + system=False, + compiled=False, + package_only=False, + **kwargs ): """ Return a mapping of package manifest information detected in the file at ``location``. @@ -309,12 +344,12 @@ def get_package_info(location, **kwargs): def get_package_data( - location, - application=True, - system=False, - compiled=False, - package_only=False, - **kwargs + location, + application=True, + system=False, + compiled=False, + package_only=False, + **kwargs ): """ Return a mapping of package manifest information detected in the file at diff --git a/tests/cluecode/cluecode_test_utils.py b/tests/cluecode/cluecode_test_utils.py index e3b0b4781bf..411852a6019 100644 --- a/tests/cluecode/cluecode_test_utils.py +++ b/tests/cluecode/cluecode_test_utils.py @@ -55,6 +55,7 @@ class CopyrightTest(object): # one of holders, copyrights, authors what = attr.ib(default=attr.Factory(list)) copyrights = attr.ib(default=attr.Factory(list)) + allrights = attr.ib(default=attr.Factory(list)) holders = attr.ib(default=attr.Factory(list)) authors = attr.ib(default=attr.Factory(list)) @@ -175,6 +176,7 @@ def make_copyright_test_functions( index, test_data_dir=test_env.test_data_dir, regen=REGEN_TEST_FIXTURES, + with_allrights=False, ): """ Build and return a test function closing on tests arguments and the function @@ -188,7 +190,7 @@ def make_copyright_test_functions( from summarycode.copyright_tallies import tally_persons def closure_test_function(*args, **kwargs): - detections = detect_copyrights(test_file) + detections = detect_copyrights(test_file, include_copyright_allrights=with_allrights) copyrights, holders, authors = Detection.split_values(detections) holders_summary = [] @@ -215,7 +217,12 @@ def closure_test_function(*args, **kwargs): expected_yaml = test.dumps() for wht in test.what: - setattr(test, wht, results.get(wht)) + # use the fact we are overriding attributes, leave copyrights as is + # and add allrights section. This shortcut needs a better solution. + if test.allrights and with_allrights and wht == 'copyrights': + setattr(test, 'allrights', results.get(wht)) + else: + setattr(test, wht, results.get(wht)) results_yaml = test.dumps() if regen: @@ -246,6 +253,7 @@ def build_tests( clazz, test_data_dir=test_env.test_data_dir, regen=REGEN_TEST_FIXTURES, + with_allrights=False, ): """ Dynamically build test methods from a sequence of CopyrightTest and attach @@ -263,6 +271,7 @@ def build_tests( index=i, test_data_dir=test_data_dir, regen=actual_regen, + with_allrights=with_allrights, ) # attach that method to our test class diff --git a/tests/cluecode/data/authors/author-config.rpath.yml b/tests/cluecode/data/authors/author-config.rpath.yml index 91ed9be1ac8..443ef93cc47 100644 --- a/tests/cluecode/data/authors/author-config.rpath.yml +++ b/tests/cluecode/data/authors/author-config.rpath.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright 1996-2006 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml b/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml index 110f6c71b15..f05d3fad3ab 100644 --- a/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml +++ b/tests/cluecode/data/authors/author_addr_c-addr_c.c.yml @@ -6,3 +6,6 @@ authors: authors_summary: - value: John Doe count: 1 +allrights: + - Copyright 1999 Cornell University. All rights reserved. + - Copyright 2000 Jon Doe. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml b/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml index 2f0bb97ab00..88cbcdf939f 100644 --- a/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml +++ b/tests/cluecode/data/authors/author_avinash-BitVector_py.py.yml @@ -7,3 +7,5 @@ authors: authors_summary: - value: Avinash Kak (kak@purdue.edu) count: 2 +allrights: + - (c) 2008 Avinash Kak. Python Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml b/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml index 2f0bb97ab00..88cbcdf939f 100644 --- a/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml +++ b/tests/cluecode/data/authors/author_avinash_kak-BitVector_py.py.yml @@ -7,3 +7,5 @@ authors: authors_summary: - value: Avinash Kak (kak@purdue.edu) count: 2 +allrights: + - (c) 2008 Avinash Kak. Python Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml b/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml index 4d26eb31d0b..f1e90c1a718 100644 --- a/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml +++ b/tests/cluecode/data/authors/author_complex_author-strtol_c.c.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: the University of California, Berkeley and its contributors count: 1 +allrights: + - Copyright (c) 1990 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml b/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml index a80c0f83d1e..a8e01e70547 100644 --- a/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml +++ b/tests/cluecode/data/authors/author_correct-detail_9_html.html.yml @@ -1,3 +1,5 @@ what: - authors - authors_summary +allrights: + - (c) Oss http://s.pudn.com/upload_log.asp?e \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_expat-expat_h.h.yml b/tests/cluecode/data/authors/author_expat-expat_h.h.yml index a80c0f83d1e..da78592f021 100644 --- a/tests/cluecode/data/authors/author_expat-expat_h.h.yml +++ b/tests/cluecode/data/authors/author_expat-expat_h.h.yml @@ -1,3 +1,5 @@ what: - authors - authors_summary +allrights: + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml b/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml index b5a3451c671..7d0e3433ec0 100644 --- a/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml +++ b/tests/cluecode/data/authors/author_gary-ProjectInfo_java.java.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Gary O'Neall count: 1 +allrights: + - Copyright (c) 2009 Source Auditor Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml b/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml index 0aa44ce7126..4dc927f0131 100644 --- a/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml +++ b/tests/cluecode/data/authors/author_in_java-MergeSort_java.java.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Scott Violet count: 1 +allrights: + - Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_in_java_tag-java.java.yml b/tests/cluecode/data/authors/author_in_java_tag-java.java.yml index 2f33496e92b..0a2f149a6bd 100644 --- a/tests/cluecode/data/authors/author_in_java_tag-java.java.yml +++ b/tests/cluecode/data/authors/author_in_java_tag-java.java.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Apple Banana Car count: 1 +allrights: + - Copyright (c) 2000-2007, Sample ABC Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml b/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml index a80c0f83d1e..0cf5a678989 100644 --- a/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml +++ b/tests/cluecode/data/authors/author_in_postcript-9__ps.ps.yml @@ -1,3 +1,5 @@ what: - authors - authors_summary +allrights: + - Copyright 1999 Radical Eye Software \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_none_c-c.c.yml b/tests/cluecode/data/authors/author_none_c-c.c.yml index a80c0f83d1e..82e2bc0218f 100644 --- a/tests/cluecode/data/authors/author_none_c-c.c.yml +++ b/tests/cluecode/data/authors/author_none_c-c.c.yml @@ -1,3 +1,5 @@ what: - authors - authors_summary +allrights: + - Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_none_sample_java-java.java.yml b/tests/cluecode/data/authors/author_none_sample_java-java.java.yml index 01a4c4d3109..37f2b7feb42 100644 --- a/tests/cluecode/data/authors/author_none_sample_java-java.java.yml +++ b/tests/cluecode/data/authors/author_none_sample_java-java.java.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: not attributable count: 1 +allrights: + - Copyright (c) 2005 Company \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_samplepy-py.py.yml b/tests/cluecode/data/authors/author_samplepy-py.py.yml index a80c0f83d1e..2560818c1ea 100644 --- a/tests/cluecode/data/authors/author_samplepy-py.py.yml +++ b/tests/cluecode/data/authors/author_samplepy-py.py.yml @@ -1,3 +1,5 @@ what: - authors - authors_summary +allrights: + - COPYRIGHT 2006 ABC ABC CONFIDENTIAL PROPRIETARY \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml b/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml index 54a5b04af3d..b80336b07a8 100644 --- a/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml +++ b/tests/cluecode/data/authors/author_stacktrace_cpp-stacktrace_cpp.cpp.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: faith@dict.org count: 1 +allrights: + - Copyright 2003, 2004 Rickard E. Faith (faith@dict.org) \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml b/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml index 2d7b8301f01..4052e5bd540 100644 --- a/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml +++ b/tests/cluecode/data/authors/author_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml @@ -9,3 +9,5 @@ authors_summary: count: 1 - value: Scott Violet count: 1 +allrights: + - Copyright 1997, 1998 by Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_uc-LICENSE.yml b/tests/cluecode/data/authors/author_uc-LICENSE.yml index 41e5fc74e88..fb02e745784 100644 --- a/tests/cluecode/data/authors/author_uc-LICENSE.yml +++ b/tests/cluecode/data/authors/author_uc-LICENSE.yml @@ -10,3 +10,8 @@ authors_summary: count: 2 - value: UC Berkeley and its contributors count: 1 +allrights: + - copyrighted by The Regents of the University of California. + - Copyright 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. + - copyright C 1988 by the Institute of Electrical and Electronics Engineers, Inc. + - copyright of UC Berkeley's Berkeley Software \ No newline at end of file diff --git a/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml b/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml index f4e3648a3a8..9d57c28f508 100644 --- a/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml +++ b/tests/cluecode/data/authors/author_var_route_c-var_route_c.c.yml @@ -12,3 +12,6 @@ authors_summary: count: 1 - value: Simon Leinen (simon@switch.ch) count: 1 +allrights: + - Copyright 1988, 1989 by Carnegie Mellon University + - Copyright 1989 TGV, Incorporated \ No newline at end of file diff --git a/tests/cluecode/data/authors/configure.yml b/tests/cluecode/data/authors/configure.yml index 91ed9be1ac8..90cd1a05e29 100644 --- a/tests/cluecode/data/authors/configure.yml +++ b/tests/cluecode/data/authors/configure.yml @@ -6,3 +6,9 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright (c) 2003 Free Software Foundation, Inc. + - Copyright (c) 2003 Free Software Foundation, Inc. + - Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. + - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + - Copyright (c) 2003 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/device_tree.c.yml b/tests/cluecode/data/authors/device_tree.c.yml index e01d2901a36..41222df5d85 100644 --- a/tests/cluecode/data/authors/device_tree.c.yml +++ b/tests/cluecode/data/authors/device_tree.c.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Jerone Young Hollis Blanchard count: 1 +allrights: + - Copyright 2008 IBM Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/authors/expat-ltmain.sh.yml b/tests/cluecode/data/authors/expat-ltmain.sh.yml index 91ed9be1ac8..f38eef2d101 100644 --- a/tests/cluecode/data/authors/expat-ltmain.sh.yml +++ b/tests/cluecode/data/authors/expat-ltmain.sh.yml @@ -6,3 +6,6 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. + - Copyright (c) 2005 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/fixed_bfin.h.yml b/tests/cluecode/data/authors/fixed_bfin.h.yml index 30a123c5076..2757d6a8a93 100644 --- a/tests/cluecode/data/authors/fixed_bfin.h.yml +++ b/tests/cluecode/data/authors/fixed_bfin.h.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Jean-Marc Valin count: 1 +allrights: + - Copyright (c) 2005 Analog Devices \ No newline at end of file diff --git a/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml b/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml index 8075cdf1787..f132b3b181f 100644 --- a/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml +++ b/tests/cluecode/data/authors/ibm_and_authors_are_detected_authors.txt.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Anthony Liguori count: 1 +allrights: + - Copyright IBM, Corp. 2007 \ No newline at end of file diff --git a/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml b/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml index ff70e613da5..26d34f636f9 100644 --- a/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml +++ b/tests/cluecode/data/authors/is_not_mixed_with_authors.txt.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Nikos Mavrogiannopoulos count: 1 +allrights: + - Copyright (c) 2000-2012 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/libtool.m4.yml b/tests/cluecode/data/authors/libtool.m4.yml index 91ed9be1ac8..7ee0b6aa0f7 100644 --- a/tests/cluecode/data/authors/libtool.m4.yml +++ b/tests/cluecode/data/authors/libtool.m4.yml @@ -6,3 +6,6 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. + - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/ltcf-c.sh.yml b/tests/cluecode/data/authors/ltcf-c.sh.yml index 91ed9be1ac8..57b057e2fd2 100644 --- a/tests/cluecode/data/authors/ltcf-c.sh.yml +++ b/tests/cluecode/data/authors/ltcf-c.sh.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright (c) 1996-2000, 2001 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/ltcf-cxx.sh.yml b/tests/cluecode/data/authors/ltcf-cxx.sh.yml index 91ed9be1ac8..fb2e2f115c2 100644 --- a/tests/cluecode/data/authors/ltcf-cxx.sh.yml +++ b/tests/cluecode/data/authors/ltcf-cxx.sh.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright (c) 1996-1999, 2000, 2001, 2003 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/ltmain.sh.yml b/tests/cluecode/data/authors/ltmain.sh.yml index 91ed9be1ac8..7cd4e071ee8 100644 --- a/tests/cluecode/data/authors/ltmain.sh.yml +++ b/tests/cluecode/data/authors/ltmain.sh.yml @@ -6,3 +6,6 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. + - Copyright (c) 2007 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/mcbsp.h.yml b/tests/cluecode/data/authors/mcbsp.h.yml index fcf8dd397ba..1863ad596bc 100644 --- a/tests/cluecode/data/authors/mcbsp.h.yml +++ b/tests/cluecode/data/authors/mcbsp.h.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Steve Johnson count: 1 +allrights: + - Copyright (c) 2002 RidgeRun, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/memory-input-stream.c.yml b/tests/cluecode/data/authors/memory-input-stream.c.yml index e456e1d64cc..2a4c96aa83f 100644 --- a/tests/cluecode/data/authors/memory-input-stream.c.yml +++ b/tests/cluecode/data/authors/memory-input-stream.c.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Tim Janik count: 1 +allrights: + - Copyright (c) 2007 Imendio AB \ No newline at end of file diff --git a/tests/cluecode/data/authors/strverscmp.c.yml b/tests/cluecode/data/authors/strverscmp.c.yml index fe8f9225795..545fade8e1b 100644 --- a/tests/cluecode/data/authors/strverscmp.c.yml +++ b/tests/cluecode/data/authors/strverscmp.c.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Jean-Francois Bignolles count: 1 +allrights: + - Copyright (c) 1997, 2002, 2005 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/strverscmp2.c.yml b/tests/cluecode/data/authors/strverscmp2.c.yml index fe8f9225795..5847e3bd56a 100644 --- a/tests/cluecode/data/authors/strverscmp2.c.yml +++ b/tests/cluecode/data/authors/strverscmp2.c.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: Jean-Francois Bignolles count: 1 +allrights: + - Copyright (c) 1997, 2000, 2002, 2004 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml b/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml index 91ed9be1ac8..e3a9f62957b 100644 --- a/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml +++ b/tests/cluecode/data/authors/vcdiff-ltmain.sh.yml @@ -6,3 +6,6 @@ authors: authors_summary: - value: Gordon Matzigkeit count: 1 +allrights: + - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + - Copyright (c) 2008 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/authors/wcstok.c.yml b/tests/cluecode/data/authors/wcstok.c.yml index 07ffe306409..644a815b5fc 100644 --- a/tests/cluecode/data/authors/wcstok.c.yml +++ b/tests/cluecode/data/authors/wcstok.c.yml @@ -6,3 +6,6 @@ authors: authors_summary: - value: Wes Peters count: 1 +allrights: + - Copyright (c) 1998 Softweyr LLC. All rights reserved. + - Copyright (c) 1988, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml b/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml index 26875e2af0c..23b0cc08c5e 100644 --- a/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml +++ b/tests/cluecode/data/authors/with_date_in_angle_brackets_authors.txt.yml @@ -6,3 +6,5 @@ authors: authors_summary: - value: bj@open-rnd.pl count: 1 +allrights: + - Copyright (c) 2013, GENIVI Alliance, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata0.yml b/tests/cluecode/data/copyright_fossology/testdata0.yml index 8cf5731c505..77567e1af38 100644 --- a/tests/cluecode/data/copyright_fossology/testdata0.yml +++ b/tests/cluecode/data/copyright_fossology/testdata0.yml @@ -14,3 +14,8 @@ holders: - Theo de Raadt authors: - Tatu Ylonen +allrights: + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland All rights reserved + - Copyright (c) 1999,2000 Markus Friedl. All rights reserved. + - Copyright (c) 1999 Aaron Campbell. All rights reserved. + - Copyright (c) 1999 Theo de Raadt. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata1.yml b/tests/cluecode/data/copyright_fossology/testdata1.yml index fad4bea8e49..6e827b24ce2 100644 --- a/tests/cluecode/data/copyright_fossology/testdata1.yml +++ b/tests/cluecode/data/copyright_fossology/testdata1.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2008, 2009 Matthew Hall and others holders: - Matthew Hall and others +allrights: + - Copyright (c) 2008, 2009 Matthew Hall and others. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata10.yml b/tests/cluecode/data/copyright_fossology/testdata10.yml index dc7ebec7cae..cac4bfde60b 100644 --- a/tests/cluecode/data/copyright_fossology/testdata10.yml +++ b/tests/cluecode/data/copyright_fossology/testdata10.yml @@ -6,3 +6,5 @@ copyrights: - (c) Copyright Microsoft Corporation holders: - Microsoft Corporation +allrights: + - (c) Copyright Microsoft Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata100.yml b/tests/cluecode/data/copyright_fossology/testdata100.yml index a633286b6f5..ca89fcf2bf7 100644 --- a/tests/cluecode/data/copyright_fossology/testdata100.yml +++ b/tests/cluecode/data/copyright_fossology/testdata100.yml @@ -20,3 +20,9 @@ authors: - Benjamin Drieu - Graham Wilson - Nico Golde and Hector Garcia +allrights: + - Copyright 1997 by Eric S. Raymond. + - copyrighted by Carl E. Harris, 1993 and 1995. + - copyright by Andrew Tridgell + - Copyright (c) 1996,1997 by George M. Sipe. + - Copyright (c) 1997 Doug Muth, Wescosville, Pennsylvania USA All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata109.yml b/tests/cluecode/data/copyright_fossology/testdata109.yml index 9e625e78fd8..c73540d28bf 100644 --- a/tests/cluecode/data/copyright_fossology/testdata109.yml +++ b/tests/cluecode/data/copyright_fossology/testdata109.yml @@ -15,3 +15,7 @@ authors: - Chris Fearnley - Ian Murdock - James Troup +allrights: + - Copyright (c) 1989-2006 Free Software Foundation. + - Copyright (c) 1995-1997 Chris Fearnley. + - Copyright (c) 1998-2006 James Troup. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata114.yml b/tests/cluecode/data/copyright_fossology/testdata114.yml index ff9f369f0ef..68fdf564a62 100644 --- a/tests/cluecode/data/copyright_fossology/testdata114.yml +++ b/tests/cluecode/data/copyright_fossology/testdata114.yml @@ -10,3 +10,6 @@ holders: - The NetBSD Foundation, Inc. authors: - the NetBSD Foundation, Inc. and its contributors +allrights: + - Copyright (c) 2000, 2001, 2006 Debian. + - Copyright (c) 1999 The NetBSD Foundation, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata115.yml b/tests/cluecode/data/copyright_fossology/testdata115.yml index ff9f369f0ef..68fdf564a62 100644 --- a/tests/cluecode/data/copyright_fossology/testdata115.yml +++ b/tests/cluecode/data/copyright_fossology/testdata115.yml @@ -10,3 +10,6 @@ holders: - The NetBSD Foundation, Inc. authors: - the NetBSD Foundation, Inc. and its contributors +allrights: + - Copyright (c) 2000, 2001, 2006 Debian. + - Copyright (c) 1999 The NetBSD Foundation, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata118.yml b/tests/cluecode/data/copyright_fossology/testdata118.yml index 86430175b65..554c04bd7f4 100644 --- a/tests/cluecode/data/copyright_fossology/testdata118.yml +++ b/tests/cluecode/data/copyright_fossology/testdata118.yml @@ -41,3 +41,21 @@ holders: authors: - Masayuki Hatta (mhatta) - artofcode LLC. http://artofcode.com +allrights: + - Copyright (c) Artifex Software Inc., All Rights Reserved. + - copyright Adobe Systems Incorporated + - Copyright (c) 1997-2002 Graeme W. Gill + - Copyright (c) 1999-2000 Image Power, Inc. + - Copyright (c) 1999-2000 The University of British Columbia + - Copyright (c) 2001-2003 Michael David Adams + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved + - copyright holder, Aladdin Enterprises of Menlo Park + - copyright by the Free Software Foundation + - copyright by M.I.T. + - Copyright property of CompuServe Incorporated. + - Copyright (c) 2004, 2006-2007 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 1998, 1999 Glenn Randers-Pehrson + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata119.yml b/tests/cluecode/data/copyright_fossology/testdata119.yml index 86430175b65..554c04bd7f4 100644 --- a/tests/cluecode/data/copyright_fossology/testdata119.yml +++ b/tests/cluecode/data/copyright_fossology/testdata119.yml @@ -41,3 +41,21 @@ holders: authors: - Masayuki Hatta (mhatta) - artofcode LLC. http://artofcode.com +allrights: + - Copyright (c) Artifex Software Inc., All Rights Reserved. + - copyright Adobe Systems Incorporated + - Copyright (c) 1997-2002 Graeme W. Gill + - Copyright (c) 1999-2000 Image Power, Inc. + - Copyright (c) 1999-2000 The University of British Columbia + - Copyright (c) 2001-2003 Michael David Adams + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved + - copyright holder, Aladdin Enterprises of Menlo Park + - copyright by the Free Software Foundation + - copyright by M.I.T. + - Copyright property of CompuServe Incorporated. + - Copyright (c) 2004, 2006-2007 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 1998, 1999 Glenn Randers-Pehrson + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata12.yml b/tests/cluecode/data/copyright_fossology/testdata12.yml index 1a35101b98e..5e63785b99b 100644 --- a/tests/cluecode/data/copyright_fossology/testdata12.yml +++ b/tests/cluecode/data/copyright_fossology/testdata12.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2005 DMTF. holders: - DMTF +allrights: + - Copyright (c) 2005 DMTF. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata120.yml b/tests/cluecode/data/copyright_fossology/testdata120.yml index 2100066b05e..5d793a89d99 100644 --- a/tests/cluecode/data/copyright_fossology/testdata120.yml +++ b/tests/cluecode/data/copyright_fossology/testdata120.yml @@ -20,3 +20,10 @@ authors: - Sebastian Kuzminsky - Gerrit Pape - Andres Salomon +allrights: + - Copyright (c) 2005-2008, Linus Torvalds and others. + - Copyright (c) 1995-1999, Cryptography Research, Inc. + - Copyright (c) 2003-2006, Davide Libenzi, Johannes E. Schindelin + - Copyright (c) 2005, Sebastian Kuzminsky + - (c) 2005-2006, Andres Salomon + - (c) 2005-2008, Gerrit Pape \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata121.yml b/tests/cluecode/data/copyright_fossology/testdata121.yml index 2100066b05e..5d793a89d99 100644 --- a/tests/cluecode/data/copyright_fossology/testdata121.yml +++ b/tests/cluecode/data/copyright_fossology/testdata121.yml @@ -20,3 +20,10 @@ authors: - Sebastian Kuzminsky - Gerrit Pape - Andres Salomon +allrights: + - Copyright (c) 2005-2008, Linus Torvalds and others. + - Copyright (c) 1995-1999, Cryptography Research, Inc. + - Copyright (c) 2003-2006, Davide Libenzi, Johannes E. Schindelin + - Copyright (c) 2005, Sebastian Kuzminsky + - (c) 2005-2006, Andres Salomon + - (c) 2005-2008, Gerrit Pape \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata122.yml b/tests/cluecode/data/copyright_fossology/testdata122.yml index 2100066b05e..5d793a89d99 100644 --- a/tests/cluecode/data/copyright_fossology/testdata122.yml +++ b/tests/cluecode/data/copyright_fossology/testdata122.yml @@ -20,3 +20,10 @@ authors: - Sebastian Kuzminsky - Gerrit Pape - Andres Salomon +allrights: + - Copyright (c) 2005-2008, Linus Torvalds and others. + - Copyright (c) 1995-1999, Cryptography Research, Inc. + - Copyright (c) 2003-2006, Davide Libenzi, Johannes E. Schindelin + - Copyright (c) 2005, Sebastian Kuzminsky + - (c) 2005-2006, Andres Salomon + - (c) 2005-2008, Gerrit Pape \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata123.yml b/tests/cluecode/data/copyright_fossology/testdata123.yml index 519dc39439c..46ac21abbd2 100644 --- a/tests/cluecode/data/copyright_fossology/testdata123.yml +++ b/tests/cluecode/data/copyright_fossology/testdata123.yml @@ -8,3 +8,6 @@ copyrights: holders: - Free Software Foundation, Inc. - James Troup +allrights: + - Copyright (c) 1998-2008 Free Software Foundation, Inc. + - Copyright (c) 1998-2006 James Troup. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata124.yml b/tests/cluecode/data/copyright_fossology/testdata124.yml index 519dc39439c..46ac21abbd2 100644 --- a/tests/cluecode/data/copyright_fossology/testdata124.yml +++ b/tests/cluecode/data/copyright_fossology/testdata124.yml @@ -8,3 +8,6 @@ copyrights: holders: - Free Software Foundation, Inc. - James Troup +allrights: + - Copyright (c) 1998-2008 Free Software Foundation, Inc. + - Copyright (c) 1998-2006 James Troup. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata126.yml b/tests/cluecode/data/copyright_fossology/testdata126.yml index 4f0454d003f..43ca2c95be1 100644 --- a/tests/cluecode/data/copyright_fossology/testdata126.yml +++ b/tests/cluecode/data/copyright_fossology/testdata126.yml @@ -24,3 +24,10 @@ authors: - James Clark (jjc@jclark.com) - Joergen Haegg (jh@axis.se) - the University of California, Berkeley +allrights: + - Copyright (c) 1989-2000 Free Software Foundation, Inc. + - copyrighted by MIT + - Copyright 1991 Massachusetts Institute of Technology + - Copyright (c) 1994-2000, 2001, 2002 Free Software Foundation, Inc. + - Copyright (c) 2000 Free Software Foundation, Inc. + - Copyright (c) 1986 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata127.yml b/tests/cluecode/data/copyright_fossology/testdata127.yml index 792fb7e8e54..7b1d5d46aae 100644 --- a/tests/cluecode/data/copyright_fossology/testdata127.yml +++ b/tests/cluecode/data/copyright_fossology/testdata127.yml @@ -9,3 +9,5 @@ holders: authors: - Masayuki Hatta (mhatta) - URW++ Design & Development GmbH Valek Filippov +allrights: + - Copyright (c) 2001- Valek Filippov, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata128.yml b/tests/cluecode/data/copyright_fossology/testdata128.yml index 86430175b65..554c04bd7f4 100644 --- a/tests/cluecode/data/copyright_fossology/testdata128.yml +++ b/tests/cluecode/data/copyright_fossology/testdata128.yml @@ -41,3 +41,21 @@ holders: authors: - Masayuki Hatta (mhatta) - artofcode LLC. http://artofcode.com +allrights: + - Copyright (c) Artifex Software Inc., All Rights Reserved. + - copyright Adobe Systems Incorporated + - Copyright (c) 1997-2002 Graeme W. Gill + - Copyright (c) 1999-2000 Image Power, Inc. + - Copyright (c) 1999-2000 The University of British Columbia + - Copyright (c) 2001-2003 Michael David Adams + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved + - copyright holder, Aladdin Enterprises of Menlo Park + - copyright by the Free Software Foundation + - copyright by M.I.T. + - Copyright property of CompuServe Incorporated. + - Copyright (c) 2004, 2006-2007 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 1998, 1999 Glenn Randers-Pehrson + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata132.yml b/tests/cluecode/data/copyright_fossology/testdata132.yml index 8047adfaa09..af82c43a9e5 100644 --- a/tests/cluecode/data/copyright_fossology/testdata132.yml +++ b/tests/cluecode/data/copyright_fossology/testdata132.yml @@ -8,3 +8,5 @@ holders: - Anthony Towns authors: - Anthony Towns +allrights: + - Copyright (c) 1999, Anthony Towns. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata133.yml b/tests/cluecode/data/copyright_fossology/testdata133.yml index 4c0c883c652..0d5748f4cb6 100644 --- a/tests/cluecode/data/copyright_fossology/testdata133.yml +++ b/tests/cluecode/data/copyright_fossology/testdata133.yml @@ -27,3 +27,14 @@ holders: authors: - Scott K. Ellis scott@debian.org - John Cristy +allrights: + - Copyright 1999-2004 ImageMagick Studio LLC + - copyright Pineapple USA Inc. + - Copyright 1999 E. I. du Pont de Nemours and Company + - Copyright (c) 2002 GraphicsMagick Group + - Copyright (c) 2000-2002, Ghostgum Software Pty Ltd. All rights reserved. + - Copyright (c) 2000 Markus Friedl. All rights reserved. + - Copyright 1999 - 2003 Bob Friesenhahn + - Copyright (c) 1985-1988 by Supoj Sutanthavibul + - Parts Copyright (c) 1989-2000 by Brian V. Smith + - Parts Copyright (c) 1991 by Paul King \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata135.yml b/tests/cluecode/data/copyright_fossology/testdata135.yml index 21ac71da923..e53b36bfd99 100644 --- a/tests/cluecode/data/copyright_fossology/testdata135.yml +++ b/tests/cluecode/data/copyright_fossology/testdata135.yml @@ -7,3 +7,5 @@ copyrights: project holders: - Miquel van Smoorenburg and the members pkg-sysvinit project +allrights: + - Copyright 1997-2005 Miquel van Smoorenburg and the members pkg-sysvinit project. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata136.yml b/tests/cluecode/data/copyright_fossology/testdata136.yml index 97612d3db96..ea60779bc29 100644 --- a/tests/cluecode/data/copyright_fossology/testdata136.yml +++ b/tests/cluecode/data/copyright_fossology/testdata136.yml @@ -8,3 +8,6 @@ copyrights: holders: - Free Software Foundation - Eazel, Inc +allrights: + - Copyright (c) 2000-2003 Free Software Foundation. + - Copyright (c) 2000, 2001 Eazel, Inc \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata138.yml b/tests/cluecode/data/copyright_fossology/testdata138.yml index 481709f34ba..e4db4fa8526 100644 --- a/tests/cluecode/data/copyright_fossology/testdata138.yml +++ b/tests/cluecode/data/copyright_fossology/testdata138.yml @@ -13,3 +13,6 @@ authors: - Noah Meyerhans - Alexey Kuznetsov - Sun Microsystems, Inc. +allrights: + - Copyright (c) 1989 The Regents of the University of California. All rights reserved. + - copyright Alexey Kuznetsov \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata139.yml b/tests/cluecode/data/copyright_fossology/testdata139.yml index 653da0150cc..07c9231306e 100644 --- a/tests/cluecode/data/copyright_fossology/testdata139.yml +++ b/tests/cluecode/data/copyright_fossology/testdata139.yml @@ -28,3 +28,14 @@ authors: - Jack Moffitt - Fernando Perez , Janko Hauser , Nathaniel Gray +allrights: + - Copyright (c) 2001, 2002, 2003, 2004 Fernando Perez + - Copyright (c) 2001 Janko Hauser and Nathaniel Gray + - Copyright (c) 2004 W.J. van der Laan + - Copyright (c) 2004-2006 Fernando Perez + - Copyright Gael Varoquaux + - Copyright (c) InQuant GmbH Stefan Eletzhofer + - Copyright (c) 2001 Bill Bumgarner + - Copyright (c) 2001 Python Software Foundation, www.python.org + - Copyright (c) 2005 Jorgen Stenarson + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata14.yml b/tests/cluecode/data/copyright_fossology/testdata14.yml index 6debcc4436f..410fea114df 100644 --- a/tests/cluecode/data/copyright_fossology/testdata14.yml +++ b/tests/cluecode/data/copyright_fossology/testdata14.yml @@ -8,3 +8,6 @@ copyrights: holders: - Trolltech ASA, Norway - trolltech.html Trolltech +allrights: + - Copyright (c) 1999-2006 Trolltech ASA, Norway. + - Copyright (c) 2006 trolltech.html Trolltech \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata15.yml b/tests/cluecode/data/copyright_fossology/testdata15.yml index 7dba1654fac..cf7c3e828f2 100644 --- a/tests/cluecode/data/copyright_fossology/testdata15.yml +++ b/tests/cluecode/data/copyright_fossology/testdata15.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2009 The Apache Software Foundation holders: - The Apache Software Foundation +allrights: + - Copyright 2009 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata16.yml b/tests/cluecode/data/copyright_fossology/testdata16.yml index d9eb8170756..42ca0f5f315 100644 --- a/tests/cluecode/data/copyright_fossology/testdata16.yml +++ b/tests/cluecode/data/copyright_fossology/testdata16.yml @@ -8,3 +8,6 @@ copyrights: holders: - The Open Group - Digital Equipment Corporation, Maynard, Massachusetts +allrights: + - Copyright 1987, 1998 The Open Group + - Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata17.yml b/tests/cluecode/data/copyright_fossology/testdata17.yml index a608bda71dd..c4665e19211 100644 --- a/tests/cluecode/data/copyright_fossology/testdata17.yml +++ b/tests/cluecode/data/copyright_fossology/testdata17.yml @@ -9,3 +9,6 @@ copyrights: holders: - Free Software Foundation, Inc. - Sun Microsystems, Inc. +allrights: + - Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + - Copyright 2005 Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata18.yml b/tests/cluecode/data/copyright_fossology/testdata18.yml index 3d619ffd0ae..236041b2e4b 100644 --- a/tests/cluecode/data/copyright_fossology/testdata18.yml +++ b/tests/cluecode/data/copyright_fossology/testdata18.yml @@ -12,3 +12,8 @@ holders: - Const Kaplinsky - Tridia Corporation - AT&T Laboratories Cambridge +allrights: + - Copyright (c) 2002 Tim Jansen. All Rights Reserved. + - Copyright (c) 2000, 2001 Const Kaplinsky. All Rights Reserved. + - Copyright (c) 2000 Tridia Corporation. All Rights Reserved. + - Copyright (c) 1999 AT&T Laboratories Cambridge. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata20.yml b/tests/cluecode/data/copyright_fossology/testdata20.yml index 4da8ebaa749..27707946c4d 100644 --- a/tests/cluecode/data/copyright_fossology/testdata20.yml +++ b/tests/cluecode/data/copyright_fossology/testdata20.yml @@ -10,3 +10,6 @@ holders: - Akihiro MOTOKI authors: - Akihiro MOTOKI +allrights: + - Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) + - Copyright (c) 2003 Akihiro MOTOKI all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata22.yml b/tests/cluecode/data/copyright_fossology/testdata22.yml index e7a1643666a..d19914f8097 100644 --- a/tests/cluecode/data/copyright_fossology/testdata22.yml +++ b/tests/cluecode/data/copyright_fossology/testdata22.yml @@ -6,3 +6,5 @@ copyrights: - Portions created by the Initial Developer are Copyright (c) 1998-1999 the Initial Developer holders: - the Initial Developer +allrights: + - Portions created by the Initial Developer are Copyright (c) 1998-1999 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata26.yml b/tests/cluecode/data/copyright_fossology/testdata26.yml index 6f87062700a..75d8a68056c 100644 --- a/tests/cluecode/data/copyright_fossology/testdata26.yml +++ b/tests/cluecode/data/copyright_fossology/testdata26.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 1996-2000, 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg holders: - David Turner, Robert Wilhelm, and Werner Lemberg +allrights: + - Copyright 1996-2000, 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata27.yml b/tests/cluecode/data/copyright_fossology/testdata27.yml index b550b430f25..8438603cf7e 100644 --- a/tests/cluecode/data/copyright_fossology/testdata27.yml +++ b/tests/cluecode/data/copyright_fossology/testdata27.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2001-2008 Apache Software Foundation holders: - Apache Software Foundation +allrights: + - Copyright (c) 2001-2008 Apache Software Foundation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata29.yml b/tests/cluecode/data/copyright_fossology/testdata29.yml index 92f7b28182a..29a1f71e92f 100644 --- a/tests/cluecode/data/copyright_fossology/testdata29.yml +++ b/tests/cluecode/data/copyright_fossology/testdata29.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2001 Sun Microsystems, Inc. holders: - Sun Microsystems, Inc. +allrights: + - Copyright 2001 Sun Microsystems, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata33.yml b/tests/cluecode/data/copyright_fossology/testdata33.yml index fc554887af1..12df9753e52 100644 --- a/tests/cluecode/data/copyright_fossology/testdata33.yml +++ b/tests/cluecode/data/copyright_fossology/testdata33.yml @@ -8,3 +8,6 @@ copyrights: holders: - Adobe Systems Incorporated - Adobe Systems Incorporated +allrights: + - Copyright 1999 Adobe Systems Incorporated. All Rights Reserved. + - Copyright (c) 1999 Adobe Systems Incorporated. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata35.yml b/tests/cluecode/data/copyright_fossology/testdata35.yml index 18c62aaa77d..0ae3200c52c 100644 --- a/tests/cluecode/data/copyright_fossology/testdata35.yml +++ b/tests/cluecode/data/copyright_fossology/testdata35.yml @@ -67,3 +67,31 @@ authors: - Philip Hazel - Philip Hazel - Adam Twiss (adam@zeus.co.uk) +allrights: + - Copyright (c) 1996-1997 Cisco Systems, Inc. + - Copyright (c) Ian F. Darwin, 1987. + - copyright 1992 by Eric Haines, erich@eye.com + - Copyright (c) 1995, Board of Trustees of the University of Illinois + - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc. + - Copyright (c) 1993, 1994 by Carnegie Mellon University + - Copyright (c) 1991 Bell Communications Research, Inc. + - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved. + - Copyright (c) 1991 Bell Communications Research, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved. + - copyright RSA Data Security, Inc. + - Copyright (c) 1990-2, RSA Data Security, Inc. + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England. + - Copyright (c) Zeus Technology Limited 1996. + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper + - copyright of Pete Harlow \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata36.yml b/tests/cluecode/data/copyright_fossology/testdata36.yml index 18c62aaa77d..0ae3200c52c 100644 --- a/tests/cluecode/data/copyright_fossology/testdata36.yml +++ b/tests/cluecode/data/copyright_fossology/testdata36.yml @@ -67,3 +67,31 @@ authors: - Philip Hazel - Philip Hazel - Adam Twiss (adam@zeus.co.uk) +allrights: + - Copyright (c) 1996-1997 Cisco Systems, Inc. + - Copyright (c) Ian F. Darwin, 1987. + - copyright 1992 by Eric Haines, erich@eye.com + - Copyright (c) 1995, Board of Trustees of the University of Illinois + - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc. + - Copyright (c) 1993, 1994 by Carnegie Mellon University + - Copyright (c) 1991 Bell Communications Research, Inc. + - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved. + - Copyright (c) 1991 Bell Communications Research, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved. + - copyright RSA Data Security, Inc. + - Copyright (c) 1990-2, RSA Data Security, Inc. + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England. + - Copyright (c) Zeus Technology Limited 1996. + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper + - copyright of Pete Harlow \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata37.yml b/tests/cluecode/data/copyright_fossology/testdata37.yml index 18c62aaa77d..0ae3200c52c 100644 --- a/tests/cluecode/data/copyright_fossology/testdata37.yml +++ b/tests/cluecode/data/copyright_fossology/testdata37.yml @@ -67,3 +67,31 @@ authors: - Philip Hazel - Philip Hazel - Adam Twiss (adam@zeus.co.uk) +allrights: + - Copyright (c) 1996-1997 Cisco Systems, Inc. + - Copyright (c) Ian F. Darwin, 1987. + - copyright 1992 by Eric Haines, erich@eye.com + - Copyright (c) 1995, Board of Trustees of the University of Illinois + - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc. + - Copyright (c) 1993, 1994 by Carnegie Mellon University + - Copyright (c) 1991 Bell Communications Research, Inc. + - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved. + - Copyright (c) 1991 Bell Communications Research, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved. + - copyright RSA Data Security, Inc. + - Copyright (c) 1990-2, RSA Data Security, Inc. + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England. + - Copyright (c) Zeus Technology Limited 1996. + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper + - copyright of Pete Harlow \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata39.yml b/tests/cluecode/data/copyright_fossology/testdata39.yml index 18c62aaa77d..0ae3200c52c 100644 --- a/tests/cluecode/data/copyright_fossology/testdata39.yml +++ b/tests/cluecode/data/copyright_fossology/testdata39.yml @@ -67,3 +67,31 @@ authors: - Philip Hazel - Philip Hazel - Adam Twiss (adam@zeus.co.uk) +allrights: + - Copyright (c) 1996-1997 Cisco Systems, Inc. + - Copyright (c) Ian F. Darwin, 1987. + - copyright 1992 by Eric Haines, erich@eye.com + - Copyright (c) 1995, Board of Trustees of the University of Illinois + - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc. + - Copyright (c) 1993, 1994 by Carnegie Mellon University + - Copyright (c) 1991 Bell Communications Research, Inc. + - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved. + - Copyright (c) 1991 Bell Communications Research, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved. + - copyright RSA Data Security, Inc. + - Copyright (c) 1990-2, RSA Data Security, Inc. + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England. + - Copyright (c) Zeus Technology Limited 1996. + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper + - copyright of Pete Harlow \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata4.yml b/tests/cluecode/data/copyright_fossology/testdata4.yml index 10d1fac5ec5..a140a6ce02a 100644 --- a/tests/cluecode/data/copyright_fossology/testdata4.yml +++ b/tests/cluecode/data/copyright_fossology/testdata4.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 1990-1999 Info-ZIP. holders: - Info-ZIP +allrights: + - Copyright (c) 1990-1999 Info-ZIP. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata40.yml b/tests/cluecode/data/copyright_fossology/testdata40.yml index 7567688edd2..3f1da189a08 100644 --- a/tests/cluecode/data/copyright_fossology/testdata40.yml +++ b/tests/cluecode/data/copyright_fossology/testdata40.yml @@ -9,3 +9,5 @@ holders: authors: - Marc Haber - Adel I. Mirzazhanov +allrights: + - Copyright (c) 1999, 2000, 2001 Adel I. Mirzazhanov. All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata41.yml b/tests/cluecode/data/copyright_fossology/testdata41.yml index 126c0ab818e..9d0d9503ed5 100644 --- a/tests/cluecode/data/copyright_fossology/testdata41.yml +++ b/tests/cluecode/data/copyright_fossology/testdata41.yml @@ -8,3 +8,5 @@ holders: - Jason Gunthorpe and others authors: - APT Development Team +allrights: + - copyright 1997, 1998, 1999 Jason Gunthorpe and others. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata43.yml b/tests/cluecode/data/copyright_fossology/testdata43.yml index 126c0ab818e..9d0d9503ed5 100644 --- a/tests/cluecode/data/copyright_fossology/testdata43.yml +++ b/tests/cluecode/data/copyright_fossology/testdata43.yml @@ -8,3 +8,5 @@ holders: - Jason Gunthorpe and others authors: - APT Development Team +allrights: + - copyright 1997, 1998, 1999 Jason Gunthorpe and others. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata44.yml b/tests/cluecode/data/copyright_fossology/testdata44.yml index 80923b2c93c..1e69519009e 100644 --- a/tests/cluecode/data/copyright_fossology/testdata44.yml +++ b/tests/cluecode/data/copyright_fossology/testdata44.yml @@ -11,3 +11,6 @@ holders: authors: - Ian Murdock and Bruce Perens - Bruce Perens +allrights: + - copyrighted by the Free Software Foundation, Inc. + - Copyright (c) 1995-2008 Software in the Public Interest. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata46.yml b/tests/cluecode/data/copyright_fossology/testdata46.yml index 76689d89e0b..65f70b92113 100644 --- a/tests/cluecode/data/copyright_fossology/testdata46.yml +++ b/tests/cluecode/data/copyright_fossology/testdata46.yml @@ -51,3 +51,24 @@ authors: - the University of California, Berkeley and its contributors - Richard Verhoeven - chet@po.cwru.edu +allrights: + - Copyright (c) 1989-2006 Free Software Foundation, Inc. + - Copyright FSF + - Copyright 1995-2005 by Chester Ramey. + - Copyright (c) 1988-2005 Free Software Foundation, Inc. + - Copyright (c) 1993-1994 O'Reilly and Associates, Inc. + - Copyright (c) 1998, 1999, 2001 Gary V. Vaughan + - Copyright (c) 1991 Simon J. Gerraty + - Kaz Kylheku Copyright 1999 + - Copyright (c) Chris Robertson + - copyright chris ulrich + - Copyright (c) 1994 Winning Strategies, Inc. All rights reserved. + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 1988-2004 Free Software Foundation, Inc. + - Copyright (c) 1988-2005 Free Software Foundation, Inc. + - Copyright (c) 1988-2005 Free Software Foundation, Inc. + - Copyright (c) 1988-2002 Free Software Foundation, Inc. + - Copyright (c) 1983, 1990, 1993 The Regents of the University of California. All rights reserved. + - Portions Copyright (c) 1993 by Digital Equipment Corporation. + - Copyright (c) 1988 Free Software Foundation, Inc. + - Copyright (c) 1999, 2002 Aladdin Enterprises. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata47.yml b/tests/cluecode/data/copyright_fossology/testdata47.yml index 2970a0e6a5f..ddab2ef8711 100644 --- a/tests/cluecode/data/copyright_fossology/testdata47.yml +++ b/tests/cluecode/data/copyright_fossology/testdata47.yml @@ -9,3 +9,5 @@ holders: authors: - Bdale Garbee - Internet Software Consortium +allrights: + - Copyright (c) 1996-2001 Internet Software Consortium. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata48.yml b/tests/cluecode/data/copyright_fossology/testdata48.yml index 2970a0e6a5f..ddab2ef8711 100644 --- a/tests/cluecode/data/copyright_fossology/testdata48.yml +++ b/tests/cluecode/data/copyright_fossology/testdata48.yml @@ -9,3 +9,5 @@ holders: authors: - Bdale Garbee - Internet Software Consortium +allrights: + - Copyright (c) 1996-2001 Internet Software Consortium. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata49.yml b/tests/cluecode/data/copyright_fossology/testdata49.yml index 2970a0e6a5f..ddab2ef8711 100644 --- a/tests/cluecode/data/copyright_fossology/testdata49.yml +++ b/tests/cluecode/data/copyright_fossology/testdata49.yml @@ -9,3 +9,5 @@ holders: authors: - Bdale Garbee - Internet Software Consortium +allrights: + - Copyright (c) 1996-2001 Internet Software Consortium. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata5.yml b/tests/cluecode/data/copyright_fossology/testdata5.yml index a545a395bef..980f07ce369 100644 --- a/tests/cluecode/data/copyright_fossology/testdata5.yml +++ b/tests/cluecode/data/copyright_fossology/testdata5.yml @@ -6,3 +6,5 @@ copyrights: - (c) Copyright 2000 authors: - Antoine P. Petitet +allrights: + - (c) Copyright 2000 All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata52.yml b/tests/cluecode/data/copyright_fossology/testdata52.yml index 52e26d034b5..31160eaa364 100644 --- a/tests/cluecode/data/copyright_fossology/testdata52.yml +++ b/tests/cluecode/data/copyright_fossology/testdata52.yml @@ -9,3 +9,5 @@ holders: authors: - Loic Prylli - Robert Luberda +allrights: + - Copyright (c) 1980, 1993 The Regents of the University of California. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata53.yml b/tests/cluecode/data/copyright_fossology/testdata53.yml index 79d3547442c..06bfe9f9460 100644 --- a/tests/cluecode/data/copyright_fossology/testdata53.yml +++ b/tests/cluecode/data/copyright_fossology/testdata53.yml @@ -11,3 +11,5 @@ authors: - Ian Murdock - Charles Briscoe-Smith - Graham Wilson +allrights: + - Copyright (c) The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata56.yml b/tests/cluecode/data/copyright_fossology/testdata56.yml index 8e21f1fcdb6..95361ceab31 100644 --- a/tests/cluecode/data/copyright_fossology/testdata56.yml +++ b/tests/cluecode/data/copyright_fossology/testdata56.yml @@ -14,3 +14,7 @@ authors: - Philippe Troin - Anibal Monsalve Salazar - Julian Seward +allrights: + - Copyright (c) 1999, 2000, 2001, 2002 Philippe Troin + - Copyright (c) 2004-2007 Anibal Monsalve Salazar. + - copyright (c) 1996-2007 Julian R Seward. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata58.yml b/tests/cluecode/data/copyright_fossology/testdata58.yml index c691696f762..c596227229f 100644 --- a/tests/cluecode/data/copyright_fossology/testdata58.yml +++ b/tests/cluecode/data/copyright_fossology/testdata58.yml @@ -10,3 +10,6 @@ holders: - Netscape Communications Corporation authors: - Fumitoshi UKAI +allrights: + - Copyright (c) 2001-2003 Fumitoshi UKAI + - Copyright (c) 1994-2000 Netscape Communications Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata61.yml b/tests/cluecode/data/copyright_fossology/testdata61.yml index 9a23ff93623..b588a427550 100644 --- a/tests/cluecode/data/copyright_fossology/testdata61.yml +++ b/tests/cluecode/data/copyright_fossology/testdata61.yml @@ -45,3 +45,23 @@ holders: authors: - Michael Stone - Michael Stone +allrights: + - Copyright (c) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + - Copyright (c) 1990, 1993, 1994 The Regents of the University of California. All rights reserved. + - Copyright (c) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 1999-2006 Free Software Foundation, Inc. + - Copyright (c) 1997, 1998, 1999 Colin Plumb. + - Copyright (c) 2005, 2006 Free Software Foundation, Inc. + - Copyright (c) 1996-1999 by Internet Software Consortium. + - Copyright (c) 2004, 2006, 2007 Free Software Foundation, Inc. + - Copyright (c) 1997-2007 Free Software Foundation, Inc. + - Copyright (c) 1984 David M. Ihnat + - Copyright (c) 1996-2007 Free Software Foundation, Inc. + - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin + - Copyright (c) 1997-2005 Free Software Foundation, Inc. + - Copyright (c) 1984 David M. Ihnat + - Copyright (c) 1999-2007 Free Software Foundation, Inc. + - Copyright (c) 1997, 1998, 1999 Colin Plumb. + - Copyright 1994-1996, 2000-2008 Free Software Foundation, Inc. + - Copyright (c) 1984-2008 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata7.yml b/tests/cluecode/data/copyright_fossology/testdata7.yml index c5029692da0..572fd702ae9 100644 --- a/tests/cluecode/data/copyright_fossology/testdata7.yml +++ b/tests/cluecode/data/copyright_fossology/testdata7.yml @@ -12,3 +12,8 @@ holders: - Apple Inc. - Cameron Zwarich - Maks Orlovich +allrights: + - Copyright (c) 1999-2000 Harri Porten (porten@kde.org) + - Copyright (c) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. + - Copyright (c) 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca) + - Copyright (c) 2007 Maks Orlovich \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata72.yml b/tests/cluecode/data/copyright_fossology/testdata72.yml index ff9f369f0ef..68fdf564a62 100644 --- a/tests/cluecode/data/copyright_fossology/testdata72.yml +++ b/tests/cluecode/data/copyright_fossology/testdata72.yml @@ -10,3 +10,6 @@ holders: - The NetBSD Foundation, Inc. authors: - the NetBSD Foundation, Inc. and its contributors +allrights: + - Copyright (c) 2000, 2001, 2006 Debian. + - Copyright (c) 1999 The NetBSD Foundation, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata73.yml b/tests/cluecode/data/copyright_fossology/testdata73.yml index bd4cdba5846..80b2bee35a6 100644 --- a/tests/cluecode/data/copyright_fossology/testdata73.yml +++ b/tests/cluecode/data/copyright_fossology/testdata73.yml @@ -19,3 +19,10 @@ holders: authors: - Sean M. Burke - Javier Fernandez-Sanguino +allrights: + - Copyright 1988,1990,1993,1994 by Paul Vixie All rights reserved + - Copyright 1994 Ian Jackson + - Copyright (c) 1994 Ian Jackson + - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Steve Greenland + - Copyright 2001 Sean M. Burke + - Copyright 2006 Javier Fernandez-Sanguino \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata75.yml b/tests/cluecode/data/copyright_fossology/testdata75.yml index 1adb6164c73..910bf0b229e 100644 --- a/tests/cluecode/data/copyright_fossology/testdata75.yml +++ b/tests/cluecode/data/copyright_fossology/testdata75.yml @@ -15,3 +15,8 @@ holders: authors: - Mark W. Eichin eichin@kitten.gen.ma.us - Gerrit Pape +allrights: + - Copyright (c) 1989-1994 The Regents of the University of California. All rights reserved. + - Copyright (c) 1997 Christos Zoulas. All rights reserved. + - Copyright (c) 1997-2005 Herbert Xu All rights reserved. + - Copyright (c) 1992 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata76.yml b/tests/cluecode/data/copyright_fossology/testdata76.yml index e3db51d357c..2410002107e 100644 --- a/tests/cluecode/data/copyright_fossology/testdata76.yml +++ b/tests/cluecode/data/copyright_fossology/testdata76.yml @@ -12,3 +12,7 @@ holders: - The President and Fellows of Harvard University authors: - Clint Adams +allrights: + - Copyright (c) 1990,2007 Oracle. All rights reserved. + - Copyright (c) 1990, 1993, 1994, 1995 The Regents of the University of California. All rights reserved. + - Copyright (c) 1995, 1996 The President and Fellows of Harvard University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata77.yml b/tests/cluecode/data/copyright_fossology/testdata77.yml index 35587ee8368..1944f80d6e4 100644 --- a/tests/cluecode/data/copyright_fossology/testdata77.yml +++ b/tests/cluecode/data/copyright_fossology/testdata77.yml @@ -11,3 +11,6 @@ holders: authors: - sean finney - sean finney +allrights: + - copyright (c) 2005 sean finney + - copyright (c) 2000-2004 Ola Lundqvist. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata89.yml b/tests/cluecode/data/copyright_fossology/testdata89.yml index df281f93eb0..f12b690e62b 100644 --- a/tests/cluecode/data/copyright_fossology/testdata89.yml +++ b/tests/cluecode/data/copyright_fossology/testdata89.yml @@ -8,3 +8,5 @@ holders: - Thomas E. Dickey authors: - Thomas E. Dickey +allrights: + - Copyright 1994-2001,2002 by Thomas E. Dickey All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata90.yml b/tests/cluecode/data/copyright_fossology/testdata90.yml index a8703d75c5a..fe335596baa 100644 --- a/tests/cluecode/data/copyright_fossology/testdata90.yml +++ b/tests/cluecode/data/copyright_fossology/testdata90.yml @@ -13,3 +13,7 @@ holders: authors: - Barak Pearlmutter - David Kreil +allrights: + - Copyright (c) 2002 Leon Bottou and Yann Le Cun. + - Copyright (c) 2001 AT&T + - Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata92.yml b/tests/cluecode/data/copyright_fossology/testdata92.yml index 2970a0e6a5f..ddab2ef8711 100644 --- a/tests/cluecode/data/copyright_fossology/testdata92.yml +++ b/tests/cluecode/data/copyright_fossology/testdata92.yml @@ -9,3 +9,5 @@ holders: authors: - Bdale Garbee - Internet Software Consortium +allrights: + - Copyright (c) 1996-2001 Internet Software Consortium. \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata93.yml b/tests/cluecode/data/copyright_fossology/testdata93.yml index 7c3be9eabd4..f97032e9372 100644 --- a/tests/cluecode/data/copyright_fossology/testdata93.yml +++ b/tests/cluecode/data/copyright_fossology/testdata93.yml @@ -31,3 +31,16 @@ holders: authors: - Daniel Leidert - Mark Johnson +allrights: + - Copyright (c) 1999-2007 Norman Walsh. + - Copyright (c) 2003 Jiri Kosek. + - Copyright (c) 2004-2007 Steve Ball. + - Copyright (c) 2005-2007 The DocBook Project. + - Copyright (c) 2005 Michal Molhanec. + - Copyright (c) 2000 Bob Clary. + - Copyright (c) 2001 The Netscape Corporation. + - Copyright (c) 2003 The Netscape Corporation. + - Copyright (c) 1997 Michael Bostock (Netscape Communications). + - Copyright (c) 2001 Bob Clary (Netscape Communications). + - Copyright (c) 2001 Seth Dillingham (Macrobyte Resources). + - Copyright (c) 2002 Mark Filanowicz (Amdahl IT Services). \ No newline at end of file diff --git a/tests/cluecode/data/copyright_fossology/testdata97.yml b/tests/cluecode/data/copyright_fossology/testdata97.yml index f77443a6c6a..d8bce1ed771 100644 --- a/tests/cluecode/data/copyright_fossology/testdata97.yml +++ b/tests/cluecode/data/copyright_fossology/testdata97.yml @@ -14,3 +14,8 @@ holders: - Free Software Foundation, Inc. authors: - Matt Kraai +allrights: + - Copyright (c) 1993, 1994 Andrew Moore, Talke Studio. + - Copyright (c) 2006, 2007 Antonio Diaz Diaz. + - Copyright (c) 1997-2007 James Troup. + - Copyright (c) 1993, 2006, 2007 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml b/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml index f0a2ce85a2c..37f52c1be9d 100644 --- a/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml +++ b/tests/cluecode/data/copyrights/AliasDotCom_Website.html.yml @@ -5,3 +5,5 @@ copyrights: - Copyright (c) AliasDotCom Ltd. holders: - AliasDotCom Ltd. +allrights: + - Copyright (c) AliasDotCom Ltd. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml b/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml index 5ed016a09e3..083de61630c 100644 --- a/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml +++ b/tests/cluecode/data/copyrights/AssemblyInfoCommon.cs.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Microsoft count: 2 +allrights: + - Copyright (c) Microsoft Corporation. All rights reserved. + - Copyright (c) Microsoft Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml b/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml index aff285c3c14..38c56bf146b 100644 --- a/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml +++ b/tests/cluecode/data/copyrights/COPYRIGHT_madwifi-COPYRIGHT_madwifi.madwifi.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/README-README.yml b/tests/cluecode/data/copyrights/README-README.yml index 76555a8c37a..e9050a0b8f4 100644 --- a/tests/cluecode/data/copyrights/README-README.yml +++ b/tests/cluecode/data/copyrights/README-README.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jouni Malinen and contributors count: 1 +allrights: + - Copyright (c) 2002-2006, Jouni Malinen and contributors All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml b/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml index cc1a53e4ebe..9a64741c1f9 100644 --- a/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml +++ b/tests/cluecode/data/copyrights/abc_loss_of_holder_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: abc count: 1 +allrights: + - copyright abc 2001 all rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/acme_c-c.c.yml b/tests/cluecode/data/copyrights/acme_c-c.c.yml index d0b0712430b..0b7383b2dd2 100644 --- a/tests/cluecode/data/copyrights/acme_c-c.c.yml +++ b/tests/cluecode/data/copyrights/acme_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: ACME, Inc. count: 1 +allrights: + - Copyright (c) 2000 ACME, Inc., All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml b/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml index 6ae59215687..b6bed81464d 100644 --- a/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml +++ b/tests/cluecode/data/copyrights/activefieldattribute_cs-ActiveFieldAttribute_cs.cs.yml @@ -10,3 +10,5 @@ holders_summary: - value: Thomas Hansen count: 1 notes: this is not correct and Web Applications should not be returned at all +allrights: + - Copyright 2009 - Thomas Hansen thomas@ra-ajax.org. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml b/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml index df2647ced30..28cf4718e5c 100644 --- a/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml +++ b/tests/cluecode/data/copyrights/addr_c-addr_c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Jon Doe count: 1 +allrights: + - Copyright 1999 Cornell University. All rights reserved. + - Copyright 2000 Jon Doe. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/adobe-Adobe.yml b/tests/cluecode/data/copyrights/adobe-Adobe.yml index ca8e9bddbb7..8736e19784f 100644 --- a/tests/cluecode/data/copyrights/adobe-Adobe.yml +++ b/tests/cluecode/data/copyrights/adobe-Adobe.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Adobe Systems Incorporated count: 1 +allrights: + - Copyright (c) 2006 Adobe Systems Incorporated. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml b/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml index 120133ae5fe..b1f23c6cdca 100644 --- a/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml +++ b/tests/cluecode/data/copyrights/adobe_flashplugin-adobe_flashplugin.label.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Takuo KITAME, Bart Martens, and Canonical, LTD count: 1 +allrights: + - Copyright (c) 1996 - 2008. Adobe Systems Incorporated. All Rights Reserved. + - (c) 2001-2009, Takuo KITAME, Bart Martens, and Canonical, LTD \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/adobe_license.txt.yml b/tests/cluecode/data/copyrights/adobe_license.txt.yml index 3ca052af299..f08bb0d5a0d 100644 --- a/tests/cluecode/data/copyrights/adobe_license.txt.yml +++ b/tests/cluecode/data/copyrights/adobe_license.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Adobe Systems Incorporated count: 1 +allrights: + - Copyright 1990-2009 Adobe Systems Incorporated. Copyright All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/affiliates.txt.yml b/tests/cluecode/data/copyrights/affiliates.txt.yml index ec55d160234..db9b6515642 100644 --- a/tests/cluecode/data/copyrights/affiliates.txt.yml +++ b/tests/cluecode/data/copyrights/affiliates.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: HERE Global B.V. and its affiliate(s) count: 1 +allrights: + - Copyright (c) 2016-2018 HERE Global B.V. and its affiliate(s). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml b/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml index 44fd30660bf..13cf9f8c470 100644 --- a/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml +++ b/tests/cluecode/data/copyrights/afl_v3_0-AFL_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Lawrence Rosen count: 1 +allrights: + - Copyright (c) 2005 Lawrence Rosen. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml b/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml index 57aad5b6437..8abcc96bbb4 100644 --- a/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml +++ b/tests/cluecode/data/copyrights/aladdin_free_public_license-Aladdin_Free_Public_License.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Aladdin Enterprises, Menlo Park, California, U.S.A. count: 1 +allrights: + - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, Menlo Park, California, U.S.A. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/alt.txt.yml b/tests/cluecode/data/copyrights/alt.txt.yml index f2f8440d127..1fc26467f83 100644 --- a/tests/cluecode/data/copyrights/alt.txt.yml +++ b/tests/cluecode/data/copyrights/alt.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Alt Three Services Limited count: 1 +allrights: + - Copyright (c) 2015-2018 Alt Three Services Limited. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml b/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml index c0832d78ba4..cea3d7e7ad0 100644 --- a/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml +++ b/tests/cluecode/data/copyrights/and_authors_mixed.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1998 Softweyr LLC. All rights reserved. + - Copyright (c) 1988, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/and_the_contributors.txt.yml b/tests/cluecode/data/copyrights/and_the_contributors.txt.yml index 0ed8c253045..bdf232d0e21 100644 --- a/tests/cluecode/data/copyrights/and_the_contributors.txt.yml +++ b/tests/cluecode/data/copyrights/and_the_contributors.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: AstaXie and The Contributors count: 1 +allrights: + - Copyright (c) 2012, AstaXie and The Contributors All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/andre_darcy-c.c.yml b/tests/cluecode/data/copyrights/andre_darcy-c.c.yml index f2586a98f00..dca047ee56f 100644 --- a/tests/cluecode/data/copyrights/andre_darcy-c.c.yml +++ b/tests/cluecode/data/copyrights/andre_darcy-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Pascal Andre count: 1 +allrights: + - Copyright (c) 1995, Pascal Andre (andre@via.ecp.fr). + - copyright 1997, 1998, 1999 by D'Arcy J.M. Cain (darcy@druid.net) \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/android_c-c.c.yml b/tests/cluecode/data/copyrights/android_c-c.c.yml index 29aef713b0a..3f998ec3280 100644 --- a/tests/cluecode/data/copyrights/android_c-c.c.yml +++ b/tests/cluecode/data/copyrights/android_c-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Colin Percival count: 1 +allrights: + - Copyright (c) 2009 The Android Open Source Project + - Copyright 2003-2005 Colin Percival All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml b/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml index 6e135547fd6..10c75efe9e4 100644 --- a/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml +++ b/tests/cluecode/data/copyrights/apache2_debian_trailing_name_missed-apache.label.yml @@ -95,3 +95,33 @@ holders_summary: count: 1 - value: the University of Cambridge, England count: 1 +allrights: + - copyright Steinar H. Gunderson and Knut Auvor Grythe + - Copyright (c) 1996-1997 Cisco Systems, Inc. + - Copyright (c) Ian F. Darwin, 1987. + - Copyright (c) Ian F. Darwin 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995. + - copyright 1992 by Eric Haines, erich@eye.com + - Copyright (c) 1995, Board of Trustees of the University of Illinois + - Copyright (c) 1994, Jeff Hostetler, Spyglass, Inc. + - Copyright (c) 1993, 1994 by Carnegie Mellon University + - Copyright (c) 1991 Bell Communications Research, Inc. + - (c) Copyright 1993,1994 by Carnegie Mellon University All Rights Reserved. + - Copyright (c) 1991 Bell Communications Research, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - copyright RSA Data Security, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 2000-2002 The Apache Software Foundation. All rights reserved. + - copyright RSA Data Security, Inc. + - Copyright (c) 1990-2, RSA Data Security, Inc. + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England. + - Copyright (c) Zeus Technology Limited 1996. + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper + - copyright of Pete Harlow \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml b/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml index a8610b1c8e5..ec34553f4d0 100644 --- a/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml +++ b/tests/cluecode/data/copyrights/apache_notice-NOTICE.yml @@ -17,3 +17,8 @@ holders_summary: count: 3 - value: World Wide Web Consortium count: 1 +allrights: + - Copyright 1999-2006 The Apache Software Foundation + - Copyright 1999-2006 The Apache Software Foundation + - Copyright 2001-2003,2006 The Apache Software Foundation. + - copyright (c) 2000 World Wide Web Consortium, http://www.w3.org \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml b/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml index 1d0447dcb27..00a573f3ccc 100644 --- a/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml +++ b/tests/cluecode/data/copyrights/apachev1_0-Apachev.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright (c) 1995-1999 The Apache Group. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml b/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml index 6c5502a9490..4e479465373 100644 --- a/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml +++ b/tests/cluecode/data/copyrights/apachev1_1-Apachev.1.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright (c) 2000 The Apache Software Foundation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml b/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml index 3d277aa460b..422f7fb898a 100644 --- a/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml +++ b/tests/cluecode/data/copyrights/apple_public_source_license_v1_0-Apple_Public_Source_License_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Apple Computer, Inc. count: 1 +allrights: + - Portions Copyright (c) 1999 Apple Computer, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml b/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml index a0fb088809b..a10889d58b7 100644 --- a/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml +++ b/tests/cluecode/data/copyrights/apple_public_source_license_v1_1-Apple_Public_Source_License_v.1.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Apple Computer, Inc. count: 1 +allrights: + - Portions Copyright (c) 1999-2000 Apple Computer, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml b/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml index a8d9d36a0dd..c1d408597ed 100644 --- a/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml +++ b/tests/cluecode/data/copyrights/apple_public_source_license_v1_2-Apple_Public_Source_License_v.2.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Apple Computer, Inc. count: 1 +allrights: + - Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml b/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml index c6c4104050c..9e6fa64d503 100644 --- a/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml +++ b/tests/cluecode/data/copyrights/apslv2_0-APSLv.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Apple Inc. count: 1 +allrights: + - Portions Copyright (c) 1999-2007 Apple Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml b/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml index 653a9c6429f..4afc96d9105 100644 --- a/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml +++ b/tests/cluecode/data/copyrights/artistic_v2_0beta4-Artistic_v_beta.0beta4.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Larry Wall count: 1 +allrights: + - Copyright (c) 2000, Larry Wall. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml b/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml index 3a0054ca58e..f6ae70756c1 100644 --- a/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml +++ b/tests/cluecode/data/copyrights/artisticv2_0-Artisticv.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Perl Foundation count: 1 +allrights: + - Copyright (c) 2000-2006, The Perl Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml b/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml index d8510418caa..b0b05745cc4 100644 --- a/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml +++ b/tests/cluecode/data/copyrights/atheros_spanning_lines-py.py.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2000 Atheros Communications, Inc., All Rights Reserved + - Copyright (c) 2001 Atheros Communications, Inc., All Rights Reserved + - Copyright (c) 1994-1997 by Intel Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/audio_c-c.c.yml b/tests/cluecode/data/copyrights/audio_c-c.c.yml index dae1b52cd9b..3d778d8baa0 100644 --- a/tests/cluecode/data/copyrights/audio_c-c.c.yml +++ b/tests/cluecode/data/copyrights/audio_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke count: 1 +allrights: + - copyright (c) 1995, AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/author_young_c-c.c.yml b/tests/cluecode/data/copyrights/author_young_c-c.c.yml index e7d4fec90ef..9655fa76131 100644 --- a/tests/cluecode/data/copyrights/author_young_c-c.c.yml +++ b/tests/cluecode/data/copyrights/author_young_c-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved. + - holder is Tim Hudson (tjh@mincom.oz.au). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml b/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml index b2aaa9b8dd1..5f4749edc97 100644 --- a/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml +++ b/tests/cluecode/data/copyrights/authors_at_ucl.txt.yml @@ -8,3 +8,5 @@ holders: - University College London authors: - the Computer Science Department at University College London +allrights: + - Copyright (c) 1998-2000 University College London All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml b/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml index c70fb34fbfe..9a6ea631a26 100644 --- a/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml +++ b/tests/cluecode/data/copyrights/bigelow_holmes-Bigelow&Holmes.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Sun Microsystems count: 1 +allrights: + - (c) Copyright 1989 Sun Microsystems, Inc. + - (c) Copyright Bigelow & Holmes 1986, 1985. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml b/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml index 4d2bfc40727..8acb2dfbf35 100644 --- a/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml +++ b/tests/cluecode/data/copyrights/bitstream-Bi_ream.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Bitstream, Inc. count: 1 +allrights: + - Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/brackets.txt.yml b/tests/cluecode/data/copyrights/brackets.txt.yml index d1e4648b283..41c645f6f59 100644 --- a/tests/cluecode/data/copyrights/brackets.txt.yml +++ b/tests/cluecode/data/copyrights/brackets.txt.yml @@ -9,3 +9,5 @@ expected_failures: - copyrights - holders notes: we only get Copyright (c) <2010-2012> as a detection for now. +allrights: + - Copyright (c) 2010-2012 Jessup \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/bv.txt.yml b/tests/cluecode/data/copyrights/bv.txt.yml index eb0f49c515a..23b7955c6c4 100644 --- a/tests/cluecode/data/copyrights/bv.txt.yml +++ b/tests/cluecode/data/copyrights/bv.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: HERE Europe B.V. count: 1 +allrights: + - Copyright (c) 2016 HERE Europe B.V. All rights Reserved. + - (c) HERE 2016 \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/c-c.c.yml b/tests/cluecode/data/copyrights/c-c.c.yml index 3c905997df7..3773e542b09 100644 --- a/tests/cluecode/data/copyrights/c-c.c.yml +++ b/tests/cluecode/data/copyrights/c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: STMicroelectronics count: 1 +allrights: + - COPYRIGHT (c) STMicroelectronics 2005. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/c_include-h.h.yml b/tests/cluecode/data/copyrights/c_include-h.h.yml index 07e66a4a286..5bdf2e341fb 100644 --- a/tests/cluecode/data/copyrights/c_include-h.h.yml +++ b/tests/cluecode/data/copyrights/c_include-h.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: ST-Microelectronics count: 1 +allrights: + - COPYRIGHT (c) ST-Microelectronics 1998. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/ccube_txt.txt.yml b/tests/cluecode/data/copyrights/ccube_txt.txt.yml index da073deb44c..56d8fda7e55 100644 --- a/tests/cluecode/data/copyrights/ccube_txt.txt.yml +++ b/tests/cluecode/data/copyrights/ccube_txt.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: C-Cube Microsystems count: 1 +allrights: + - Copyright (c) 2001 C-Cube Microsystems. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml b/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml index bae9836c453..6909af39dd0 100644 --- a/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml +++ b/tests/cluecode/data/copyrights/cern-TestMatrix_D_java.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: CERN - European Organization for Nuclear Research count: 1 +allrights: + - Copyright 1999 CERN - European Organization for Nuclear Research. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml b/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml index 43a4b65e423..cd7a526b78d 100644 --- a/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml +++ b/tests/cluecode/data/copyrights/cern_matrix2d_java-TestMatrix_D_java.java.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: CERN - European Organization for Nuclear Research count: 1 +allrights: + - Copyright 1999 CERN - European Organization for Nuclear Research. + - Copyright (c) 1998 Company PIERSOL Engineering Inc. + - Copyright (c) 1998 Company PIERSOL Engineering Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/cnri-CNRI.yml b/tests/cluecode/data/copyrights/cnri-CNRI.yml index 4b12e6dc680..0e79e102aa8 100644 --- a/tests/cluecode/data/copyrights/cnri-CNRI.yml +++ b/tests/cluecode/data/copyrights/cnri-CNRI.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Corporation for National Research Initiatives count: 1 +allrights: + - Copyright (c) 1995-2000 Corporation for National Research Initiatives All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml b/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml index 29aef713b0a..3f998ec3280 100644 --- a/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml +++ b/tests/cluecode/data/copyrights/colin_android-bsdiff_c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Colin Percival count: 1 +allrights: + - Copyright (c) 2009 The Android Open Source Project + - Copyright 2003-2005 Colin Percival All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml b/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml index d8eb72e706f..b1e59f2ac25 100644 --- a/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml +++ b/tests/cluecode/data/copyrights/company_in_txt-9.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Company Name Incorporated count: 1 +allrights: + - Copyright (c) 2008-2011 Company Name Incorporated All rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml b/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml index d8eb72e706f..b1e59f2ac25 100644 --- a/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml +++ b/tests/cluecode/data/copyrights/company_name_in_java-9_java.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Company Name Incorporated count: 1 +allrights: + - Copyright (c) 2008-2011 Company Name Incorporated All rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml b/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml index 238642b4db9..54bce11ae09 100644 --- a/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml +++ b/tests/cluecode/data/copyrights/complex_4_line_statement_in_text-9.txt.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright 2002 Jonas Borgstrom 2002 Daniel Lundin 2002 CodeFactory AB. All rights reserved. + - Copyright (c) 1994 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml b/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml index aa18c454365..85760d53a1e 100644 --- a/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml +++ b/tests/cluecode/data/copyrights/complex_notice-NOTICE.yml @@ -74,3 +74,30 @@ holders_summary: count: 1 - value: The NetBSD Foundation, Inc. count: 1 +allrights: + - Copyright (c) 2003, Steven G. Kargl All rights reserved. + - Copyright (c) 2003 Mike Barcroft + - Copyright (c) 2002, 2003 David Schultz + - Copyright (c) 2003 David Schultz + - Copyright (c) 2004 David Schultz + - Copyright (c) 2004-2005 David Schultz + - Copyright (c) 2005 David Schultz + - Copyright (c) 2002 David Schultz All rights reserved. + - Copyright (c) 2004 Stefan Farfeleder All rights reserved. + - Copyright (c) 2003 Dag-Erling Coidan Smorgrav All rights reserved. + - Copyright (c) 1996 The NetBSD Foundation, Inc. All rights reserved. + - Copyright (c) 1985, 1993 + - Copyright (c) 1988, 1993 Copyright (c) 1992, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 1993,94 Winning Strategies, Inc. + - Copyright (c) 1994 Winning Strategies, Inc. All rights reserved. + - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 2004 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 2004 Stefan Farfeleder + - Copyright (c) 2004 David Schultz + - Copyright (c) 2004, 2005 David Schultz + - Copyright (c) 2003 Mike Barcroft + - Copyright (c) 2005 David Schultz All rights reserved. + - Copyright (c) 2003, Steven G. Kargl All rights reserved. + - Copyright (c) 1991 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml b/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml index 5cf69185082..09d9109ce15 100644 --- a/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml +++ b/tests/cluecode/data/copyrights/complex_notice_sun_microsystems_on_multiple_lines-NOTICE.yml @@ -29,3 +29,12 @@ holders_summary: count: 1 - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 1999-2006 The Apache Software Foundation + - copyright (c) 1999-2002, Lotus Development Corporation., http://www.lotus.com. + - copyright (c) 2001-2002, Sun Microsystems., http://www.sun.com. + - copyright (c) 2003, IBM Corporation., http://www.ibm.com. + - copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - copyright (c) 1999, Sun Microsystems., http://www.sun.com. + - copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - copyright (c) 1999, Sun Microsystems., http://www.sun.com. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/composite_copy.txt.yml b/tests/cluecode/data/copyrights/composite_copy.txt.yml index e4c37b994af..08d5d7c120f 100644 --- a/tests/cluecode/data/copyrights/composite_copy.txt.yml +++ b/tests/cluecode/data/copyrights/composite_copy.txt.yml @@ -5,3 +5,5 @@ copyrights: - copyrighted by Object Computing, Inc., St. Louis Missouri, Copyright (c) 2002 holders: - Object Computing, Inc., St. Louis Missouri +allrights: + - copyrighted by Object Computing, Inc., St. Louis Missouri, Copyright (c) 2002, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml b/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml index 0e9aafd83b4..f119283bb0b 100644 --- a/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml +++ b/tests/cluecode/data/copyrights/condor_extra_For-Condor.yml @@ -11,3 +11,5 @@ holders_summary: - value: Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. count: 1 +allrights: + - Copyright 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml b/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml index ea1c0a55193..cdbc6ef4580 100644 --- a/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml +++ b/tests/cluecode/data/copyrights/copyright_without_icon.txt.yml @@ -13,3 +13,5 @@ holders_summary: copyrights_summary: - value: Copyright Foobar Pvt. Ltd count: 1 +allrights: + - Copyright Foobar Pvt. Ltd.. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml b/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml index c2aace97f67..1ae5bd7520f 100644 --- a/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/and_subsidiaries.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Robert Bosch GmbH and its subsidiaries count: 1 +allrights: + - Copyright (c) 2009, 2018 Robert Bosch GmbH and its subsidiaries. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml b/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml index 4fd838a43ca..131e4e56456 100644 --- a/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/hp_co_or_company.txt.yml @@ -13,3 +13,7 @@ holders: holders_summary: - value: Hewlett-Packard count: 3 +allrights: + - Copyright (c) 1993-2007 Hewlett-Packard Company ALL RIGHTS RESERVED. + - copyrighted works of Hewlett-Packard Co. + - (c) Copyright 1993-2007 Hewlett-Packard Co. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml b/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml index 4ae29eb57aa..e2e6783a06a 100644 --- a/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/two_lines.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2005, 2008-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml b/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml index 536b626cec2..f1332d836c0 100644 --- a/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/with_caps_and_dots.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: D.T.Shield count: 1 +allrights: + - Copyright 1999, 2000 - D.T.Shield. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml b/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml index 00771a3c88a..05e4aeccca3 100644 --- a/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/with_debian_s_tag.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Trolltech ASA. count: 1 +allrights: + - Copyright (c) Trolltech ASA. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml b/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml index 23564906910..2f65f8b6d6a 100644 --- a/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/with_lead_copy_sign_and_debian_s_tags.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Trolltech ASA. count: 1 +allrights: + - Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). + - (c) 1994-2008 Trolltech ASA. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml b/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml index c9a1c9a31c4..5f7d253997c 100644 --- a/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/with_more_debian_s_tags.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nokia Corporation and/or its subsidiary(-ies) count: 1 +allrights: + - Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml b/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml index b9e7a1024ae..6ba8eab276b 100644 --- a/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/with_trailing_software.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Ian F. Darwin count: 1 +allrights: + - Copyright (c) Ian F. Darwin 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml b/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml index 0c3b650b4fc..afa7aaef91f 100644 --- a/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml +++ b/tests/cluecode/data/copyrights/copytest/with_trailing_year.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Internet Society count: 1 +allrights: + - Copyright (c) The Internet Society (2004). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml b/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml index e68885cd193..b5223c20db1 100644 --- a/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml +++ b/tests/cluecode/data/copyrights/coreutils_debian-coreutils.copyright.yml @@ -55,3 +55,23 @@ holders_summary: count: 1 - value: Internet Software Consortium count: 1 +allrights: + - Copyright (c) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + - Copyright (c) 1990, 1993, 1994 The Regents of the University of California. All rights reserved. + - Copyright (c) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 1999-2006 Free Software Foundation, Inc. + - Copyright (c) 1997, 1998, 1999 Colin Plumb. + - Copyright (c) 2005, 2006 Free Software Foundation, Inc. + - Copyright (c) 1996-1999 by Internet Software Consortium. + - Copyright (c) 2004, 2006, 2007 Free Software Foundation, Inc. + - Copyright (c) 1997-2007 Free Software Foundation, Inc. + - Copyright (c) 1984 David M. Ihnat + - Copyright (c) 1996-2007 Free Software Foundation, Inc. + - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin + - Copyright (c) 1997-2005 Free Software Foundation, Inc. + - Copyright (c) 1984 David M. Ihnat + - Copyright (c) 1999-2007 Free Software Foundation, Inc. + - Copyright (c) 1997, 1998, 1999 Colin Plumb. + - Copyright 1994-1996, 2000-2008 Free Software Foundation, Inc. + - Copyright (c) 1984-2008 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml b/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml index 94bede6cbea..b7db6412ea8 100644 --- a/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml +++ b/tests/cluecode/data/copyrights/dag_c-s_fabsl_c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Dag-Erling Coidan Smorgrav count: 1 +allrights: + - Copyright (c) 2003 Dag-Erling Coidan Smorgrav All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml b/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml index 43afb7d33bb..82591e9ed0d 100644 --- a/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml +++ b/tests/cluecode/data/copyrights/dag_elring_notice-NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Dag-Erling Codan Smrgrav count: 1 +allrights: + - Copyright (c) 2003 Dag-Erling Codan Smrgrav All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml b/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml index ba237805f23..ee5bc0d15d5 100644 --- a/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml +++ b/tests/cluecode/data/copyrights/date_range_dahua_in_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Dahua Digital count: 1 +allrights: + - (c) Copyright 2006 to 2007 Dahua Digital. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml b/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml index 61a541490ca..44b3b15fe76 100644 --- a/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml +++ b/tests/cluecode/data/copyrights/debian_lib_1-libmono_cairo_cil.label.yml @@ -65,3 +65,19 @@ notes: | These are missing the trailing: and Rabbit Technologies Ltd. Copyright (c) 2007, 2008 LShift Ltd. , Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. Copyright (c) 2007 LShift Ltd. , Cohesive Financial Technologies LLC.', and Rabbit Technologies Ltd. +allrights: + - Copyright 2004 The Apache Software Foundation + - Copyright (c) 2001-2005 Novell + - Copyright (c) Microsoft Corporation. All rights reserved. + - Copyright (c) 2007 James Newton-King + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole + - Copyright (c) 2000-2004 Philip A. Craig + - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole + - Copyright (c) 2000-2004 Philip A. Craig + - Copyright (c) 2007, 2008 LShift Ltd. + - Copyright (c) 2007, 2008 Cohesive Financial Technologies LLC. + - Copyright (c) 2007, 2008 Rabbit Technologies Ltd. + - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) 2007 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) ???? Simon Mourier \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml b/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml index ecb3b0639d5..297cbaa242c 100644 --- a/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml +++ b/tests/cluecode/data/copyrights/debian_lib_2-libmono_cairo_cil.copyright.yml @@ -61,3 +61,19 @@ holders_summary: count: 1 - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2004 The Apache Software Foundation + - Copyright (c) 2001-2005 Novell + - Copyright (c) Microsoft Corporation. All rights reserved. + - Copyright (c) 2007 James Newton-King + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole + - Copyright (c) 2000-2004 Philip A. Craig + - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole + - Copyright (c) 2000-2004 Philip A. Craig + - Copyright (c) 2007, 2008 LShift Ltd. + - Copyright (c) 2007, 2008 Cohesive Financial Technologies LLC. + - Copyright (c) 2007, 2008 Rabbit Technologies Ltd. + - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) 2007 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) ???? Simon Mourier \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml b/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml index ecb3b0639d5..297cbaa242c 100644 --- a/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml +++ b/tests/cluecode/data/copyrights/debian_lib_3-libmono_security_cil.copyright.yml @@ -61,3 +61,19 @@ holders_summary: count: 1 - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2004 The Apache Software Foundation + - Copyright (c) 2001-2005 Novell + - Copyright (c) Microsoft Corporation. All rights reserved. + - Copyright (c) 2007 James Newton-King + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole + - Copyright (c) 2000-2004 Philip A. Craig + - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole + - Copyright (c) 2000-2004 Philip A. Craig + - Copyright (c) 2007, 2008 LShift Ltd. + - Copyright (c) 2007, 2008 Cohesive Financial Technologies LLC. + - Copyright (c) 2007, 2008 Rabbit Technologies Ltd. + - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) 2007, 2008 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) 2007 LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. + - Copyright (c) ???? Simon Mourier \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml b/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml index 785af3905a1..223411de3b7 100644 --- a/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml +++ b/tests/cluecode/data/copyrights/debian_multi_names_on_one_line-libgdata.copyright.yml @@ -80,3 +80,23 @@ holders_summary: count: 1 - value: Ximian, Inc., Gergo Erdi count: 1 +allrights: + - Copyright 1999-2004 Ximian, Inc. 1999-2005 Novell, Inc. + - copyright 2000-2003 Ximian, Inc., 2003 Gergo Erdi + - copyright 2000 Eskil Heyn Olsen, 2000 Ximian, Inc. + - copyright 1998 The Free Software Foundation, 2000 Ximian, Inc. + - copyright 1998-2005 The OpenLDAP Foundation. + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. All Rights Reserved. + - Copyright 1999-2000 Eric Busboom, The Software Studio (http://www.softwarestudio.org) 2001 Critical Path + - (c) Copyright 1996 Apple Computer, Inc., AT&T Corp., International Business Machines Corporation and Siemens Rolm Communications Inc. + - Copyright (c) 1997 Theo de Raadt. + - copyright 2000 Andrea Campi. + - copyright 2002 Andrea Campi + - copyright 2003 Andrea Campi + - Copyright 2002 Jonas Borgstrom 2002 Daniel Lundin 2002 CodeFactory AB. All rights reserved. + - copyright 1996 Apple Computer, Inc., AT&T Corp., International Business Machines Corporation and Siemens Rolm Communications Inc. + - copyright 1986-2000 Hiram Clawson. All rights reserved. + - copyright 1997 Theo de Raadt. + - Copyright (c) 1996-2002 Sleepycat Software. All rights reserved. + - Copyright (c) 1990, 1993, 1994, 1995, 1996 Keith Bostic. All rights reserved. + - Copyright (c) 1990, 1993, 1994, 1995 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml b/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml index c2c0c12ae41..c8c50a01155 100644 --- a/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml +++ b/tests/cluecode/data/copyrights/djvulibre_desktop-djvulibre_desktop.copyright.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: LizardTech, Inc. count: 1 +allrights: + - Copyright (c) 2002 Leon Bottou and Yann Le Cun. + - Copyright (c) 2001 AT&T + - Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/doc-DOC.yml b/tests/cluecode/data/copyrights/doc-DOC.yml index 1701f36e2dd..bedf996d906 100644 --- a/tests/cluecode/data/copyrights/doc-DOC.yml +++ b/tests/cluecode/data/copyrights/doc-DOC.yml @@ -12,3 +12,5 @@ holders_summary: - value: Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University count: 1 +allrights: + - copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2008, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml b/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml index 67e0f950454..4842f5bc8ea 100644 --- a/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml +++ b/tests/cluecode/data/copyrights/docbook_xsl_doc_html-docbook_xsl_doc_html.copyright.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: The DocBook Project count: 1 +allrights: + - Copyright (c) 1999-2007 Norman Walsh. + - Copyright (c) 2003 Jiri Kosek. + - Copyright (c) 2004-2007 Steve Ball. + - Copyright (c) 2005-2008 The DocBook Project. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml b/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml index 4cbd67f8592..ecd05146552 100644 --- a/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml +++ b/tests/cluecode/data/copyrights/does_not_truncate_last_name.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Kenneth MacKay count: 1 +allrights: + - Copyright 2014, Kenneth MacKay. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml b/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml index 909e9090790..05b01c5062e 100644 --- a/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml +++ b/tests/cluecode/data/copyrights/drand48_c-drand_c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Martin Birgmeier count: 1 +allrights: + - Copyright (c) 1993 Martin Birgmeier All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml b/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml index 50d775dbc73..fea69ba16b0 100644 --- a/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml +++ b/tests/cluecode/data/copyrights/dual_mpl_gpl-Dual_MPL_GPL.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/ed-ed.copyright.yml b/tests/cluecode/data/copyrights/ed-ed.copyright.yml index 9ad3fd072be..4a1f2cdc12e 100644 --- a/tests/cluecode/data/copyrights/ed-ed.copyright.yml +++ b/tests/cluecode/data/copyrights/ed-ed.copyright.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: James Troup count: 1 +allrights: + - Copyright (c) 1993, 1994 Andrew Moore, Talke Studio. + - Copyright (c) 2006, 2007 Antonio Diaz Diaz. + - Copyright (c) 1997-2007 James Troup. + - Copyright (c) 1993, 2006, 2007 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/entessa-Entessa.yml b/tests/cluecode/data/copyrights/entessa-Entessa.yml index d722f909cf1..38364847638 100644 --- a/tests/cluecode/data/copyrights/entessa-Entessa.yml +++ b/tests/cluecode/data/copyrights/entessa-Entessa.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Entessa, LLC. count: 1 +allrights: + - Copyright (c) 2003 Entessa, LLC. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml b/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml index 679322b4ce3..a12773abb29 100644 --- a/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml +++ b/tests/cluecode/data/copyrights/epiphany_browser_data-epiphany_browser_data.label.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 2004 the Initial Developer. All Rights Reserved. + - (c) 2003-2007, the Debian GNOME team \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml b/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml index 94304adb22f..e51920b640c 100644 --- a/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml +++ b/tests/cluecode/data/copyrights/eplv1_0b-EPLv_b.0b.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: IBM Corporation and others count: 1 +allrights: + - Copyright (c) 2003, 2005 IBM Corporation and others. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/eric_young_c-c.c.yml b/tests/cluecode/data/copyrights/eric_young_c-c.c.yml index e7d4fec90ef..9655fa76131 100644 --- a/tests/cluecode/data/copyrights/eric_young_c-c.c.yml +++ b/tests/cluecode/data/copyrights/eric_young_c-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved. + - holder is Tim Hudson (tjh@mincom.oz.au). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/errno_atheros-c.c.yml b/tests/cluecode/data/copyrights/errno_atheros-c.c.yml index aff285c3c14..38c56bf146b 100644 --- a/tests/cluecode/data/copyrights/errno_atheros-c.c.yml +++ b/tests/cluecode/data/copyrights/errno_atheros-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml b/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml index aff285c3c14..38c56bf146b 100644 --- a/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml +++ b/tests/cluecode/data/copyrights/errno_atheros_ah_h-ah_h.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/errno_c-c.c.yml b/tests/cluecode/data/copyrights/errno_c-c.c.yml index aff285c3c14..38c56bf146b 100644 --- a/tests/cluecode/data/copyrights/errno_c-c.c.yml +++ b/tests/cluecode/data/copyrights/errno_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/error-prone.txt.yml b/tests/cluecode/data/copyrights/error-prone.txt.yml index 47b523b1e05..c14aa1811e6 100644 --- a/tests/cluecode/data/copyrights/error-prone.txt.yml +++ b/tests/cluecode/data/copyrights/error-prone.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2015 The Error Prone Authors holders: - The Error Prone Authors +allrights: + - Copyright 2015 The Error Prone Authors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/et_al.txt.yml b/tests/cluecode/data/copyrights/et_al.txt.yml index 7c6ea01eb77..d124003a5aa 100644 --- a/tests/cluecode/data/copyrights/et_al.txt.yml +++ b/tests/cluecode/data/copyrights/et_al.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Contributors et.al count: 1 +allrights: + - Copyright (c) 2017 Contributors et.al. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml b/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml index 87f0c9bd6af..a7c9115e9ae 100644 --- a/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml +++ b/tests/cluecode/data/copyrights/eudatagrid-EUDatagrid.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: EU DataGrid count: 1 +allrights: + - Copyright (c) 2001 EU DataGrid. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml b/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml index b53955b45d6..b6a173e5312 100644 --- a/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml +++ b/tests/cluecode/data/copyrights/freebsd-FreeBSD.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The FreeBSD Project count: 1 +allrights: + - Copyright 1994-2006 The FreeBSD Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/freetype-FreeType.yml b/tests/cluecode/data/copyrights/freetype-FreeType.yml index 44b836e35d6..45f382aee82 100644 --- a/tests/cluecode/data/copyrights/freetype-FreeType.yml +++ b/tests/cluecode/data/copyrights/freetype-FreeType.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: The FreeType Project count: 1 +allrights: + - Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) The FreeType Project (www.freetype.org). All rights reserved. + - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg. All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/gailly-c.c.yml b/tests/cluecode/data/copyrights/gailly-c.c.yml index 26617e14bb5..8723baa7693 100644 --- a/tests/cluecode/data/copyrights/gailly-c.c.yml +++ b/tests/cluecode/data/copyrights/gailly-c.c.yml @@ -13,3 +13,7 @@ holders: holders_summary: - value: Jean-loup Gailly count: 3 +allrights: + - Copyright (c) 1992-1993 Jean-loup Gailly. + - Copyright (c) 1992-1993 Jean-loup Gailly + - Copyright (c) 1992-1993 Jean-loup Gailly \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/glide-Glide.yml b/tests/cluecode/data/copyrights/glide-Glide.yml index 3e499f9a14a..c5bf9a274ad 100644 --- a/tests/cluecode/data/copyrights/glide-Glide.yml +++ b/tests/cluecode/data/copyrights/glide-Glide.yml @@ -13,3 +13,7 @@ holders: holders_summary: - value: 3dfx Interactive, Inc. count: 3 +allrights: + - copyright notice (3dfx Interactive, Inc. 1999) + - COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED + - COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/grapelli_content.css.yml b/tests/cluecode/data/copyrights/grapelli_content.css.yml index fe8ac2ee111..0d13a9f9ab4 100644 --- a/tests/cluecode/data/copyrights/grapelli_content.css.yml +++ b/tests/cluecode/data/copyrights/grapelli_content.css.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: vonautomatisch werkstaetten count: 1 +allrights: + - Copyright (c) 2009, vonautomatisch werkstaetten. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/gsoap-gSOAP.yml b/tests/cluecode/data/copyrights/gsoap-gSOAP.yml index fa934be422f..061462199b0 100644 --- a/tests/cluecode/data/copyrights/gsoap-gSOAP.yml +++ b/tests/cluecode/data/copyrights/gsoap-gSOAP.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Robert A. van Engelen, Genivia inc. count: 2 +allrights: + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved. + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/h-h.h.yml b/tests/cluecode/data/copyrights/h-h.h.yml index 07e66a4a286..5bdf2e341fb 100644 --- a/tests/cluecode/data/copyrights/h-h.h.yml +++ b/tests/cluecode/data/copyrights/h-h.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: ST-Microelectronics count: 1 +allrights: + - COPYRIGHT (c) ST-Microelectronics 1998. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml b/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml index 50e7c9e8850..db0e0e9605f 100644 --- a/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml +++ b/tests/cluecode/data/copyrights/hans_jurgen_htm-9_html.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Hans-Jurgen Koch count: 1 +allrights: + - Copyright (c) 2006 by Hans-Jurgen Koch. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml b/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml index e86b5160c15..d97e7af1262 100644 --- a/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml +++ b/tests/cluecode/data/copyrights/hansen_cs-cs.cs.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas Hansen count: 1 +allrights: + - Copyright 2009 - Thomas Hansen thomas@ra-ajax.org. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/heunrich_c-c.c.yml b/tests/cluecode/data/copyrights/heunrich_c-c.c.yml index 964b477d867..58d2bd84dcb 100644 --- a/tests/cluecode/data/copyrights/heunrich_c-c.c.yml +++ b/tests/cluecode/data/copyrights/heunrich_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: HEUNRICH HERTZ INSTITUTE count: 1 +allrights: + - Copyright (c) 2000 HEUNRICH HERTZ INSTITUTE All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml b/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml index 5d4e8b16ccc..44778f8d56e 100644 --- a/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml +++ b/tests/cluecode/data/copyrights/hewlett_packard-Hewlett_Packard.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Hewlett-Packard count: 1 +allrights: + - (c) HEWLETT-PACKARD COMPANY, 2004. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/holders.txt.yml b/tests/cluecode/data/copyrights/holders.txt.yml index e64f5e056b0..8311625ee27 100644 --- a/tests/cluecode/data/copyrights/holders.txt.yml +++ b/tests/cluecode/data/copyrights/holders.txt.yml @@ -7,3 +7,6 @@ copyrights: holders: - Tim Hudson - Kevin Vandersloot Erik Johnsson +allrights: + - holder is Tim Hudson (tjh@mincom.oz.au). + - Copyright Holders Kevin Vandersloot Erik Johnsson \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml b/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml index 7500697a0dd..caa8ee14d07 100644 --- a/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml +++ b/tests/cluecode/data/copyrights/holtmann-hciattach_qualcomm_c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Marcel Holtmann count: 1 +allrights: + - Copyright (c) 2005-2010 Marcel Holtmann + - Copyright (c) 2010, Code Aurora Forum. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml b/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml index 7bab37afb2f..ab6dceaff58 100644 --- a/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml +++ b/tests/cluecode/data/copyrights/hpijs_ppds-hpijs_ppds.label.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Torsten Landschoff count: 1 +allrights: + - Copyright (c) 2003-2004 by Torsten Landschoff + - Copyright (c) 2004-2006 by Henrique de Moraes Holschuh + - Copyright (c) 2001-2006 Hewlett-Packard Company + - Copyright (c) 2001-2006 Hewlett-Packard Development Company, L.P. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml b/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml index 0edf4ae02e2..3e557cdd992 100644 --- a/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml +++ b/tests/cluecode/data/copyrights/ibmpl_v1_0-IBMPL_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: International Business Machines Corporation and others count: 1 +allrights: + - Copyright (c) 1996, 1999 International Business Machines Corporation and others. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/ietf-IETF.yml b/tests/cluecode/data/copyrights/ietf-IETF.yml index 361332ee376..956f3b8ae16 100644 --- a/tests/cluecode/data/copyrights/ietf-IETF.yml +++ b/tests/cluecode/data/copyrights/ietf-IETF.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Internet Society count: 1 +allrights: + - Copyright (c) The Internet Society (2003). All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/ijg-IJG.yml b/tests/cluecode/data/copyrights/ijg-IJG.yml index d2d234661a5..32885858d8b 100644 --- a/tests/cluecode/data/copyrights/ijg-IJG.yml +++ b/tests/cluecode/data/copyrights/ijg-IJG.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Thomas G. Lane count: 1 +allrights: + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved + - copyright holder, Aladdin Enterprises of Menlo Park + - copyright by the Free Software Foundation + - copyright by M.I.T. + - Copyright property of CompuServe Incorporated. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml b/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml index 82043ced6ef..5b061b9ae72 100644 --- a/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml +++ b/tests/cluecode/data/copyrights/illinois_html-9_html.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Board of Trustees of the University of Illinois count: 1 +allrights: + - Copyright 1999,2000,2001,2002,2003,2004 The Board of Trustees of the University of Illinois All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/imatix-iMatix.yml b/tests/cluecode/data/copyrights/imatix-iMatix.yml index 74e15d079af..5c5706bf5a6 100644 --- a/tests/cluecode/data/copyrights/imatix-iMatix.yml +++ b/tests/cluecode/data/copyrights/imatix-iMatix.yml @@ -17,3 +17,9 @@ holders: holders_summary: - value: iMatix Corporation count: 5 +allrights: + - Copyright 1991-2000 iMatix Corporation. + - Copyright 1991-2000 iMatix Corporation + - Copyright 1991-2000 iMatix Corporation http://www.imatix.com + - Parts copyright (c) 1991-2000 iMatix Corporation. + - Copyright 1996-2000 iMatix Corporation \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/in_docstring.py.yml b/tests/cluecode/data/copyrights/in_docstring.py.yml index c4b8c8350c5..a1cdcab1040 100644 --- a/tests/cluecode/data/copyrights/in_docstring.py.yml +++ b/tests/cluecode/data/copyrights/in_docstring.py.yml @@ -6,3 +6,5 @@ copyrights: - (c) 1989-2000 Baz Corporation holders: - Baz Corporation +allrights: + - (c) 1989-2000 Baz Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/index.html.yml b/tests/cluecode/data/copyrights/index.html.yml index fa73b5d62f4..19bc871d597 100644 --- a/tests/cluecode/data/copyrights/index.html.yml +++ b/tests/cluecode/data/copyrights/index.html.yml @@ -47,3 +47,26 @@ holders: - Epic Games, Inc. - Christian Rau - Yann Collet +allrights: + - Copyright (c) 2002-2009 Charlie Poole + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Copyright (c) 2000-2002 Philip A. Craig + - Copyright (c) 2003-2008, Terence Parr. All rights reserved. + - Copyright (c) 1994-2011 Lua.org, PUC-Rio + - Copyright (c) 2000,2001,2002,2003,2004,2006,2007 Keith Packard + - Copyright (c) 2005 Patrick Lam + - Copyright (c) 2009 Roozbeh Pournader + - Copyright (c) 2008, 2009 Red Hat, Inc. + - Copyright (c) 2008 Danilo Segan + - Copyright (c) Microsoft Corporation + - Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies) and other contributors. + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyright (c) 2012 The FreeType Project (www.freetype.org). All rights reserved. + - copyright (c) Imagination Technologies Limited. All rights reserved. + - Copyright (c) 2008 Google Inc. + - copyright (c) Imagination Technologies Limited. All rights reserved. + - Copyright (c) 2003-2004 Silicon Graphics, Inc. + - Copyright (c) Microsoft Corporation. All Rights Reserved. + - copyright (c) Epic Games, Inc. All rights reserved. + - Copyright (c) 2012-2013 Christian Rau + - Copyright (c) 2011-2014, Yann Collet. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/index.txt.yml b/tests/cluecode/data/copyrights/index.txt.yml index fa73b5d62f4..19bc871d597 100644 --- a/tests/cluecode/data/copyrights/index.txt.yml +++ b/tests/cluecode/data/copyrights/index.txt.yml @@ -47,3 +47,26 @@ holders: - Epic Games, Inc. - Christian Rau - Yann Collet +allrights: + - Copyright (c) 2002-2009 Charlie Poole + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Copyright (c) 2000-2002 Philip A. Craig + - Copyright (c) 2003-2008, Terence Parr. All rights reserved. + - Copyright (c) 1994-2011 Lua.org, PUC-Rio + - Copyright (c) 2000,2001,2002,2003,2004,2006,2007 Keith Packard + - Copyright (c) 2005 Patrick Lam + - Copyright (c) 2009 Roozbeh Pournader + - Copyright (c) 2008, 2009 Red Hat, Inc. + - Copyright (c) 2008 Danilo Segan + - Copyright (c) Microsoft Corporation + - Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies) and other contributors. + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyright (c) 2012 The FreeType Project (www.freetype.org). All rights reserved. + - copyright (c) Imagination Technologies Limited. All rights reserved. + - Copyright (c) 2008 Google Inc. + - copyright (c) Imagination Technologies Limited. All rights reserved. + - Copyright (c) 2003-2004 Silicon Graphics, Inc. + - Copyright (c) Microsoft Corporation. All Rights Reserved. + - copyright (c) Epic Games, Inc. All rights reserved. + - Copyright (c) 2012-2013 Christian Rau + - Copyright (c) 2011-2014, Yann Collet. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/intel-Intel.yml b/tests/cluecode/data/copyrights/intel-Intel.yml index 40d684b06fe..71097504189 100644 --- a/tests/cluecode/data/copyrights/intel-Intel.yml +++ b/tests/cluecode/data/copyrights/intel-Intel.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2006, Intel Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/isc-c.c.yml b/tests/cluecode/data/copyrights/isc-c.c.yml index ea1cffdc657..51a65b6f3da 100644 --- a/tests/cluecode/data/copyrights/isc-c.c.yml +++ b/tests/cluecode/data/copyrights/isc-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Internet Software Consortium count: 1 +allrights: + - Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/jabber-Jabber.yml b/tests/cluecode/data/copyrights/jabber-Jabber.yml index 75fcd9bd308..beaa0f326d9 100644 --- a/tests/cluecode/data/copyrights/jabber-Jabber.yml +++ b/tests/cluecode/data/copyrights/jabber-Jabber.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Jeremie Miller count: 1 +allrights: + - Copyright (c) 1999-2000 Jabber.com, Inc. All Rights Reserved. + - Portions Copyright (c) 1998-1999 Jeremie Miller. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/java-java.java.yml b/tests/cluecode/data/copyrights/java-java.java.yml index 3ccecfc58a1..b167fd30251 100644 --- a/tests/cluecode/data/copyrights/java-java.java.yml +++ b/tests/cluecode/data/copyrights/java-java.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: P.J. Plauger count: 1 +allrights: + - Copyright (c) 1992-2002 by P.J. Plauger. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml b/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml index b44bae84051..97ae8881bb1 100644 --- a/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml +++ b/tests/cluecode/data/copyrights/jcraft_copyright.txt.yml @@ -3,3 +3,5 @@ what: - copyrights copyrights: - Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. +allrights: + - Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/jdoe-c.c.yml b/tests/cluecode/data/copyrights/jdoe-c.c.yml index de07adae147..bde40b2acd4 100644 --- a/tests/cluecode/data/copyrights/jdoe-c.c.yml +++ b/tests/cluecode/data/copyrights/jdoe-c.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: J-Doe count: 1 +allrights: + - Copyright 2009 J-Doe. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/jpython-JPython.yml b/tests/cluecode/data/copyrights/jpython-JPython.yml index dc5e3503b59..b511b479b9d 100644 --- a/tests/cluecode/data/copyrights/jpython-JPython.yml +++ b/tests/cluecode/data/copyrights/jpython-JPython.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Corporation for National Research Initiatives count: 1 +allrights: + - Copyright 1996-1999 Corporation for National Research Initiatives All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml b/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml index 4a9481c6413..ae3039aaa8c 100644 --- a/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml +++ b/tests/cluecode/data/copyrights/jquery.flot.navigate.js.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: IOLA and Ole Laursen count: 1 +allrights: + - Copyright (c) 2007-2014 IOLA and Ole Laursen. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml b/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml index ab2ac228a6c..a112170ccd7 100644 --- a/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml +++ b/tests/cluecode/data/copyrights/larryrosen-LarryRosen.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Lawrence E. Rosen count: 1 +allrights: + - Copyright (c) 2002 Lawrence E. Rosen. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml b/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml index 974287488ea..adea638d8c8 100644 --- a/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml +++ b/tests/cluecode/data/copyrights/libadns1-libadns.copyright.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tony Finch count: 1 +allrights: + - Copyright 1997-2000 Ian Jackson + - Copyright 1999 Tony Finch + - Copyright (c) 1991 Massachusetts Institute of Technology. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml b/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml index fa3169e373e..68587aa2bce 100644 --- a/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml +++ b/tests/cluecode/data/copyrights/libc6_i686-libc_i.copyright.yml @@ -37,3 +37,12 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1991,92,93,94,95,96,97,98,99,2000,2001,2002,2003,2004,2005, 2006,2007,2008 Free Software Foundation, Inc. + - Copyright (c) 1991,92,93,94,95,96,97,98,99,2000,2001,2002,2003,2004,2005, 2006,2007,2008 Free Software Foundation, Inc. + - Copyright (c) 1991 Regents of the University of California. All rights reserved. + - Portions Copyright (c) 1993 by Digital Equipment Corporation. + - Copyright (c) 1984, Sun Microsystems, Inc. + - Copyright (c) 1991,1990,1989 Carnegie Mellon University All Rights Reserved. + - Copyright (c) 2000, Intel Corporation + - copyright (c) by Craig Metz \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml b/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml index e52246af6a5..18f661dd0f6 100644 --- a/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml +++ b/tests/cluecode/data/copyrights/libcdio10-libcdio.label.yml @@ -82,3 +82,23 @@ holders_summary: count: 1 - value: Yggdrasil Computing, Incorporated count: 1 +allrights: + - Copyright (c) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Rocky Bernstein + - Copyright (c) 2000, 2001, 2003, 2004, 2005, 2008 Herbert Valerio Riedel + - Copyright (c) 1996, 1997, 1998 Gerd Knorr + - Copyright (c) 2001 Xiph.org + - Copyright (c) 1994, 1995, 1996, 1997, 1998, 2001 Heiko Eissfeldt + - Copyright (c) 1998, 1999, 2001 Monty + - Copyright (c) 2008 Robert W. Fuller + - Copyright (c) 2006, 2008 Burkhard Plaum + - Copyright (c) 2001, 2002 Ben Fennema + - Copyright (c) 2001, 2002 Scott Long + - Copyright (c) 1993 Yggdrasil Computing, Incorporated + - Copyright (c) 1999, 2000 J. Schilling + - Copyright (c) 2001 Sven Ottemann + - Copyright (c) 2003 Svend Sanjay Sorensen + - Copyright (c) 1985, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. + - Copyright (c) 2003 Matthias Drochner + - Copyright (c) 1998-2001 VideoLAN Johan Bilien and Gildas Bazin + - Copyright (c) 1992, 1993 Eric Youngdale + - Copyright (c) 2003, 2004, 2005, 2006, 2007, 2008 Rocky Bernstein and Herbert Valerio Riedel. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml b/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml index 5aaaca86426..fc173952498 100644 --- a/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml +++ b/tests/cluecode/data/copyrights/libcrypt_ssleay_perl-libcrypt_ssleay_perl.copyright.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Stephen Zander count: 1 +allrights: + - Copyright (c) 1999-2003 Joshua Chamas. + - Copyright (c) 1998 Gisle Aas. + - copyright (c) 2003 Stephen Zander \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml b/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml index c4d94670cf2..4d9f2205dee 100644 --- a/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml +++ b/tests/cluecode/data/copyrights/libgoffice_0_8-libgoffice.label.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jody Goldberg and others count: 1 +allrights: + - Copyright (c) 2003-2008 Jody Goldberg (jody@gnome.org) and others. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml b/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml index 5b1be285373..5a512698790 100644 --- a/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml +++ b/tests/cluecode/data/copyrights/libisc44-libisc.copyright.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Internet Software Consortium count: 1 +allrights: + - Copyright (c) 1996-2001 Internet Software Consortium. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml b/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml index 5b1be285373..5a512698790 100644 --- a/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml +++ b/tests/cluecode/data/copyrights/libisccfg30-libisccfg.copyright.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Internet Software Consortium count: 1 +allrights: + - Copyright (c) 1996-2001 Internet Software Consortium. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml b/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml index 5b1be285373..5a512698790 100644 --- a/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml +++ b/tests/cluecode/data/copyrights/libisccfg40-libisccfg.copyright.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Internet Software Consortium count: 1 +allrights: + - Copyright (c) 1996-2001 Internet Software Consortium. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml b/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml index d2d234661a5..32885858d8b 100644 --- a/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml +++ b/tests/cluecode/data/copyrights/libjpeg62-libjpeg.copyright.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Thomas G. Lane count: 1 +allrights: + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved + - copyright holder, Aladdin Enterprises of Menlo Park + - copyright by the Free Software Foundation + - copyright by M.I.T. + - Copyright property of CompuServe Incorporated. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml b/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml index e9062fec3e7..22c1f6d2af3 100644 --- a/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml +++ b/tests/cluecode/data/copyrights/liblocale_gettext_perl-liblocale_get_perl.label.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Phillip Vandry count: 1 +allrights: + - Copyright 1996..2005 by Phillip Vandry All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml b/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml index 0d5a816dc66..aa0b186d35c 100644 --- a/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml +++ b/tests/cluecode/data/copyrights/libopenraw1-libopenraw.label.yml @@ -37,3 +37,14 @@ holders_summary: count: 1 - value: Thomas G. Lane, Part of the Independent JPEG Group's count: 1 +allrights: + - Copyright (c) 2007, David Paleino + - Copyright (c) 2005-2009, Hubert Figuiere + - Copyright (c) 2006, Hubert Figuiere + - (c) 2001, Lutz Muller + - Copyright (c) 2007, Hubert Figuiere + - (c) 1994, Kongji Huang and Brian C. Smith, Cornell University. All rights reserved. + - (c) 1993, Brian C. Smith, The Regents of the University of California. All rights reserved. + - (c) 1991-1992, Thomas G. Lane, Part of the Independent JPEG Group's + - Copyright (c) 2005, Hubert Figuiere + - Copyright (c) 2007, Hubert Figuiere \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml b/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml index 80403d18986..269b1e1f08a 100644 --- a/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml +++ b/tests/cluecode/data/copyrights/libopenthreads12-libopenthreads.copyright.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Robert Osfield count: 1 +allrights: + - Copyright (c) 2002 Robert Osfield. + - Copyright (c) 1998 Julian Smart, Robert Roebling \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml b/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml index 23564906910..2f65f8b6d6a 100644 --- a/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml +++ b/tests/cluecode/data/copyrights/libqt4_scripttools-libqt_scripttools.copyright.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Trolltech ASA. count: 1 +allrights: + - Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). + - (c) 1994-2008 Trolltech ASA. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml b/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml index 488aeaa2b9a..fa3aeccd1ff 100644 --- a/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml +++ b/tests/cluecode/data/copyrights/libqtscript4_gui-libqtscript_gui.copyright.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Trolltech ASA. count: 1 +allrights: + - Copyright (c) 2009 Modestas Vainius + - Copyright (c) Trolltech ASA. All Rights Reserved. + - Copyright (c) Roberto Raggi + - Copyright (c) Harald Fernengel \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml b/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml index 3ef61788417..281db8829ef 100644 --- a/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml +++ b/tests/cluecode/data/copyrights/libsocks4-libsocks.copyright.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989 Regents of the University of California. All rights reserved. + - Portions Copyright (c) 1993, 1994, 1995 by NEC Systems Laboratory. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml b/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml index f10823f4462..5e9f6d7a45c 100644 --- a/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml +++ b/tests/cluecode/data/copyrights/libuim6-libuim.copyright.yml @@ -45,3 +45,14 @@ holders_summary: count: 1 - value: uim Project count: 1 +allrights: + - Copyright (c) 2003-2007 uim Project http://uim.freedesktop.org + - COPYRIGHT (c) 1988-1994 BY PARADIGM ASSOCIATES INCORPORATED, CAMBRIDGE, MASSACHUSETTS. ALL RIGHTS RESERVED + - Copyright (c) 2006, SHIMODA Hiroshi + - Copyright (c) 2006, FUJITA Yuji + - Copyright (c) 2006, Jun Mukai + - Copyright (c) 2006, Teppei Tamra + - Copyright (c) 2005 UTUMI Hirosi + - Copyright (c) 2006 YAMAMOTO Kengo + - Copyright (c) 2006 Jae-hyeon Park + - Copyright (c) 2006 Etsushi Kato All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml b/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml index 4fc295343a7..b0408113119 100644 --- a/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml +++ b/tests/cluecode/data/copyrights/libxext6-libxext.copyright.yml @@ -44,3 +44,13 @@ holders_summary: count: 1 - value: The Open Group count: 1 +allrights: + - Copyright 1986, 1987, 1988, 1989, 1994, 1998 The Open Group + - Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts. + - Copyright (c) 1997 by Silicon Graphics Computer Systems, Inc. + - Copyright 1992 Network Computing Devices + - Copyright 1991,1993 by Digital Equipment Corporation, Maynard, Massachusetts, and Olivetti Research Limited, Cambridge, England. + - Copyright 1986, 1987, 1988 by Hewlett-Packard Corporation + - Copyright (c) 1994, 1995 Hewlett-Packard Company + - Copyright Digital Equipment Corporation, 1996 + - Copyright 1999, 2005, 2006 Sun Microsystems, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml b/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml index 0c1931fc184..36a2d3b7471 100644 --- a/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml +++ b/tests/cluecode/data/copyrights/libxmlrpc_c3-libxmlrpc_c.copyright.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Thai Open Source Software Center Ltd count: 1 +allrights: + - Copyright (c) 2001 by First Peer, Inc. All rights reserved. + - Copyright (c) 2001 by Eric Kidd. All rights reserved. + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + - Copyright (c) 2000 by Moez Mahfoudh All rights reserved. + - Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum, Amsterdam \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/libxt6-libxt.label.yml b/tests/cluecode/data/copyrights/libxt6-libxt.label.yml index 006e1092e45..4a30a4be95b 100644 --- a/tests/cluecode/data/copyrights/libxt6-libxt.label.yml +++ b/tests/cluecode/data/copyrights/libxt6-libxt.label.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: The Open Group count: 1 +allrights: + - Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts + - Copyright 1993 by Sun Microsystems, Inc. Mountain View + - Copyright 1985, 1986, 1987, 1988, 1989, 1994, 1998, 2001 The Open Group + - (c) COPYRIGHT International Business Machines Corp. 1992,1997 All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml b/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml index 4805d430d87..88623fb4944 100644 --- a/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml +++ b/tests/cluecode/data/copyrights/license_qpl_v1_0_perfect-QPL_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Trolltech AS, Norway count: 1 +allrights: + - Copyright (c) 1999 Trolltech AS, Norway. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml b/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml index 59f3f997d80..059f1305528 100644 --- a/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml +++ b/tests/cluecode/data/copyrights/linux_source_2_6-linux_source.copyright.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Linus Torvalds and others count: 1 +allrights: + - copyrighted by Linus Torvalds and others. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml b/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml index 4116269d996..b2f44cdce35 100644 --- a/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml +++ b/tests/cluecode/data/copyrights/logica_v1_0-Logica_v.0.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Logica Mobile Networks Limited count: 2 +allrights: + - Copyright (c) 1996-2001 Logica Mobile Networks Limited, all rights reserved. + - Copyright (c) 1996-2001 Logica Mobile Networks Limited \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/long_holder_name.txt.yml b/tests/cluecode/data/copyrights/long_holder_name.txt.yml index 8784bc6c3eb..f6d55cd479e 100644 --- a/tests/cluecode/data/copyrights/long_holder_name.txt.yml +++ b/tests/cluecode/data/copyrights/long_holder_name.txt.yml @@ -11,4 +11,5 @@ expected_failures: - copyrights - holders notes: we should not detect very long names - \ No newline at end of file +allrights: + - Copyright (c) 2000-2021 Adolph Blaine Charles David Earl Frederick Gerald Hubert Irvin John Kenneth Lloyd Martin Nero Oliver Paul Quincy Randolph Sherman Thomas Uncas Victor William Xerxes Yancy Zeus Wolfeschlegelsteinhausenbergerdorffwelchevoralternwarengewissenhaftschaferswessenschafewarenwohlgepflegeundsorgfaltigkeitbeschutzenvonangreifendurchihrraubgierigfeindewelchevoralternzwolftausendjahresvorandieerscheinenvanderersteerdemenschderraumschiffgebrauchlichtalsseinursprungvonkraftgestartseinlangefahrthinzwischensternartigraumaufdersuchenachdiesternwelchegehabtbewohnbarplanetenkreisedrehensichundwohinderneurassevonverstandigmenschlichkeitkonntefortpflanzenundsicherfreuenanlebenslanglichfreudeundruhemitnichteinfurchtvorangreifenvonandererintelligentgeschopfsvonhinzwischensternartigraum \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/long_name.txt.yml b/tests/cluecode/data/copyrights/long_name.txt.yml index 130a8510207..c2ff99d1372 100644 --- a/tests/cluecode/data/copyrights/long_name.txt.yml +++ b/tests/cluecode/data/copyrights/long_name.txt.yml @@ -11,4 +11,6 @@ holders: expected_failures: - copyrights - holders -notes: we should not detect very long names \ No newline at end of file +notes: we should not detect very long names +allrights: + - Copyright (c) 2021 Adolph Blaine Charles David Earl Frederick Gerald Hubert Irvin John Kenneth Lloyd Martin Nero Oliver Paul Quincy Randolph Sherman Thomas Uncas Victor William Xerxes Yancy Zeus Wolfeschlegelsteinhausenbergerdorffwelchevoralternwarengewissenhaftschaferswessenschafewarenwohlgepflegeundsorgfaltigkeitbeschutzenvonangreifendurchihrraubgierigfeindewelchevoralternzwolftausendjahresvorandieerscheinenvanderersteerdemenschderraumschiffgebrauchlichtalsseinursprungvonkraftgestartseinlangefahrthinzwischensternartigraumaufdersuchenachdiesternwelchegehabtbewohnbarplanetenkreisedrehensichundwohinderneurassevonverstandigmenschlichkeitkonntefortpflanzenundsicherfreuenanlebenslanglichfreudeundruhemitnichteinfurchtvorangreifenvonandererintelligentgeschopfsvonhinzwischensternartigraum \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml b/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml index 5167539d17b..6e28d973614 100644 --- a/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml +++ b/tests/cluecode/data/copyrights/luxi_fonts-Luxi_fonts.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: URW++ GmbH. count: 1 +allrights: + - copyright (c) 2001 by Bigelow & Holmes Inc. + - copyright (c) 2001 by URW++ GmbH. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/maia-Maia.yml b/tests/cluecode/data/copyrights/maia-Maia.yml index cb16aca93a2..e36cd04e145 100644 --- a/tests/cluecode/data/copyrights/maia-Maia.yml +++ b/tests/cluecode/data/copyrights/maia-Maia.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Robert LeBlanc count: 1 +allrights: + - Copyright 2004 by Robert LeBlanc All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/man_page.txt.yml b/tests/cluecode/data/copyrights/man_page.txt.yml index f0d004b7bdd..b74dad931b1 100644 --- a/tests/cluecode/data/copyrights/man_page.txt.yml +++ b/tests/cluecode/data/copyrights/man_page.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Free Software Foundation, Inc., and others count: 1 +allrights: + - Copyright 2001-2017 Free Software Foundation, Inc., and others. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/math.c.yml b/tests/cluecode/data/copyrights/math.c.yml index bb0ec0b7c1a..b8dc5618d6f 100644 --- a/tests/cluecode/data/copyrights/math.c.yml +++ b/tests/cluecode/data/copyrights/math.c.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Vladimir Oleynik count: 1 +allrights: + - Copyright (c) 1989, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. + - Copyright (c) 1997-2005 Herbert Xu + - Copyright (c) 2001 Aaron Lehmann + - Paul Mundt (c) 2004 + - Vladimir Oleynik (c) 2001-2005 \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml b/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml index 6a309e4f6da..d1376479666 100644 --- a/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml +++ b/tests/cluecode/data/copyrights/maven_pom_xstream-pom_xml.xml.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: XStream committers count: 1 +allrights: + - Copyright (c) 2006 Joe Walnes. + - Copyright (c) 2006, 2007, 2008 XStream committers. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml b/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml index 7fac18ec53d..47beb793f81 100644 --- a/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml +++ b/tests/cluecode/data/copyrights/mergesort_java-MergeSort_java.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml b/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml index aff285c3c14..38c56bf146b 100644 --- a/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml +++ b/tests/cluecode/data/copyrights/mips1_be_elf_hal_o_uu-mips_be_elf_hal_o_uu.uu.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml b/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml index a99776f87e0..ee79273ca55 100644 --- a/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml +++ b/tests/cluecode/data/copyrights/misco/allrisghts.txt.yml @@ -5,3 +5,5 @@ copyrights: - Copyright (c) 2008 by Amalasoft Corporation holders: - Amalasoft Corporation +allrights: + - Copyright (c) 2008 All rights reserved by Amalasoft Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/cali_1.txt.yml b/tests/cluecode/data/copyrights/misco/cali_1.txt.yml index defd06728a3..2efe45dade0 100644 --- a/tests/cluecode/data/copyrights/misco/cali_1.txt.yml +++ b/tests/cluecode/data/copyrights/misco/cali_1.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 1988, 1993 The Regents of the University ofCalifornia holders: - The Regents of the University ofCalifornia +allrights: + - Copyright (c) 1988, 1993 The Regents of the University ofCalifornia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/cip4.txt.yml b/tests/cluecode/data/copyrights/misco/cip4.txt.yml index 425e73c5aac..c1b1478e70e 100644 --- a/tests/cluecode/data/copyrights/misco/cip4.txt.yml +++ b/tests/cluecode/data/copyrights/misco/cip4.txt.yml @@ -8,3 +8,5 @@ copyrights: holders: - The International Cooperation for the Integration of Processes in Prepress, Press and Postpress (CIP4) +allrights: + - Copyright (c) The International Cooperation for the Integration of Processes in Prepress, Press and Postpress (CIP4). All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/codehaus.txt.yml b/tests/cluecode/data/copyrights/misco/codehaus.txt.yml index 7a317881e48..8339348b1c1 100644 --- a/tests/cluecode/data/copyrights/misco/codehaus.txt.yml +++ b/tests/cluecode/data/copyrights/misco/codehaus.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2002 (c) The Codehaus holders: - The Codehaus +allrights: + - Copyright 2002 (c) The Codehaus. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/french-1.txt.yml b/tests/cluecode/data/copyrights/misco/french-1.txt.yml index 8f81c2ffbbd..c6f600f83ce 100644 --- a/tests/cluecode/data/copyrights/misco/french-1.txt.yml +++ b/tests/cluecode/data/copyrights/misco/french-1.txt.yml @@ -5,3 +5,5 @@ copyrights: - Engie (c) COPYRIGHT 2020 holders: - Engie +allrights: + - Engie (c) COPYRIGHT 2020 - Tous Droits Reserves \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/german-1.txt.yml b/tests/cluecode/data/copyrights/misco/german-1.txt.yml index 348ec2c9967..307e97492c2 100644 --- a/tests/cluecode/data/copyrights/misco/german-1.txt.yml +++ b/tests/cluecode/data/copyrights/misco/german-1.txt.yml @@ -5,3 +5,5 @@ copyrights: - Copyright (x) 1998-2021 ActiveVB. holders: - ActiveVB +allrights: + - Copyright (x) 1998-2021 ActiveVB. Alle Rechte vorbehalten. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml b/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml index 901a8256a89..26f6b32e584 100644 --- a/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml +++ b/tests/cluecode/data/copyrights/misco/open-contributors.txt.yml @@ -2,3 +2,5 @@ what: - copyrights copyrights: - Copyright (c) 2019-2021, Open source contributors +allrights: + - Copyright (c) 2019-2021, Open source contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml b/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml index b8435f81351..800ba3442e0 100644 --- a/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml +++ b/tests/cluecode/data/copyrights/misco/w3c_1.txt.yml @@ -8,3 +8,5 @@ copyrights: holders: - World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de Recherche en Informatique et en Automatique, Keio University +allrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de Recherche en Informatique et en Automatique, Keio University ). All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml b/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml index 7f1f7ad9706..36176061742 100644 --- a/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/antarctic.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Bryan Scott (for Australian Antarctic Division) count: 1 +allrights: + - (c) Copyright 2003, 2004, by Bryan Scott (for Australian Antarctic Division). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/arizona.txt.yml b/tests/cluecode/data/copyrights/misco2/arizona.txt.yml index 995fa41fb0b..0f97c961efb 100644 --- a/tests/cluecode/data/copyrights/misco2/arizona.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/arizona.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Arizona Board of Regents (University of Arizona) count: 1 +allrights: + - Copyright (c) 2005-2006 Arizona Board of Regents (University of Arizona). All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/ayman.txt.yml b/tests/cluecode/data/copyrights/misco2/ayman.txt.yml index 10675d09fa9..8ef78324b76 100644 --- a/tests/cluecode/data/copyrights/misco2/ayman.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/ayman.txt.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: Hanns Holger Rutz count: 1 +allrights: + - Copyright (c) by Ayman Al-Sairafi + - Copyright (c) 2011-2015 by Hanns Holger Rutz. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml b/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml index 1b1b5945a36..13744fbedfe 100644 --- a/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml +++ b/tests/cluecode/data/copyrights/misco2/bsdnrl-BSDNRL.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - copyright by The Regents of the University of California. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml b/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml index a20e9080c13..4499b4bd7ba 100644 --- a/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/chinese_char.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: 2016Nian Allen count: 1 +allrights: + - Copyright (c) 2016Nian Allen. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml b/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml index 2187849e9a5..64fd2bfb69f 100644 --- a/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/contributing-members.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Contributing Member(s) of Distributed Management Task Force, Inc count: 1 +allrights: + - Copyright (c) 2017, Contributing Member(s) of Distributed Management Task Force, Inc.. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml b/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml index 971e15be15a..d9e2e33ef7e 100644 --- a/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/copyrighted-by-colon.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2003 Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml b/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml index e2032d719b3..de9cb65d6aa 100644 --- a/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/copyrighted-complex.txt.yml @@ -15,3 +15,5 @@ holders_summary: - value: Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University count: 1 +allrights: + - copyrighted by http://www.dre.vanderbilt.edu/~schmidt/ Douglas C. Schmidt and his http://www.cs.wustl.edu/~schmidt/ACE-members.html research group at http://www.wustl.edu/ Washington University, http://www.uci.edu University of California, Irvine, and http://www.vanderbilt.edu Vanderbilt University, Copyright (c) 1993-2009, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml index 8e6a8b99770..2cca606020b 100644 --- a/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/distributed_1.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Distributed Frontera developers count: 1 +allrights: + - Copyright (c) Distributed Frontera developers. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml index ae9bb8c7b70..2f6ff3099b6 100644 --- a/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/distributed_10.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Distributed InforMation ProcBssing Ltd. count: 1 +allrights: + - Copyright (c) Distributed InforMation ProcBssing Ltd. Alle Rechte Vorbehalten \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml index 7d8747fc2e3..2a4a8321ce6 100644 --- a/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/distributed_4.txt.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Gregory Popovitch count: 1 +allrights: + - (c) 2019-2023 Gregory Popovitch. + - (c) Distributed Ledger Technology Collaboration and contributors. + - (c) 2017-2023 Bartosz Taudul. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml index c57a942aadc..cfb5ff4b28f 100644 --- a/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/distributed_6.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Distributed Processing Technology Corporation count: 1 +allrights: + - Copyright (c) 1996-1999 Distributed Processing Technology Corporation All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml index 248d9aa430c..62c78fb1b21 100644 --- a/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/distributed_7.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: distributed processing technology corporation count: 1 +allrights: + - Copyright (c) distributed processing technology corporation all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml index 757e7168efe..e7b9c293cc6 100644 --- a/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/distributed_8.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Distributed via COMTEX News. YYYY A&G Information Services count: 1 +allrights: + - (c) Distributed via COMTEX News. (c) YYYY A&G Information Services, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml b/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml index 39eb454be81..a8780064f28 100644 --- a/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/distributed_9.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Distributed Software System Lab count: 1 +allrights: + - Copyright (c) Distributed Software System Lab. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml b/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml index 2187849e9a5..64fd2bfb69f 100644 --- a/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/dtmf-contrib.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Contributing Member(s) of Distributed Management Task Force, Inc count: 1 +allrights: + - Copyright (c) 2017, Contributing Member(s) of Distributed Management Task Force, Inc.. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/email-name.txt.yml b/tests/cluecode/data/copyrights/misco2/email-name.txt.yml index 6a805ca8398..4db0679a23f 100644 --- a/tests/cluecode/data/copyrights/misco2/email-name.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/email-name.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Roy Marples count: 1 +allrights: + - Copyright (c) 2006-2010 Roy Marples All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/fiat.txt.yml b/tests/cluecode/data/copyrights/misco2/fiat.txt.yml index 93a4a18ff5b..b38ecaaea24 100644 --- a/tests/cluecode/data/copyrights/misco2/fiat.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/fiat.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the fiat-crypto authors see count: 1 +allrights: + - Copyright (c) 2015-2016 the fiat-crypto authors (see https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml b/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml index 1e432dd9a5c..b31ae4c69b8 100644 --- a/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/font-awesome.txt.yml @@ -20,3 +20,8 @@ holders_summary: count: 1 - value: glyphicon-copyright-mark Rubix count: 1 +allrights: + - Copyright fa-copyright 2020 by the authors + - Copyright 2022, LLC + - Copyright glyphicon-copyright-mark http://www.dalegroup.net + - Copyright glyphicon-copyright-mark 1998 - 2014 Rubix. Alle rechten voorbehouden. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml b/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml index 3b0a556e962..d34d07a5bd9 100644 --- a/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/html_allright.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: CKSource Holding sp. z o.o. count: 1 +allrights: + - Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml b/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml index 8602bfede8b..c013c4fdc1c 100644 --- a/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/jpnic.txt.yml @@ -18,3 +18,8 @@ holders_summary: count: 3 - value: Japan Registry Services Co., Ltd. count: 1 +allrights: + - Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved. + - Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved. + - Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved. + - Copyright (c) 2010-2012 Japan Registry Services Co., Ltd. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml b/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml index de99c95725c..b76cda1a877 100644 --- a/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/knowledge.txt.yml @@ -18,3 +18,7 @@ holders_summary: count: 1 - value: Knowledge Research and its affiliates count: 1 +allrights: + - Copyright (c) Knowledge Research and its affiliates. All Rights Reserved + - Copyright (c) Knowledge & Experience. All rights reserved. + - Copyright (c) Knowledge Computing Corp. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/myconame.txt.yml b/tests/cluecode/data/copyrights/misco2/myconame.txt.yml index d473c7e36be..223a14a0b08 100644 --- a/tests/cluecode/data/copyrights/misco2/myconame.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/myconame.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: MyCompanyName count: 1 +allrights: + - Copyright 2005 MyCompanyName . All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/nick.txt.yml b/tests/cluecode/data/copyrights/misco2/nick.txt.yml index f2ace8d1fe5..e16fc60c858 100644 --- a/tests/cluecode/data/copyrights/misco2/nick.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/nick.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Nick Galbreath count: 1 +allrights: + - Copyright (c) 2005, 2006 Nick Galbreath - nickg at modp dot com All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml b/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml index a6198a7209d..1488b746e68 100644 --- a/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/ocaml.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: OCamlPro count: 1 +allrights: + - Copyright 2013-2020 by OCamlPro. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml b/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml index 8233f92b1cc..8c2686e95ce 100644 --- a/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/opyright-baidu.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Baidu Inc. count: 1 +allrights: + - opyright 2014 Baidu Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/osm.txt.yml b/tests/cluecode/data/copyrights/misco2/osm.txt.yml index 06cf18ea90c..e0b064af5e2 100644 --- a/tests/cluecode/data/copyrights/misco2/osm.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/osm.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: OpenStreetMap contributors count: 1 +allrights: + - (c) OpenStreetMap contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/partners.txt.yml b/tests/cluecode/data/copyrights/misco2/partners.txt.yml index 7d35cee9bf0..93f9cc94d4a 100644 --- a/tests/cluecode/data/copyrights/misco2/partners.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/partners.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 1999/2000 JJ2000 Partners holders: - JJ2000 Partners +allrights: + - Copyright (c) 1999/2000 JJ2000 Partners. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml b/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml index 8ec9d803d17..9597423f619 100644 --- a/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/portion-copyright.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Carl E. Harris count: 1 +allrights: + - copyrighted by Carl E. Harris, 1993 and 1995. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml b/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml index f32043987bc..03a3cd83b9b 100644 --- a/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/refinery-and-contribs.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Object Refinery Limited and Contributors count: 1 +allrights: + - Copyright (c) 2000-2013, by Object Refinery Limited and Contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml index e07b2f7ca01..175e612e05d 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-002.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2013-2015, 2016, Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright (c) 2013-2015, 2016, Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml index b41f97a0a87..49da82bf724 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-003.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2013-2015 Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright 2013-2015 Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml index aa1ab9a73ad..c6d9f562e52 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-005.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright (c) Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml index 7015ff97c38..bd084732589 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-008.txt.yml @@ -3,6 +3,8 @@ what: - holders - authors copyrights: - - Copyright 2011 craigslist, inc + - Copyright 2011 craigslist, inc. holders: - - craigslist, inc + - craigslist, inc. +allrights: + - Copyright 2011 craigslist, inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml index aba77d229b9..eeb37d34bb7 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-012.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2011, Joyent, Inc. holders: - Joyent, Inc. +allrights: + - Copyright (c) 2011, Joyent, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml index f88471382ff..7a088ae8999 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-013.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2011, Robert Mustacchi holders: - Robert Mustacchi +allrights: + - Copyright (c) 2011, Robert Mustacchi. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml index 233338ecf2b..41fd82f5188 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-017.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2009-2013, Jeff Mott holders: - Jeff Mott +allrights: + - Copyright (c) 2009-2013, Jeff Mott. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml index 93cb5933d7b..11840b88cd4 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-020.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2012, Mark Cavage holders: - Mark Cavage +allrights: + - Copyright (c) 2012, Mark Cavage. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml index 63608e72ab8..c85c1aa3814 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-022.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2011 Joyent, Inc. holders: - Joyent, Inc. +allrights: + - Copyright 2011 Joyent, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml index 1077bcc6cfa..8f8e518527c 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-023.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2011 Mark Cavage holders: - Mark Cavage +allrights: + - Copyright 2011 Mark Cavage All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml index 1549c2deb20..1f4a5a42914 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-024.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2012 Joyent, Inc. holders: - Joyent, Inc. +allrights: + - Copyright 2012 Joyent, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml index 0d3ba9fb369..846c5050674 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-028.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2012-2014 Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright (c) 2012-2014 Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml index ab23b65643b..8384eec83ca 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-031.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright (c) 2014 Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml index 76a7231bcad..e77ed740fb0 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-041.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2011, The Dojo Foundation holders: - The Dojo Foundation +allrights: + - Copyright (c) 2011, The Dojo Foundation All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml index 0163462edc5..4bfb95bf72c 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-042.txt.yml @@ -6,3 +6,5 @@ copyrights: - copyright 2011 Kevin Kwok (antimatter15@gmail.com) holders: - Kevin Kwok +allrights: + - copyright 2011 Kevin Kwok (antimatter15@gmail.com). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml index a2a18d2fddc..f8507523cd7 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-043.txt.yml @@ -6,3 +6,5 @@ copyrights: - copyright 2011 antimatter15 (antimatter15@gmail.com) holders: - antimatter15 +allrights: + - copyright 2011 antimatter15 (antimatter15@gmail.com). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml index c9eba27440c..b50d3cc5201 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-044.txt.yml @@ -6,3 +6,5 @@ copyrights: - copyright 2012 Eli Skeggs holders: - Eli Skeggs +allrights: + - copyright 2012 Eli Skeggs. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml index 67d5efe15f9..b4b964519a2 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-046.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright c 2011 by Kimberly Geswein holders: - Kimberly Geswein +allrights: + - Copyright c 2011 by Kimberly Geswein All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml index 47f606b4fed..dd15e9cf1f3 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-103.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2011-2013, Christopher Jeffrey holders: - Christopher Jeffrey +allrights: + - Copyright (c) 2011-2013, Christopher Jeffrey. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml index 47f606b4fed..dd15e9cf1f3 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-104.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2011-2013, Christopher Jeffrey holders: - Christopher Jeffrey +allrights: + - Copyright (c) 2011-2013, Christopher Jeffrey. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml index b1d5e92cb90..d3021d2b3cd 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-114.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2012 Tyler Kellen holders: - Tyler Kellen +allrights: + - Copyright (c) 2012 Tyler Kellen. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml index 0fd9bb41f37..b277bc88e4e 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-115.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2012 Vitaly Puzrin (https://github.com/puzrin) holders: - Vitaly Puzrin +allrights: + - Copyright (c) 2012 Vitaly Puzrin (https://github.com/puzrin). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml index 078e710b96c..1c505e39496 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-127.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2013 Jon Schlinkert, contributors holders: - Jon Schlinkert, contributors +allrights: + - Copyright (c) 2013 Jon Schlinkert, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml index a554cdabc64..58791f4c4f3 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-135.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2013 Upstage holders: - Upstage +allrights: + - Copyright (c) 2013 Upstage. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml index 1c4d1c4df76..1dc15dbc2be 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-145.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2013, Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright (c) 2013, Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml index 4ef658162cd..1738ef004c7 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-148.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Assemble, contributors holders: - Assemble, contributors +allrights: + - Copyright (c) 2014 Assemble, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml index 37045081676..e1fa77e3e30 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-150.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Brian Woodward, Jon Schlinkert, contributors holders: - Brian Woodward, Jon Schlinkert, contributors +allrights: + - Copyright (c) 2014 Brian Woodward, Jon Schlinkert, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml index 42fb8bfee36..de2ee8a91b0 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-151.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Brian Woodward, contributors holders: - Brian Woodward, contributors +allrights: + - Copyright (c) 2014 Brian Woodward, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml index 385a69f9038..cb4a232c313 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-159.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors holders: - Jon Schlinkert, Brian Woodward, contributors +allrights: + - Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml index 6d0af0cdcde..6a34433b903 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-160.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Jon Schlinkert, Brian Woodward holders: - Jon Schlinkert, Brian Woodward +allrights: + - Copyright (c) 2014 Jon Schlinkert, Brian Woodward. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml index 1d6a1251f81..ef9d0547af8 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-162.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Jon Schlinkert, contributors holders: - Jon Schlinkert, contributors +allrights: + - Copyright (c) 2014 Jon Schlinkert, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml index ea395aef6af..dbfd399b6fa 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-170.txt.yml @@ -7,3 +7,5 @@ copyrights: contributors holders: - Jon Schlinkert Brian Woodward contributors +allrights: + - Copyright (c) 2014 Jon Schlinkert (http://twitter.com/jonschlinkert), Brian Woodward (http://twitter.com/doowb), contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml index 2900727528c..0a92a55c733 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-175.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014, Jon Schlinkert, Brian Woodward, contributors holders: - Jon Schlinkert, Brian Woodward, contributors +allrights: + - Copyright (c) 2014, Jon Schlinkert, Brian Woodward, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml index f6c79eeabda..cc55aa49ec1 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-177.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014, Jon Schlinkert, contributors holders: - Jon Schlinkert, contributors +allrights: + - Copyright (c) 2014, Jon Schlinkert, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml index 9efab713934..a05a803b9e1 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-178.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014-2015 Jon Schlinkert, contributors holders: - Jon Schlinkert, contributors +allrights: + - Copyright (c) 2014-2015 Jon Schlinkert, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml index 5ac9d7a0a9d..fe15320173e 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-179.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2015 Jon Schlinkert, contributors holders: - Jon Schlinkert, contributors +allrights: + - Copyright (c) 2015 Jon Schlinkert, contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml index 34fabe8d964..658d365d382 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-185.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2010, 2011, Chris Winberry holders: - Chris Winberry +allrights: + - Copyright 2010, 2011, Chris Winberry All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml index 59a6452cb19..59aa373271e 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-186.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2010, Chris Winberry holders: - Chris Winberry +allrights: + - Copyright 2010, Chris Winberry All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml index f3e0e37ae81..5e50e8f00fb 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-190.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2011 The Closure Compiler Authors holders: - The Closure Compiler Authors +allrights: + - Copyright 2011 The Closure Compiler Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml index 856fb603345..bb05a2451ad 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-197.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2012- GoInstant, Inc. and other contributors holders: - GoInstant, Inc. and other contributors +allrights: + - Copyright 2012- GoInstant, Inc. and other contributors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml index 8fbd127b352..45a8ee15ef6 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-212.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014 Caolan McMahon (https://github.com/caolan), contributors holders: - Caolan McMahon contributors +allrights: + - Copyright (c) 2014 Caolan McMahon (https://github.com/caolan), contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml index 0aaf9e3c0cd..ea0a42b1f2a 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-220.txt.yml @@ -6,3 +6,5 @@ copyrights: - copyright 2011 Kevin van Zonneveld holders: - Kevin van Zonneveld +allrights: + - copyright 2011 Kevin van Zonneveld. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml index a10d2ceda62..2dd3c562ac6 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-222.txt.yml @@ -6,3 +6,5 @@ copyrights: - copyright (c) 2012 openmason holders: - openmason +allrights: + - copyright (c) 2012 openmason. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml index 31153baff06..0aa035d832d 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq-225.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2013-2015, Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright (c) 2013-2015, Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml index a8f6689155e..fa6a4f4dee6 100644 --- a/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml +++ b/tests/cluecode/data/copyrights/misco2/regexhq/regexhq.ABOUT.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2015 Jon Schlinkert holders: - Jon Schlinkert +allrights: + - Copyright (c) 2015 Jon Schlinkert. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml b/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml index e81e833f7d3..cb51ffb6039 100644 --- a/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/the-asf.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2001-2008 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml b/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml index 0343db4d0dc..c67c2a9ba10 100644 --- a/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/w3c-ercim.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: W3C(r) (MIT, ERCIM, Keio, Beihang) count: 1 +allrights: + - Copyright (c) YEAR W3C(r) (MIT, ERCIM, Keio, Beihang). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml b/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml index cb0fc69da2f..12c7f6ab4db 100644 --- a/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml +++ b/tests/cluecode/data/copyrights/misco2/w3c_complex.txt.yml @@ -13,3 +13,5 @@ holders_summary: - value: W3C (R) (Massachusetts_Institute_of_Technology, Institut National_de_Recherche_en_Informatique_et_en_Automatique, Keio_University) count: 1 +allrights: + - Copyright (c) 1994-2002 W3C (R) (Massachusetts_Institute_of_Technology, Institut National_de_Recherche_en_Informatique_et_en_Automatique, Keio_University), All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml b/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml index 45f36e38d69..97ab352c638 100644 --- a/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml +++ b/tests/cluecode/data/copyrights/misco3/apache-foundation.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2009 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml b/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml index c2df105837f..aff50ab205c 100644 --- a/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml +++ b/tests/cluecode/data/copyrights/misco3/distributed-copyright.txt.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: GSyC/LibreSoft, Universidad Rey Juan Carlos count: 1 +allrights: + - Copyright (c) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos. + - Copyright (c) Distributed Management Task Force \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml index 5b909aed302..a6f1d2aeef8 100644 --- a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml +++ b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE.txt.yml @@ -16,3 +16,6 @@ holders_summary: count: 1 - value: Formidable Labs count: 1 +allrights: + - Copyright (c) 2015-2020 Formidable Labs. + - Copyright (c) 2016-2020 Alexey Svetliakov https://github.com/asvetliakov , snerks https://github.com/snerks, Krzysztof Cebula https://github.com Havret, Vitaliy Polyanskiy https://github.com/alreadyExisted, James Lismore https://github.com/jlismore \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml index f2f52d3c235..2c85d03180f 100644 --- a/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml +++ b/tests/cluecode/data/copyrights/misco3/intractable-copyright-in-LICENSE2.txt.yml @@ -16,3 +16,6 @@ holders_summary: count: 1 - value: Formidable Labs count: 1 +allrights: + - Copyright (c) 2015-2020 Formidable Labs. + - Copyright (c) 2016-2020 Alexey Svetliakov https://github.com/asvetliakov , snerks https://github.com/snerks, Krzysztof Cebula https://github.com/Havret , Vitaliy Polyanskiy https://github.com/alreadyExisted, James Lismore https://github.com/jlismore \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml b/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml index edbba5e7144..7ba4a358940 100644 --- a/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml +++ b/tests/cluecode/data/copyrights/misco3/parens-with-spaces.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: 3Dfx Interactive, Inc. count: 1 +allrights: + - Copyright (1997 3Dfx Interactive, Inc.) All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml b/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml index ac916d9803b..320142f5751 100644 --- a/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/as-represented.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2000 United States Government as represented by the Secretary of the Navy holders: - United States Government as represented by the Secretary of the Navy +allrights: + - Copyright (c) 2000 United States Government as represented by the Secretary of the Navy. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml b/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml index 7ffcfac7947..7581c1825a2 100644 --- a/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/initial-dev-again.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 2005 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml index a6980ce2128..6899ead7e53 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/networking/arcnet-hardware.txt.yml @@ -20,4 +20,6 @@ authors: expected_failures: - copyrights - holders - - authors \ No newline at end of file + - authorsallrights: + - (c) 1985 Waterloo Micro. + - (c) 1985 \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml index 13751f0fe39..3fb614a0c89 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/Documentation/s390/Debugging390.txt.yml @@ -12,3 +12,7 @@ holders: - Free Software Foundation, Inc. authors: - Denis Joseph Barrow +allrights: + - Copyright (c) 2000-2001 IBM Deutschland Entwicklung GmbH, IBM Corporation Best + - (c) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation. + - Copyright 1998 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml index e4d0fb2a6d8..a05a054e01e 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/kernel/sys_arm.c.yml @@ -8,3 +8,6 @@ copyrights: holders: - People - Russell King +allrights: + - Copyright (c) People + - Copyright (c) 1995, 1996 Russell King. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml index 99680374350..7c2a528e5a7 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-imx/mach-bug.c.yml @@ -12,3 +12,8 @@ holders: - Shane Nay - Freescale Semiconductor, Inc. - Denis GNUtoo Carikli +allrights: + - Copyright (c) 2000 Deep Blue Solutions Ltd + - Copyright (c) 2002 Shane Nay (shane@minirl.com) + - Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved. + - Copyright 2011 Denis GNUtoo Carikli \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml index bbbab2d5893..d2c83737e5f 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm/mach-tegra/platsmp.c.yml @@ -8,3 +8,6 @@ copyrights: holders: - ARM Ltd. - Palm +allrights: + - Copyright (c) 2002 ARM Ltd. All Rights Reserved + - Copyright (c) 2009 Palm All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml index 703697e6f05..96b82cd6a68 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/arm64/kernel/sys_compat.c.yml @@ -10,3 +10,7 @@ holders: - People - Russell King - ARM Ltd. +allrights: + - Copyright (c) People + - Copyright (c) 1995, 1996 Russell King. + - Copyright (c) 2012 ARM Ltd. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml index 1e32ec4ac7b..9793c705874 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/microblaze/lib/fastcopy.S.yml @@ -10,3 +10,7 @@ holders: - Michal Simek - PetaLogix - Jim Law - Iris LP +allrights: + - Copyright (c) 2008-2009 Michal Simek + - Copyright (c) 2008-2009 PetaLogix + - Copyright (c) 2008 Jim Law - Iris LP All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml index 78a2818064a..4a4c480efac 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/powerpc/platforms/cell/spufs/Makefile.yml @@ -3,6 +3,8 @@ what: - holders - authors copyrights: - - Copyright (c) 2005 IBM echo Hex-dump + - Copyright (c) 2005 IBM. echo Hex-dump holders: - - IBM echo Hex-dump + - IBM. echo Hex-dump +allrights: + - Copyright (c) 2005 IBM. echo Hex-dump \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml index cfe9f6f2393..1a4e062650c 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_kern.c.yml @@ -10,3 +10,7 @@ holders: - Lennert Buytenhek and James Leu - Jeff Dike - various +allrights: + - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net). + - Copyright (c) 2001 - 2007 Jeff Dike + - Copyright (c) 2001 by various \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml index 6fde9d70c9c..ec2f31fa4de 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/daemon_user.c.yml @@ -10,3 +10,7 @@ holders: - Jeff Dike - Lennert Buytenhek and James Leu - various +allrights: + - Copyright (c) 2001 - 2007 Jeff Dike + - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net). + - Copyright (c) 2001 by various \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml index 6fde9d70c9c..ec2f31fa4de 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/net_kern.c.yml @@ -10,3 +10,7 @@ holders: - Jeff Dike - Lennert Buytenhek and James Leu - various +allrights: + - Copyright (c) 2001 - 2007 Jeff Dike + - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net). + - Copyright (c) 2001 by various \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml index 34996bd8282..f33560ffbee 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/arch/um/drivers/umcast_kern.c.yml @@ -12,3 +12,8 @@ holders: - Jeff Dike - Lennert Buytenhek and James Leu - various +allrights: + - Copyright (c) 2001 by Harald Welte + - Copyright (c) 2001 - 2007 Jeff Dike + - Copyright (c) 2001 Lennert Buytenhek (buytenh@gnu.org) and James Leu (jleu@mindspring.net). + - Copyright (c) 2001 by various \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml index ea166d615a8..185849531ea 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/ata/sata_mv.c.yml @@ -13,3 +13,7 @@ holders: authors: - Brett Russ. Extensive - Mark Lord +allrights: + - Copyright 2008-2009 Marvell Corporation, all rights reserved. + - Copyright 2005 EMC Corporation, all rights reserved. + - Copyright 2005 Red Hat, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml index d23fd8add58..52bd80c9a4a 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/gpu/drm/drm_agpsupport.c.yml @@ -11,3 +11,6 @@ holders: authors: - Rickard E. - Gareth Hughes +allrights: + - Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. + - Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml index cbc8cbd11d3..3a8246c2806 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/hid/hid-appleir.c.yml @@ -21,3 +21,10 @@ authors: - Greg Kroah-Hartman - Bastien Nocera - Benjamin Tissoires +allrights: + - Copyright (c) 2006 James McKenzie + - Copyright (c) 2008 Greg Kroah-Hartman + - Copyright (c) 2008 Novell Inc. + - Copyright (c) 2010, 2012 Bastien Nocera + - Copyright (c) 2013 Benjamin Tissoires + - Copyright (c) 2013 Red Hat Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml index 7ea2f1f11f5..90d014770d0 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_bridge.h.yml @@ -12,3 +12,8 @@ holders: - Ilyes Gouta - m5603x - Willem Duinker +allrights: + - Copyright (c) 2008 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml index 7ea2f1f11f5..90d014770d0 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_core.c.yml @@ -12,3 +12,8 @@ holders: - Ilyes Gouta - m5603x - Willem Duinker +allrights: + - Copyright (c) 2008 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml index 7ea2f1f11f5..90d014770d0 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.c.yml @@ -12,3 +12,8 @@ holders: - Ilyes Gouta - m5603x - Willem Duinker +allrights: + - Copyright (c) 2008 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml index 7b5f5f1257c..85488ec1406 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_mt9m111.h.yml @@ -14,3 +14,9 @@ holders: - m5603x - Willem Duinker - Robert Jarzmik +allrights: + - Copyright (c) 2008 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker + - Copyright (c) 2008, Robert Jarzmik \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml index ea0ce1b65a7..6a30d8c367f 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_ov7660.c.yml @@ -12,3 +12,8 @@ holders: - Ilyes Gouta - m5603x - Willem Duinker +allrights: + - Copyright (c) 2009 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml index 7ea2f1f11f5..90d014770d0 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.c.yml @@ -12,3 +12,8 @@ holders: - Ilyes Gouta - m5603x - Willem Duinker +allrights: + - Copyright (c) 2008 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml index 7ea2f1f11f5..90d014770d0 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_s5k83a.h.yml @@ -12,3 +12,8 @@ holders: - Ilyes Gouta - m5603x - Willem Duinker +allrights: + - Copyright (c) 2008 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml index 7ea2f1f11f5..90d014770d0 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/media/usb/gspca/m5602/m5602_sensor.h.yml @@ -12,3 +12,8 @@ holders: - Ilyes Gouta - m5603x - Willem Duinker +allrights: + - Copyright (c) 2008 Erik Andren + - Copyright (c) 2007 Ilyes Gouta. + - Copyright (c) 2005 m5603x + - Copyright (c) 2006 Willem Duinker \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml index b3d24101140..fb99a50d5cd 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/misc/mei/hw-txe-regs.h.yml @@ -10,3 +10,6 @@ holders: - Intel Corporation authors: - the Host +allrights: + - Copyright (c) 2013 - 2014 Intel Corporation. All rights reserved. + - Copyright (c) 2013 - 2014 Intel Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml index a51786efe8a..7d4d8e66534 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.c.yml @@ -8,3 +8,6 @@ copyrights: holders: - Matthias Brukner, Trajet Gmbh, Rebenring - Volkswagen Group Electronic Research +allrights: + - Copyright (c) 2003 Matthias Brukner, Trajet Gmbh, Rebenring + - Copyright (c) 2002-2007 Volkswagen Group Electronic Research All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml index a51786efe8a..7d4d8e66534 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/can/sja1000/sja1000.h.yml @@ -8,3 +8,6 @@ copyrights: holders: - Matthias Brukner, Trajet Gmbh, Rebenring - Volkswagen Group Electronic Research +allrights: + - Copyright (c) 2003 Matthias Brukner, Trajet Gmbh, Rebenring + - Copyright (c) 2002-2007 Volkswagen Group Electronic Research All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml index 58648944a16..9fe43844598 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/broadcom/tg3.h.yml @@ -25,3 +25,10 @@ authors: - Transmit MAC. - Receive List Placement - Host Coalescing +allrights: + - Copyright (c) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com) + - Copyright (c) 2001 Jeff Garzik (jgarzik@pobox.com) + - Copyright (c) 2004 Sun Microsystems Inc. + - Copyright (c) 2007-2016 Broadcom Corporation. + - Copyright (c) 2016-2017 Broadcom Limited. + - Copyright (c) 2018 Broadcom. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml index 82aeac4bb90..83a50160c95 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/ethernet/dec/tulip/de4x5.c.yml @@ -30,3 +30,5 @@ authors: - - - +allrights: + - Copyright 1994, 1995 Digital Equipment Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml index a401fc84233..c48700b2fa1 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/net/wireless/intel/ipw2x00/ipw2200.c.yml @@ -12,3 +12,8 @@ holders: - Axis Communications AB Ethereal - Gerald Combs - Intel Corporation +allrights: + - Copyright (c) 2003 - 2006 Intel Corporation. All rights reserved. + - Copyright 2000, Axis Communications AB Ethereal + - Copyright 1998 Gerald Combs + - Copyright (c) 2003-2006 Intel Corporation \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml index 40c633300a5..79030fcf843 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/scsi/scsi_transport_fc.c.yml @@ -10,3 +10,6 @@ holders: - James Smart, Emulex Corporation Rewrite authors: - Martin Hicks +allrights: + - Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved. + - Copyright (c) 2004-2007 James Smart, Emulex Corporation Rewrite \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml index 2f4970266ad..7abae426979 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtl8723bs/hal/sdio_ops.c.yml @@ -8,3 +8,5 @@ holders: - Realtek Corporation authors: - Roger +allrights: + - Copyright (c) 2007 - 2012 Realtek Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml index 24c22fbae0c..bf63ca54de5 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_sdio.c.yml @@ -10,3 +10,5 @@ authors: - KaiYuan Chang/Ivan Lin Return - KaiYuan Chang Return - Ivan Return +allrights: + - Copyright (c) 2016 Realtek Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml index 0001503be50..322d67f54db 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_8822b/halmac_api_8822b_usb.c.yml @@ -10,3 +10,5 @@ authors: - KaiYuan Chang Return - KaiYuan Chang Return - Ivan Return +allrights: + - Copyright (c) 2016 Realtek Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml index aef7df5ca48..62ebee63e2b 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx.c.yml @@ -69,3 +69,5 @@ authors: - KaiYuan Chang Return - chunchu Return - Ivan Lin Return +allrights: + - Copyright (c) 2016 Realtek Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml index e66041d27f4..512db4a20e1 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_pcie.c.yml @@ -17,3 +17,5 @@ authors: - KaiYuan Chang/Ivan Lin Return - KaiYuan Chang/Ivan Lin Return - Soar Tu Return +allrights: + - Copyright (c) 2016 Realtek Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml index d5d16369a6d..3f8ee6f9b66 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_api_88xx_sdio.c.yml @@ -21,3 +21,5 @@ authors: - Soar Tu Return - Ivan Lin Return - Soar Return +allrights: + - Copyright (c) 2016 Realtek Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml index dd3f5b6c15c..d98d04afead 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/n_tty.c.yml @@ -12,3 +12,7 @@ holders: - Reduced authors: - Andrew J. Kroll +allrights: + - Theodore Ts'o, Copyright 1994. + - Linus Torvalds, Copyright 1991, 1992, 1993 + - Copyright 1994. Reduced \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml index 0b8c0b71bbc..c4e1fb2d9d8 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/tty/nozomi.c.yml @@ -12,3 +12,7 @@ holders: - Option Wireless n/v authors: - Paul Hardwick (p.hardwick@option.com) +allrights: + - Copyright (c) 2005,2006 Option Wireless Sweden AB + - Copyright (c) 2006 Sphere Systems Ltd + - Copyright (c) 2006 Option Wireless n/v All rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml index a7a0235169f..d2110ea9028 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/drivers/usb/gadget/legacy/gmidi.c.yml @@ -14,3 +14,8 @@ holders: - Clemens Ladisch authors: - Grey Innovation Ben Williamson +allrights: + - Copyright (c) 2006 Thumtronics Pty Ltd. + - Copyright (c) 2003-2004 David Brownell. USB Audio + - Copyright (c) 2002 by Takashi Iwai. USB + - Copyright (c) 2002-2005 Clemens Ladisch. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml index 89b5356dc0a..a32a344ee26 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/fs/nilfs2/sufile.c.yml @@ -8,3 +8,5 @@ holders: - Nippon Telegraph and Telephone Corporation authors: - Koji Sato. Revised +allrights: + - Copyright (c) 2006-2008 Nippon Telegraph and Telephone Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml index 37f6e8c3b36..b4b56c98eec 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/acpi/actbl3.h.yml @@ -10,3 +10,7 @@ holders: - Intel Corp. - Microsoft - Microsoft Corporation +allrights: + - Copyright (c) 2000 - 2018, Intel Corp. + - Copyright 2011 Microsoft + - Copyright 2006 Microsoft Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml index 1ea4c4bfdae..9882ad21104 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/linux/pnfs_osd_xdr.h.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2007 Panasas Inc. year of first publication holders: - Panasas Inc. year of first publication +allrights: + - Copyright (c) 2007 Panasas Inc. year of first publication All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml index b01b84a3a29..61df4345875 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/scsi/scsi_transport_fc.h.yml @@ -8,3 +8,6 @@ copyrights: holders: - Silicon Graphics, Inc. - James Smart, Emulex Corporation Rewrite +allrights: + - Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved. + - Copyright (c) 2004-2007 James Smart, Emulex Corporation Rewrite \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml index b19512d6d9f..1e49b01e90e 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/mic_common.h.yml @@ -8,3 +8,5 @@ holders: - Intel Corporation authors: - the Guest. @config Start +allrights: + - Copyright (c) 2013 Intel Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml index 4fd39790af8..a96ea666905 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/include/uapi/linux/nbd.h.yml @@ -10,3 +10,7 @@ holders: - Pavel Machek - VMware, Inc. (Regis HPReg Duchesne) Made - Steven Whitehouse +allrights: + - Copyright (c) Pavel Machek, pavel@ucw.cz. + - Copyright (c) 1999 VMware, Inc. (Regis HPReg Duchesne) Made + - Copyright (c) Steven Whitehouse \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml index 2ca8d98c001..88ac2f8b7c7 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/kernel/time/posix-timers.c.yml @@ -10,3 +10,6 @@ holders: - Boris authors: - George Anzinger george@mvista.com +allrights: + - Copyright (c) 2002 2003 by MontaVista Software. + - Copyright (c) 2004 Boris \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml index 52f2576a997..4e326928b98 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/scripts/coccinelle/api/pm_runtime.cocci.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2013 Texas Instruments Incorporated - GPLv2 holders: - Texas Instruments Incorporated - GPLv2 +allrights: + - Copyright (c) 2013 Texas Instruments Incorporated - GPLv2. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml index 9c596f2bd2d..2726ac5acda 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/ppc/snd_ps3_reg.h.yml @@ -10,3 +10,7 @@ holders: - Sony Computer Entertainment Inc. - Sony Corporation - R Value +allrights: + - Copyright (c) 2007 Sony Computer Entertainment Inc. + - Copyright 2006, 2007 Sony Corporation All rights reserved. + - (c) R Value \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml index 4e086044f33..e3ccf8a0e37 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/sound/soc/codecs/nau8825.c.yml @@ -10,3 +10,6 @@ holders: - Nuvoton Technology Corp. Co-author Meng-Huang Kuo authors: - Anatol Pomozov +allrights: + - Copyright 2015 Google Chromium project. + - Copyright 2015 Nuvoton Technology Corp. Co-author Meng-Huang Kuo \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml b/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml index 7f57db9ee4b..0d1e3b476f7 100644 --- a/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml +++ b/tests/cluecode/data/copyrights/misco4/linux-copyrights/tools/testing/selftests/ntb/ntb_test.sh.yml @@ -8,3 +8,5 @@ holders: - Microsemi authors: - Logan Gunthorpe +allrights: + - Copyright (c) 2016 Microsemi. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml b/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml index 400bc3a8227..631202216dc 100644 --- a/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux/dynamic.txt.yml @@ -16,3 +16,10 @@ holders: - Dynamic Drive - Dynamic System Bars Project - Dynamic Solutions +allrights: + - Copyright (c) Dynamic Network Services, Inc + - Copyright (c) frisB.com + - Copyright (c) dynamic-evaluation, https://github.com/benkrause/dynamic-evaluation + - copyright (c) Dynamic Drive (www.dynamicdrive.com) + - Copyright (c) Dynamic System Bars Project + - Copyright (c) Dynamic Solutions. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml b/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml index 2a9169efd14..e92f477cabb 100644 --- a/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux/irq.txt.yml @@ -12,3 +12,7 @@ holders: - Nokia Corporation authors: - Tony Lindgren and Tuukka Tikkanen +allrights: + - Copyright (c) 1992 Linus Torvalds + - Copyright (c) 1995-2000 Russell King. + - Copyright (c) 2004-2005 Nokia Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml index b5c3aa73c6c..4f482206432 100644 --- a/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux4/multilines.txt.yml @@ -8,3 +8,5 @@ holders: - the University of Cambridge, England authors: - Philip Hazel +allrights: + - copyright by the University of Cambridge, England. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml index 9f86769f807..bf1c1c5012d 100644 --- a/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux4/nsa.txt.yml @@ -8,3 +8,6 @@ copyrights: holders: - Donald Becker - United States Government +allrights: + - Copyright 1994-2000 by Donald Becker. + - Copyright 1993 United States Government \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml index 0064e5217d3..9701443fbe3 100644 --- a/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux4/send.txt.yml @@ -6,3 +6,5 @@ copyrights: - Gordon Chaffee Copyright (c) 1995 holders: - Gordon Chaffee +allrights: + - Gordon Chaffee Copyright (c) 1995. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml b/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml index f87624036ff..36e87408e57 100644 --- a/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/linux4/sgi.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) September 18, 2008 Silicon Graphics, Inc. holders: - September Silicon Graphics, Inc. +allrights: + - Copyright (c) September 18, 2008 Silicon Graphics, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml b/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml index dcd528378c3..2f55e5aa9e7 100644 --- a/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/more-linux/misc-linux.txt.yml @@ -47,3 +47,26 @@ holders: - Grant R. Guenther - Grant R. Guenther David Campbell - its respective authors +allrights: + - Copyright (c) 2011 Instituto Nokia de Tecnologia + - Copyright (c) 2012-2013 Tieto Poland + - Copyright (c) 2016 HALE electronic + - Copyright (c) People + - Copyright (c) 2010 Alan Ott + - Copyright (c) 2010 Signal 11 Software + - Copyright (c) 2010, Octasic semiconductor. + - Copyright 2016 Tom aan de Wiel + - Copyright 2018 Cisco Systems, Inc. and/or its affiliates. All rights reserved. + - (c) 2006 Tim Small + - (c) by the respective authors + - copyright by the original + - Copyright 1993 United States Government + - Copyright 2010 Ben Dooks ben-linux fluff.org + - Copyright (c) 2010 Dmitry Torokhov + - (c) liplianin@me.by + - Ingo Molnar, Copyright (c) 2001 + - David Rientjes, Copyright (c) 2015 + - (c) 1985 + - (c) 1996-8 Grant R. Guenther + - (c) 1996 Grant R. Guenther grant@torque.net David Campbell + - copyright by its respective authors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml b/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml index 580987c0269..f3f9c839401 100644 --- a/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/more-linux/octa.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2010, Octasic semiconductor holders: - Octasic semiconductor +allrights: + - Copyright (c) 2010, Octasic semiconductor. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml b/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml index 28109c8b811..6b2ddd7d2e8 100644 --- a/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml +++ b/tests/cluecode/data/copyrights/misco4/nasa-copyright.yml @@ -13,3 +13,5 @@ holders_summary: - value: United States Government as represented by the Administrator of the National Aeronautics and Space Administration count: 1 +allrights: + - Copyright (c) 2006-2010 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml b/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml index 96c2c1fc580..a6c7e9559f3 100644 --- a/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml +++ b/tests/cluecode/data/copyrights/misco4/portions-initial-developer.txt.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mit_danse-mojibake.yml b/tests/cluecode/data/copyrights/mit_danse-mojibake.yml index b93446faaf7..2b73c7f8891 100644 --- a/tests/cluecode/data/copyrights/mit_danse-mojibake.yml +++ b/tests/cluecode/data/copyrights/mit_danse-mojibake.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: California Institute of Technology count: 1 +allrights: + - Copyright (c) 2009 California Institute of Technology. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mit_danse.yml b/tests/cluecode/data/copyrights/mit_danse.yml index b93446faaf7..2b73c7f8891 100644 --- a/tests/cluecode/data/copyrights/mit_danse.yml +++ b/tests/cluecode/data/copyrights/mit_danse.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: California Institute of Technology count: 1 +allrights: + - Copyright (c) 2009 California Institute of Technology. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml b/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml index 8559b4c638d..0b53d2fea3c 100644 --- a/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml +++ b/tests/cluecode/data/copyrights/mit_mlton-MIT_MLton.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the NEC Research Institute count: 1 +allrights: + - Copyright (c) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh Jagannathan, and Stephen Weeks. + - Copyright (c) 1997-2000 by the NEC Research Institute \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml b/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml index 414c00af470..b42155d8f72 100644 --- a/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml +++ b/tests/cluecode/data/copyrights/mit_oldstyle_disclaimer4-MIT_OldStyle_disclaimer.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 2001, 2002, 2003, 2004, 2005 by The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml b/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml index c785dd900a3..85873192981 100644 --- a/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml +++ b/tests/cluecode/data/copyrights/mit_unicode-MIT_unicode.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Unicode, Inc. count: 1 +allrights: + - Copyright (c) 1991-2005 Unicode, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml b/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml index 4a6133d34c0..81b539ef579 100644 --- a/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml +++ b/tests/cluecode/data/copyrights/mit_wordnet-MIT_WordNet.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Princeton University count: 1 +allrights: + - Copyright 2006 by Princeton University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/mitre-MITRE.yml b/tests/cluecode/data/copyrights/mitre-MITRE.yml index 47a886c7528..bab94479f85 100644 --- a/tests/cluecode/data/copyrights/mitre-MITRE.yml +++ b/tests/cluecode/data/copyrights/mitre-MITRE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The MITRE Corporation count: 1 +allrights: + - Copyright (c) 1994-1999. The MITRE Corporation (http://www.mitre.org/). All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/motorola_c-c.c.yml b/tests/cluecode/data/copyrights/motorola_c-c.c.yml index 5e5beb9cd72..db325dcecce 100644 --- a/tests/cluecode/data/copyrights/motorola_c-c.c.yml +++ b/tests/cluecode/data/copyrights/motorola_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Motorola, Inc. count: 1 +allrights: + - Copyright (c) 2003, 2010 Motorola, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml b/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml index d03cff95548..5a96c493d93 100644 --- a/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml +++ b/tests/cluecode/data/copyrights/motorola_mobility_c-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Motorola, Inc. count: 1 +allrights: + - Copyright (c) 2009 Motorola, Inc. All Rights Reserved. + - Copyright (c) 2011 Motorola Mobility, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/msntp-MSNTP.yml b/tests/cluecode/data/copyrights/msntp-MSNTP.yml index fcc5b5e1f10..5bf7f12a95d 100644 --- a/tests/cluecode/data/copyrights/msntp-MSNTP.yml +++ b/tests/cluecode/data/copyrights/msntp-MSNTP.yml @@ -17,3 +17,8 @@ holders_summary: count: 2 - value: University of Cambridge count: 2 +allrights: + - (c) Copyright, N.M. Maclaren, 1996, 1997, 2000 + - (c) Copyright, University of Cambridge, 1996, 1997, 2000 + - (c) Copyright N.M. Maclaren + - (c) Copyright University of Cambridge. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/multiline-Historical.txt.yml b/tests/cluecode/data/copyrights/multiline-Historical.txt.yml index 0f12ec01c0b..8d3034efe48 100644 --- a/tests/cluecode/data/copyrights/multiline-Historical.txt.yml +++ b/tests/cluecode/data/copyrights/multiline-Historical.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS. count: 1 +allrights: + - COPYRIGHT (c) 1990-1994 BY GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS. ALL RIGHTS RESERVED \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml b/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml index 10bc38329e8..bc552c33864 100644 --- a/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml +++ b/tests/cluecode/data/copyrights/multiple_copyrights.cpp.yml @@ -14,3 +14,7 @@ copyrights_summary: count: 2 - value: Copyright (c) 2000-2001 Alias Ltd. count: 1 +allrights: + - Copyright (c) Microsoft. All rights reserved. + - Copyright (c) 2000-2001 Alias Ltd. All rights reserved. + - Copyright (c) Microsoft. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/natural_docs.txt.yml b/tests/cluecode/data/copyrights/natural_docs.txt.yml index abeee6fd4a6..fdebfb25321 100644 --- a/tests/cluecode/data/copyrights/natural_docs.txt.yml +++ b/tests/cluecode/data/copyrights/natural_docs.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Greg Valure count: 1 +allrights: + - Copyright (c) 2009 by Dimitri van Heesch. + - Copyright (c) 2003-2008 Greg Valure \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/naumen-Naumen.yml b/tests/cluecode/data/copyrights/naumen-Naumen.yml index db66f87c704..f6ebf2b716b 100644 --- a/tests/cluecode/data/copyrights/naumen-Naumen.yml +++ b/tests/cluecode/data/copyrights/naumen-Naumen.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: NAUMEN (tm) and Contributors count: 1 +allrights: + - Copyright (c) NAUMEN (tm) and Contributors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/naumen_txt.txt.yml b/tests/cluecode/data/copyrights/naumen_txt.txt.yml index db66f87c704..f6ebf2b716b 100644 --- a/tests/cluecode/data/copyrights/naumen_txt.txt.yml +++ b/tests/cluecode/data/copyrights/naumen_txt.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: NAUMEN (tm) and Contributors count: 1 +allrights: + - Copyright (c) NAUMEN (tm) and Contributors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml b/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml index 8863c9836ec..dde2869ea41 100644 --- a/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml +++ b/tests/cluecode/data/copyrights/netcomponents-NetComponents.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Daniel F. Savarese count: 1 +allrights: + - Copyright (c) 1996-1999 Daniel F. Savarese. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/nnp_and_co.txt.yml b/tests/cluecode/data/copyrights/nnp_and_co.txt.yml index ffe90523017..17c61e60542 100644 --- a/tests/cluecode/data/copyrights/nnp_and_co.txt.yml +++ b/tests/cluecode/data/copyrights/nnp_and_co.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sandra and Klaus Rennecke count: 1 +allrights: + - Copyright (c) 2001, Sandra and Klaus Rennecke. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml b/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml index 3a1a7d7fbcf..ba4b8372253 100644 --- a/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml +++ b/tests/cluecode/data/copyrights/no_punctuation_after_holder_name.txt.yml @@ -5,3 +5,5 @@ copyrights: - (c) 1990-2005 Microsoft holders: - Microsoft +allrights: + - (c) 1990-2005 Microsoft All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/nokia-Nokia.yml b/tests/cluecode/data/copyrights/nokia-Nokia.yml index f58f5200a9b..9cbc61f335e 100644 --- a/tests/cluecode/data/copyrights/nokia-Nokia.yml +++ b/tests/cluecode/data/copyrights/nokia-Nokia.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nokia and others count: 1 +allrights: + - Copyright (c) Nokia and others. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml b/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml index 6ab6a16a5e5..bb3a1f1051e 100644 --- a/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml +++ b/tests/cluecode/data/copyrights/nokia_cpp-cpp.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nokia Mobile Phones count: 1 +allrights: + - Copyright (c) 2002, Nokia Mobile Phones. All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml b/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml index 1fd0630c8fa..dfdcb6d976b 100644 --- a/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml +++ b/tests/cluecode/data/copyrights/notice_name_before_statement-NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: iClick, Inc., software count: 1 +allrights: + - at iClick, Inc., software copyright (c) 1999. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml b/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml index a0d29c601c6..c37d71ba287 100644 --- a/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml +++ b/tests/cluecode/data/copyrights/notice_txt-NOTICE.txt.yml @@ -47,3 +47,16 @@ holders_summary: count: 1 - value: http://xml.apache.org/xalan-j count: 1 +allrights: + - Copyright 2003-2010 The Knopflerfish Project http://www.knopflerfish.org + - Copyright (c) OSGi Alliance (2000, 2009). All Rights Reserved. + - Copyright (c) 2000-2005 INRIA, France Telecom All rights reserved. + - (c) 1999-2003. + - (c) 2001-2004 http://ws.apache.org/axis2 + - Copyright (c) 2004, Didier Donsez + - (c) 2001-2004 http://commons.apache.org/logging + - (c) 1999-2003. http://xml.apache.org/dist/LICENSE.txt + - (c) 2001-2004 + - Copyright (c) 2004, Richard S. Hall + - (c) 2001-2004 http://xml.apache.org/xalan-j + - (c) 2001-2004 http://xerces.apache.org \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml b/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml index 0cea7161171..156b5206f46 100644 --- a/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml +++ b/tests/cluecode/data/copyrights/npl_v1_0-NPL_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Netscape Communications Corporation count: 1 +allrights: + - Copyright (c) 1998 Netscape Communications Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml b/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml index 9068a4ca6ae..9a49de912f9 100644 --- a/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml +++ b/tests/cluecode/data/copyrights/nvidia_source-Nvidia_source.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: NVIDIA, Corp. count: 2 +allrights: + - Copyright (c) 1996-1998 NVIDIA, Corp. All rights reserved. + - Copyright (c) 1996-1998 NVIDIA, Corp. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml b/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml index 5ffd96c608b..4722eacab3c 100644 --- a/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml +++ b/tests/cluecode/data/copyrights/oclc_v1_0-OCLC_v.0.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: OCLC Research count: 1 +allrights: + - Copyright (c) 2000. OCLC Research. All Rights Reserved + - Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml b/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml index 5bf2d8c120e..0c909b59241 100644 --- a/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml +++ b/tests/cluecode/data/copyrights/oclc_v2_0-OCLC_v.0.yml @@ -17,3 +17,7 @@ holders_summary: count: 2 - value: OCLC Research count: 1 +allrights: + - Copyright (c) 2002. OCLC Research. All Rights Reserved + - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. and other contributors. All rights reserved. + - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. and other contributors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml b/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml index 871e313e4f0..5253703908f 100644 --- a/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml +++ b/tests/cluecode/data/copyrights/openldap-OpenLDAP.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenLDAP Foundation, Redwood City, California, USA. count: 1 +allrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml b/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml index 1702e60919f..51b12fbd626 100644 --- a/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml +++ b/tests/cluecode/data/copyrights/openoffice_org_report_builder_bin.copyright.yml @@ -488,3 +488,155 @@ holders_summary: count: 1 - value: ooo-build/Go-OO Team count: 1 +allrights: + - Copyright (c) 2002-2009 Software in the Public Interest, Inc. + - Copyright (c) 2002-2009 ooo-build/Go-OO Team + - (c) Sun Microsystems. + - Copyright 2002-2009 Sun Microsystems, Inc. + - Copyright 2002-2009 Sun Microsystems, Inc. + - Copyright (c) 2002-2005 Maxim Shemanarev + - Copyright 2001-2004 The Apache Software Foundation. + - Copyright 2003-2007 The Apache Software Foundation + - Copyright 2001-2007 The Apache Software Foundation + - Copyright 1999-2007 The Apache Software Foundation + - Copyright (c) 2000 Pat Niemeyer + - Copyright (c) 2000 INRIA, France Telecom + - Copyright (c) 2002 France Telecom + - Copyright (c) 1990-2003 Sleepycat Software + - Copyright (c) 1990, 1993, 1994, 1995 The Regents of the University of California + - Copyright (c) 2003 by Bitstream, Inc. + - Copyright (c) 2006 by Tavmjong Bah + - Copyright (c) 2007 Red Hat, Inc + - Copyright (c) 2007 Red Hat, Inc. All rights reserved. + - Copyright 2000-2003 Beman Dawes + - Copyright (c) 1998-2003 Joel de Guzman + - Copyright (c) 2001-2003 Daniel Nuffer + - Copyright (c) 2001-2003 Hartmut Kaiser + - Copyright (c) 2002-2003 Martin Wille + - Copyright (c) 2002 Juan Carlos Arevalo-Baeza + - Copyright (c) 2002 Raghavendra Satish + - Copyright (c) 2002 Jeff Westfahl + - Copyright (c) 2001 Bruce Florman + - Copyright 1999 Tom Tromey + - Copyright 2002, 2003 University of Southern California, Information Sciences Institute (ISI) + - Copyright 2004 David Reveman + - Copyright 2000, 2002, 2004, 2005 Keith Packard + - Copyright 2004 Calum Robinson + - Copyright 2004 Richard D. Worth + - Copyright 2004, 2005 Red Hat, Inc. + - Copyright 2004 David Reveman + - Copyright (c) Copyright 2000, Baptiste Lepilleur + - Copyright (c) 1996 - 2004, Daniel Stenberg + - Copyright (c) 1992,1994 by Dennis Vadura + - Copyright (c) 1996 by WTI Corp. + - Copyright 1999-2003 by Easy Software + - Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd + - Copyright (c) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. + - Copyright (c) 2000,2001,2002,2003 by George William + - Copyright (c) 2001-2008, The HSQL Development Group + - Copyright (c) 1995, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. + - Copyright (c) Kevin Hendricks, 2001-2002 + - Copyright (c) 2002-2008 Laszlo Nemeth + - Copyright (c) 2000 Bjoern Jacke + - Copyright 2000 by Sun Microsystems, Inc. + - Copyright (c) 1998 Raph Levien + - Copyright (c) 2001 ALTLinux, Moscow + - Copyright (c) 2006, 2007, 2008 Laszlo Nemeth + - Copyright (c) 2003-2006 The International Color Consortiu + - Copyright (c) 1995-2008 International Business Machines Corporation and others + - Copyright 2000-2005, by Object Refinery Limited + - Copyright 2005-2007, by Pentaho Corporation + - Copyright 1994-2002 World Wide Web Consortium + - Copyright (c) 1991-1998, Thomas G. Lane + - Copyright 1994-2002 World Wide Web Consortium + - Copyright (c) 2002 Anders Carlsson + - Copyright (c) 2003, WiseGuys Internet B.V. + - Copyright (c) 2003, WiseGuys Internet B.V. + - Copyright 1997-1999 World Wide Web Consortium + - Copyright (c) 2002-2003 Aleksey Sanin + - Copyright (c) 2003 America Online, Inc. + - Copyright (c) 2001-2002 Daniel Veillard. All Rights Reserved. + - Copyright (c) 1998-2001 by the University of Florida + - Copyright (c) 1991, 2007 Free Software Foundation, Inc + - Copyright 2004 The Apache Software Foundation + - Copyright 2005 The Apache Software Foundation + - Copyright 2007 The Apache Software Foundation + - Copyright (c) 1999-2007 Brian Paul + - Copyright (c) 2007 The Khronos Group Inc. + - Copyright (c) 2003 Stuart Caie + - Copyright (c) 1999-2006 Joe Orton + - Copyright (c) 1999-2000 Tommi Komulainen + - Copyright (c) 1999-2000 Peter Boos + - Copyright (c) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. + - Copyright (c) 2004 Aleix Conchillo Flaque + - Copyright (c) 2004 Jiang Lei + - Copyright (c) 2004-2005 Vladimir Berezniker @ http://public.xdi.org + - Copyright (c) 1998 Netscape Communications Corporation + - Copyright (c) 1998-2007 The OpenSSL Project + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 2001, 2002, 2003, 2004 Python Software Foundation + - Copyright (c) 2000 BeOpen.com + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 1991-1995 Stichting Mathematisch Centrum + - Copyright (c) 2000-2007 David Beckett + - Copyright (c) 2000-2005 University of Bristol + - Copyright (c) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc + - Copyright (c) 1997-2000 Netscape Communications Corporation + - Copyright (c) 2000 See Beyond Communications Corporation + - Copyright (c) 1997 David Mosberger-Tang and Andreas Beck + - Copyright (c) 1998, 1999 James Clark + - Copyright 1999 CERN - European Organization for Nuclear Research + - Copyright (c) 2002-2003 Aleksey Sanin + - Copyright (c) 2003 America Online, Inc. + - Copyright (c) 2001-2002 Daniel Veillard. All Rights Reserved. + - Copyright (c) 1998-2001 by the University of Florida + - Copyright (c) 1991, 2007 Free Software Foundation, Inc + - Copyright 2004 The Apache Software Foundation + - Copyright 2005 The Apache Software Foundation + - Copyright 2007 The Apache Software Foundation + - Copyright (c) 1999-2007 Brian Paul + - Copyright (c) 2007 The Khronos Group Inc. + - Copyright (c) 2003 Stuart Caie + - Copyright (c) 1999-2006 Joe Orton + - Copyright (c) 1999-2000 Tommi Komulainen + - Copyright (c) 1999-2000 Peter Boos + - Copyright (c) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. + - Copyright (c) 2004 Aleix Conchillo Flaque + - Copyright (c) 2004 Jiang Lei + - Copyright (c) 2004-2005 Vladimir Berezniker @ http://public.xdi.org + - Copyright (c) 1998 Netscape Communications Corporation + - Copyright (c) 1998-2007 The OpenSSL Project + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 2001, 2002, 2003, 2004 Python Software Foundation + - Copyright (c) 2000 BeOpen.com + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 1991-1995 Stichting Mathematisch Centrum + - Copyright (c) 2000-2007 David Beckett + - Copyright (c) 2000-2005 University of Bristol + - Copyright (c) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc + - Copyright (c) 1997-2000 Netscape Communications Corporation + - Copyright (c) 2000 See Beyond Communications Corporation + - Copyright (c) 1997 David Mosberger-Tang and Andreas Beck + - Copyright (c) 1998, 1999 James Clark + - Copyright 1999 CERN - European Organization for Nuclear Research + - Copyright (c) 1994 Hewlett-Packard Company + - Copyright (c) 1996-1999 Silicon Graphics Computer Systems, Inc. + - Copyright (c) 1997 Moscow Center for SPARC Technology + - Copyright (c) 1999, 2000, 2001 Boris Fomitchev + - Copyright 1999-2002,2004 The Apache Software Foundation + - Copyright (c) 1991, 1992 TWAIN Working Group + - Copyright (c) 1997 TWAIN Working Group + - Copyright (c) 1998 TWAIN Working Group + - Copyright (c) 2000 TWAIN Working Group + - Copyright 1998-2001 by Ullrich Koethe + - Copyright 2004 by Urban Widmark + - Copyright 2002-2007 by Henrik Just + - Copyright (c) 2000, Compaq Computer Corporation + - Copyright (c) 2002, Hewlett Packard, Inc + - Copyright (c) 2000 SuSE, Inc. + - Copyright 1996-2007 Glyph & Cog, LLC. + - Copyright (c) 1995-2002 Jean-loup Gailly and Mark Adler \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml b/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml index 5a12d8daf8c..347a2ed7425 100644 --- a/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml +++ b/tests/cluecode/data/copyrights/openpbs-OpenPBS.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Veridian Information Solutions, Inc. count: 1 +allrights: + - Copyright (c) 1999-2000 Veridian Information Solutions, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml b/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml index 54781089a57..226f1f48da7 100644 --- a/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml +++ b/tests/cluecode/data/copyrights/openpublicationref-OpenPublicationref.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: ThisOldHouse count: 1 +allrights: + - Copyright (c) 2000 by ThisOldHouse. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/openssl-OpenSSL.yml b/tests/cluecode/data/copyrights/openssl-OpenSSL.yml index ac7c65f2263..57f0cb5e45d 100644 --- a/tests/cluecode/data/copyrights/openssl-OpenSSL.yml +++ b/tests/cluecode/data/copyrights/openssl-OpenSSL.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/openssl-c.c.yml b/tests/cluecode/data/copyrights/openssl-c.c.yml index e7d4fec90ef..9655fa76131 100644 --- a/tests/cluecode/data/copyrights/openssl-c.c.yml +++ b/tests/cluecode/data/copyrights/openssl-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved. + - holder is Tim Hudson (tjh@mincom.oz.au). \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/opyrights.java.yml b/tests/cluecode/data/copyrights/opyrights.java.yml index 85a251c63b7..cb089d7cff3 100644 --- a/tests/cluecode/data/copyrights/opyrights.java.yml +++ b/tests/cluecode/data/copyrights/opyrights.java.yml @@ -37,3 +37,13 @@ holders_summary: count: 1 - value: Zeta Microcomputer Software count: 1 +allrights: + - (c) Copyright 2000-2005, by Object Refinery Limited and Contributors. + - Copyright (c) 2000-2004, by Thomas Morgner and Contributors. + - opylefted by -Harvie 2oo7 + - Copyright (c) by Max Ziebell + - Copyright (c). + - Copyright (c) 1990 by Jon Orten Thunderball Cave BBS + - Copyright (c) by Zeta Microcomputer Software + - Copyright (c). 08/95, Abigwar + - Copyright (c) by Parik Rao. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/oracle.txt.yml b/tests/cluecode/data/copyrights/oracle.txt.yml index d3878441d7b..51868484dec 100644 --- a/tests/cluecode/data/copyrights/oracle.txt.yml +++ b/tests/cluecode/data/copyrights/oracle.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Oracle and/or its affiliates count: 1 +allrights: + - Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml b/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml index 44fd30660bf..13cf9f8c470 100644 --- a/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml +++ b/tests/cluecode/data/copyrights/osl_v3_0-OSL_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Lawrence Rosen count: 1 +allrights: + - Copyright (c) 2005 Lawrence Rosen. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/partial_detection.txt.yml b/tests/cluecode/data/copyrights/partial_detection.txt.yml index 3b0b0cc4525..553eae72c9c 100644 --- a/tests/cluecode/data/copyrights/partial_detection.txt.yml +++ b/tests/cluecode/data/copyrights/partial_detection.txt.yml @@ -66,3 +66,19 @@ holders_summary: count: 1 - value: the Perl 5 Porters count: 1 +allrights: + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright (c) 2001 AT&T + - Copyright (c) 2004-2006 by Henrique de Moraes Holschuh + - Copyright 2005-2007 Christopher Montgomery, Jean-Marc Valin, Timothy Terriberry, CSIRO, and other contributors + - Copyright (c) 2007 James Newton-King + - Copyright (c) 2006, SHIMODA Hiroshi + - Copyright (c) 2006, FUJITA Yuji + - Copyright (c) 2002-2009 ooo-build/Go-OO Team + - Copyright (c) 2002-2009 Software in the Public Interest, Inc. + - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. + - Copyright (c) 2006 Academy of Motion Picture Arts and Sciences + - Copyright (c) 1995-2000 Corporation for National Research Initiatives + - Copyright (c) 2001 EU DataGrid + - Copyright (c) 2000. OCLC Research + - Copyright (c) 1999 Trolltech AS, Norway \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml b/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml index 3b0b0cc4525..553eae72c9c 100644 --- a/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml +++ b/tests/cluecode/data/copyrights/partial_detection_mit.txt.yml @@ -66,3 +66,19 @@ holders_summary: count: 1 - value: the Perl 5 Porters count: 1 +allrights: + - Copyright 1991 by the Massachusetts Institute of Technology + - Copyright (c) 2001 AT&T + - Copyright (c) 2004-2006 by Henrique de Moraes Holschuh + - Copyright 2005-2007 Christopher Montgomery, Jean-Marc Valin, Timothy Terriberry, CSIRO, and other contributors + - Copyright (c) 2007 James Newton-King + - Copyright (c) 2006, SHIMODA Hiroshi + - Copyright (c) 2006, FUJITA Yuji + - Copyright (c) 2002-2009 ooo-build/Go-OO Team + - Copyright (c) 2002-2009 Software in the Public Interest, Inc. + - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. + - Copyright (c) 2006 Academy of Motion Picture Arts and Sciences + - Copyright (c) 1995-2000 Corporation for National Research Initiatives + - Copyright (c) 2001 EU DataGrid + - Copyright (c) 2000. OCLC Research + - Copyright (c) 1999 Trolltech AS, Norway \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml b/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml index ae30e848a21..d63495e3d28 100644 --- a/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml +++ b/tests/cluecode/data/copyrights/perl_base-perl_base.copyright.yml @@ -35,3 +35,13 @@ holders_summary: count: 1 - value: the Perl 5 Porters count: 1 +allrights: + - Copyright 1989-2001, Larry Wall All rights reserved. + - Copyright (c) 1995-2005 Jean-loup Gailly and Mark Adler + - Copyright (c) 1991-2006 Unicode, Inc. + - Copyright (c) 1991-2008 Unicode, Inc. All rights reserved. + - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. + - copyright (c) 1994 by the Regents of the University of California. All rights reserved. + - Copyright (c) 1994 The Regents of the University of California. All rights reserved. + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. + - copyright (c) 1996-2007 Julian R Seward. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/phorum-Phorum.yml b/tests/cluecode/data/copyrights/phorum-Phorum.yml index 5762ecd001d..75f2698b3bc 100644 --- a/tests/cluecode/data/copyrights/phorum-Phorum.yml +++ b/tests/cluecode/data/copyrights/phorum-Phorum.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Phorum Development Team count: 1 +allrights: + - Copyright (c) 2001 The Phorum Development Team. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/pine-Pine.yml b/tests/cluecode/data/copyrights/pine-Pine.yml index 2f96fc905d0..a576170c7a6 100644 --- a/tests/cluecode/data/copyrights/pine-Pine.yml +++ b/tests/cluecode/data/copyrights/pine-Pine.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the University of Washington count: 1 +allrights: + - Copyright 1989-2007 by the University of Washington. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml b/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml index 55d1055aef3..374f56b40c9 100644 --- a/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml +++ b/tests/cluecode/data/copyrights/postgresql_8_3-postgresql.label.yml @@ -24,3 +24,8 @@ holders_summary: - value: the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation count: 1 +allrights: + - Portions Copyright (c) 1996-2003, The PostgreSQL Global Development Group + - Portions Copyright (c) 1994, The Regents of the University of California + - Copyright (c) 1998, 1999 Henry Spencer. All rights reserved. + - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/present_year_range.txt.yml b/tests/cluecode/data/copyrights/present_year_range.txt.yml index b3d4e337201..28b6d773b73 100644 --- a/tests/cluecode/data/copyrights/present_year_range.txt.yml +++ b/tests/cluecode/data/copyrights/present_year_range.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Adobe Systems Incorporated count: 1 +allrights: + - Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/properties-properties.properties.yml b/tests/cluecode/data/copyrights/properties-properties.properties.yml index a37b6a4c2bc..5714c5b8da7 100644 --- a/tests/cluecode/data/copyrights/properties-properties.properties.yml +++ b/tests/cluecode/data/copyrights/properties-properties.properties.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Restaurant count: 1 +allrights: + - (c) 2004-2007 Restaurant. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml b/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml index ac8d7f4cd63..ae810a20ef5 100644 --- a/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml +++ b/tests/cluecode/data/copyrights/psf_in_python-BitVector_py.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Avinash Kak. Python Software Foundation count: 1 +allrights: + - (c) 2008 Avinash Kak. Python Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml b/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml index 62febc2e66d..bfd78658226 100644 --- a/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml +++ b/tests/cluecode/data/copyrights/python_dateutil-python_dateutil.copyright.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Stichting Mathematisch Centrum Amsterdam, The Netherlands count: 1 +allrights: + - Copyright (c) 2001, 2002 Python Software Foundation All Rights Reserved + - Copyright (c) 1995-2001 Corporation for National Research Initiatives All Rights Reserved + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml b/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml index 4b12e6dc680..0e79e102aa8 100644 --- a/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml +++ b/tests/cluecode/data/copyrights/python_v1_6-Python_v.6.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Corporation for National Research Initiatives count: 1 +allrights: + - Copyright (c) 1995-2000 Corporation for National Research Initiatives All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml b/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml index 9c58f3cf660..6cf48e02ba6 100644 --- a/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml +++ b/tests/cluecode/data/copyrights/python_v1_6_1-Python_v.1.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Corporation for National Research Initiatives count: 1 +allrights: + - Copyright 1995-2001 Corporation for National Research Initiatives All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/python_v2-Python_v.yml b/tests/cluecode/data/copyrights/python_v2-Python_v.yml index c1ffb40de9a..83273da953e 100644 --- a/tests/cluecode/data/copyrights/python_v2-Python_v.yml +++ b/tests/cluecode/data/copyrights/python_v2-Python_v.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Python Software Foundation count: 1 +allrights: + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation All Rights Reserved + - Copyright (c) 1995-2001 Corporation for National Research Initiatives All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml b/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml index 4805d430d87..88623fb4944 100644 --- a/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml +++ b/tests/cluecode/data/copyrights/qpl_v1_0-QPL_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Trolltech AS, Norway count: 1 +allrights: + - Copyright (c) 1999 Trolltech AS, Norway. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/rda.c.yml b/tests/cluecode/data/copyrights/rda.c.yml index 76fbf957b9e..f7ea26d52b7 100644 --- a/tests/cluecode/data/copyrights/rda.c.yml +++ b/tests/cluecode/data/copyrights/rda.c.yml @@ -83,3 +83,25 @@ holders_summary: count: 1 - value: Yann Collet count: 1 +allrights: + - Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic + - Copyright 2003-2017, BugSplat. + - Copyright 2009-2011 Intel Corporation + - Copyright 2017 Intel Corporation + - Copyright (c) 2003-2018 Ready At Dawn Studios LLC. + - Copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler + - Copyright (c) 2000-2007 Niels Provos + - Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + - Copyright (c) 1996 - 2018, Daniel Stenberg, + - Copyright (c) 2006, Google Inc. + - Copyright (c) 2009-2011, Salvatore Sanfilippo + - Copyright (c) 2009-2014 Petri Lehtinen + - Copyright (c) 2010-2011, Pieter Noordhuis + - Copyright (c) 2011-2016, Yann Collet. + - Copyright (c) 2012 NVIDIA Corporation. All rights reserved. + - Copyright (c) 2016-present, Facebook, Inc. All rights reserved. + - Copyright (c) 2017 Advanced Micro Devices, Inc. + - Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved. + - Copyright (c) 2017-present, Facebook, Inc. All rights reserved. + - Copyright (c) 2018 William Pitcock + - Copyright (c) Facebook Technologies, LLC and its affiliates. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml b/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml index 11d59690c22..67d939c5094 100644 --- a/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml +++ b/tests/cluecode/data/copyrights/realpsl_v1_0-RealPSL_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: RealNetworks, Inc. and/or its licensors count: 1 +allrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml b/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml index 435da2be3c8..ec4bbe2fcf2 100644 --- a/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml +++ b/tests/cluecode/data/copyrights/realpsl_v1_0ref-RealPSL_v_ref.0ref.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: RealNetworks, Inc. count: 1 +allrights: + - Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml b/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml index 35c2911288d..3a85d237905 100644 --- a/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml +++ b/tests/cluecode/data/copyrights/reciprocal_v1_5-Reciprocal_v.5.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Technical Pursuit Inc. count: 1 +allrights: + - Copyright (c) 2001-2007 Technical Pursuit Inc., All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml b/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml index 092ad398a84..56cc953d799 100644 --- a/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml +++ b/tests/cluecode/data/copyrights/red_hat_openoffice_org_report_builder_bin-openoffice_org_report_builder_bin.copyright.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Red Hat count: 2 +allrights: + - Copyright (c) 2007 Red Hat, Inc + - Copyright (c) 2007 Red Hat, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/redhatref-RedHatref.yml b/tests/cluecode/data/copyrights/redhatref-RedHatref.yml index c9c240f107f..e34f5c7c45c 100644 --- a/tests/cluecode/data/copyrights/redhatref-RedHatref.yml +++ b/tests/cluecode/data/copyrights/redhatref-RedHatref.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Red Hat, Inc. and others count: 1 +allrights: + - Copyright (c) 2005 Red Hat, Inc. + - Copyright (c) 1995-2005 Red Hat, Inc. and others. + - copyrighted by Red Hat, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml b/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml index d3cddab4eab..45e2c12542a 100644 --- a/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml +++ b/tests/cluecode/data/copyrights/regents_complex-strtol_c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/regents_license-LICENSE.yml b/tests/cluecode/data/copyrights/regents_license-LICENSE.yml index fe904f0ee9a..e1520709a09 100644 --- a/tests/cluecode/data/copyrights/regents_license-LICENSE.yml +++ b/tests/cluecode/data/copyrights/regents_license-LICENSE.yml @@ -20,3 +20,8 @@ holders_summary: count: 1 - value: the Institute of Electrical and Electronics Engineers, Inc. count: 1 +allrights: + - copyrighted by The Regents of the University of California. + - Copyright 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. + - copyright C 1988 by the Institute of Electrical and Electronics Engineers, Inc. + - copyright of UC Berkeley's Berkeley Software \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml b/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml index 0e559bc07d4..80126cf62c7 100644 --- a/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml +++ b/tests/cluecode/data/copyrights/ricoh_v1_0-Ricoh_v.0.yml @@ -5,3 +5,5 @@ what: copyrights: - Copyright (c) 1995-1999 notes: the trailing are is rare enough not to be made an exception +allrights: + - Copyright (c) 1995-1999. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/rim.txt.yml b/tests/cluecode/data/copyrights/rim.txt.yml index 39cb0870f5c..b2054668b21 100644 --- a/tests/cluecode/data/copyrights/rim.txt.yml +++ b/tests/cluecode/data/copyrights/rim.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Research In Motion Limited count: 1 +allrights: + - Copyright (c) Research In Motion Limited 2010. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml b/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml index 94bede6cbea..b7db6412ea8 100644 --- a/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml +++ b/tests/cluecode/data/copyrights/s_fabsl_c-s_fabsl_c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Dag-Erling Coidan Smorgrav count: 1 +allrights: + - Copyright (c) 2003 Dag-Erling Coidan Smorgrav All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/sample_py-py.py.yml b/tests/cluecode/data/copyrights/sample_py-py.py.yml index 56de5e6eb81..6db3b3fd64e 100644 --- a/tests/cluecode/data/copyrights/sample_py-py.py.yml +++ b/tests/cluecode/data/copyrights/sample_py-py.py.yml @@ -9,3 +9,7 @@ holders: - ABC ABC CONFIDENTIAL PROPRIETARY - Motorola, Inc. - Motorola Confidential Proprietary - Metalink L.T.D. +allrights: + - COPYRIGHT 2006 ABC ABC CONFIDENTIAL PROPRIETARY + - Copyright 2006 (c), Motorola, Inc. - Motorola Confidential Proprietary + - Metalink L.T.D. (c) Copyright 2006. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/scilab-Scilab.yml b/tests/cluecode/data/copyrights/scilab-Scilab.yml index 7c92e80883d..5df8357fc5b 100644 --- a/tests/cluecode/data/copyrights/scilab-Scilab.yml +++ b/tests/cluecode/data/copyrights/scilab-Scilab.yml @@ -28,3 +28,10 @@ expected_failures: - holders - authors - holders_summary +allrights: + - Scilab (c) INRIA-ENPC. + - Scilab (c) INRIA-ENPC. + - Scilab (c) INRIA-ENPC. + - Scilab inside (c) INRIA-ENPC + - Scilab (c) INRIA-ENPC + - Scilab (c) INRIA-ENPC \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml b/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml index cdb8d29f586..c46b48dea0e 100644 --- a/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml +++ b/tests/cluecode/data/copyrights/seahorse_plugins-seahorse_plugins.copyright.yml @@ -181,3 +181,46 @@ notes: | Copyright (c) 1998-2006 by the.... and this is not detected following: Dave Ahlswede, Manuel Amador, Matt Amato, Daniel Atallah, Paul Aurich, Patrick Aussems, Anibal Avelar, Alex Badea, John Bailey, Chris Banal, Luca Barbato, Levi Bard, Kevin Barry, Derek Battams, Martin Bayard, Curtis Beattie, Dave Bell, Igor Belyi, Brian Bernas, Paul Betts, Jonas Birme, Eric Blade, Ethan Blanton, Joshua Blanton, Rainer Blessing, Herman Bloggs, David Blue, Jason Boerner, Graham Booker, Paolo Borelli, Julien Bossart, Craig Boston, Chris Boyle, Derrick J Brashear, Matt Brenneke, Jeremy Brooks, Philip Brown, Sean Burke, Thomas Butter, Andrea Canciani, Damien Carbery, Michael Carlson, Keegan Carruthers-Smith, Steve Cavilia, Julien Cegarra, Cerulean Studios, LLC +allrights: + - Copyright (c) 2004-2007 Stefan Walter + - Copyright (c) 2004-2006 Adam Schreiber + - Copyright (c) 2001-2003 Jose Carlos Garcia Sogo + - Copyright (c) 2002, 2003 Jacob Perkins + - Copyright (c) 2004, 2006 Nate Nielsen + - Copyright (c) 2000-2004 Marco Pesenti Gritti + - Copyright (c) 2003-2006 Christian Persch + - Copyright (c) 2004, 2006 Jean-Francois Rameau + - Copyright (c) 2000, 2001 Eazel, Inc. + - Copyright (c) 2007, 2008 Jorge Gonzalez + - Copyright (c) 2007, 2008 Daniel Nylander + - Copyright (c) 2004-2005 Shaun McCance + - Copyright (c) 2007 Milo Casagrande + - Copyright (c) 2007-2008 Claude Paroz + - Copyright (c) 2007 GNOME i18n Project for Vietnamese + - Copyright (c) 2008 Vasilii Faronov + - Copyright (c) 1992-2008 Free Software Foundation, Inc. + - Copyright (c) 1999 Dave Camp + - Copyright (c) 2005 Tecsidel S.A. + - Copyright (c) 2004-2005 Adam Weinberger and the GNOME Foundation + - Copyright (c) 2007, 2008 The GNOME Project + - Copyright (c) 2007 Swecha Telugu Localisation Team + - Copyright (c) 1995-1997 Ulrich Drepper + - Copyright (c) 2004-2008 Rodney Dawes + - Copyright (c) 1999, 2000 Anthony Mulcahy + - Copyright (c) 2007 Ihar Hrachyshka + - Copyright (c) 2004, 2005 Miloslav Trmac + - Copyright (c) 2003 Peter Mato + - Copyright (c) 2004, 2005 Danijel Studen, Denis Lackovic, Ivan Jankovic + - Copyright (c) 1994 X Consortium + - Copyright (c) 2006 Alexander Larsson + - Copyright (c) 2000-2003 Ximian Inc. + - Copyright (c) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + - Copyright (c) 1999, 2000 Robert Bihlmeyer + - Copyright (c) Crispin Flowerday + - Copyright (c) 2008 Frederic Peters + - Copyright (c) 2008 Lucas Lommer + - Copyright (c) 2008 Mario Blattermann + - Copyright (c) 2001-2004 Red Hat, Inc. + - Copyright (c) 2004 Scott James Remnant + - Copyright (c) 1998-2006 by the + - Copyright (c) 2008 Sebastien Bacher, Andreas Moog, Emilio Pozuelo Monfort and Josselin Mouette. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml b/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml index 92b03a6b20d..207b7ac5059 100644 --- a/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml +++ b/tests/cluecode/data/copyrights/sgi_cid_v1_0-SGI_CID_v.0.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Silicon Graphics, Inc. count: 2 +allrights: + - Copyright (c) 1994-1999 Silicon Graphics, Inc. + - Copyright (c) 1994-1999 Silicon Graphics, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml b/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml index 6ae61ff9b85..7b5f669b410 100644 --- a/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml +++ b/tests/cluecode/data/copyrights/sgi_glx_v1_0-SGI_GLX_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Silicon Graphics, Inc. count: 1 +allrights: + - (c) 1991-9 Silicon Graphics, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/sinica.txt.yml b/tests/cluecode/data/copyrights/sinica.txt.yml index 7129aa07b65..5a5bde1deec 100644 --- a/tests/cluecode/data/copyrights/sinica.txt.yml +++ b/tests/cluecode/data/copyrights/sinica.txt.yml @@ -11,3 +11,5 @@ holders_summary: - value: Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica count: 1 +allrights: + - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml b/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml index d14ebe9e415..c9e0373124d 100644 --- a/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml +++ b/tests/cluecode/data/copyrights/sleepycat-Sleepycat.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sleepycat Software count: 1 +allrights: + - Copyright (c) 1990-1999 Sleepycat Software. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml b/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml index 97871aac1fb..eb576099e7a 100644 --- a/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml +++ b/tests/cluecode/data/copyrights/somefile_cpp-somefile_cpp.cpp.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Foobar Company (PC) Property of Foobar Company count: 1 +allrights: + - Foobar Company, All Rights Reserved, (c) 2005 + - Copyright Foobar Company (PC) Property of Foobar Company + - Copyright (2003) Foobar Company All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml index d389adc362f..10e1be06d96 100644 --- a/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml +++ b/tests/cluecode/data/copyrights/statements_in_licenses/lowercase_werken.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: werken digital count: 1 +allrights: + - Copyright (c) 2000-2002 werken digital. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml index d8ca44344cb..5cb47323476 100644 --- a/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml +++ b/tests/cluecode/data/copyrights/statements_in_licenses/metastuff.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: MetaStuff, Ltd. count: 1 +allrights: + - Copyright 2001-2005 (c) MetaStuff, Ltd. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml index 53837b609e7..7579f14d8ab 100644 --- a/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml +++ b/tests/cluecode/data/copyrights/statements_in_licenses/project_mayo.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Project Mayo count: 1 +allrights: + - Copyright (c) 2001 Project Mayo. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml b/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml index afe72327841..714db253054 100644 --- a/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml +++ b/tests/cluecode/data/copyrights/statements_in_licenses/slash_in_name.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: University Corporation for Atmospheric Research/Unidata count: 1 +allrights: + - Copyright 1993-2014 University Corporation for Atmospheric Research/Unidata + - copyright 1991-1998 by LCS/Telegraphics. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml b/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml index 07e66a4a286..5bdf2e341fb 100644 --- a/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml +++ b/tests/cluecode/data/copyrights/stmicro_in_h-h.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: ST-Microelectronics count: 1 +allrights: + - COPYRIGHT (c) ST-Microelectronics 1998. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml b/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml index ca4d3cbd62c..8e70c0ae403 100644 --- a/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml +++ b/tests/cluecode/data/copyrights/stmicro_in_txt.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: STMicroelectronics count: 1 +allrights: + - COPYRIGHT (c) STMicroelectronics 2005. + - COPYRIGHT (c) ST-Microelectronics 1998. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/super_tech_c-c.c.yml b/tests/cluecode/data/copyrights/super_tech_c-c.c.yml index 2ff78ee8f43..223794cb56a 100644 --- a/tests/cluecode/data/copyrights/super_tech_c-c.c.yml +++ b/tests/cluecode/data/copyrights/super_tech_c-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A. count: 1 +allrights: + - Copyright (c) $LastChangedDate$ Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A. ALL RIGHTS RESERVED + - Copyright (c) 2004 Benjamin Herrenschmuidt (benh@kernel.crashing.org), IBM Corp. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml b/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml index a77d745540d..eb92e612823 100644 --- a/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml +++ b/tests/cluecode/data/copyrights/sybaseopenwatcom_v1_0-SybaseOpenWatcom_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sybase, Inc. count: 1 +allrights: + - Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/the_native_web.txt.yml b/tests/cluecode/data/copyrights/the_native_web.txt.yml index 5d013218338..4d65bbbd0d0 100644 --- a/tests/cluecode/data/copyrights/the_native_web.txt.yml +++ b/tests/cluecode/data/copyrights/the_native_web.txt.yml @@ -5,3 +5,5 @@ copyrights: - Copyright (c) 2014-2018 the native web holders: - the native web +allrights: + - Copyright (c) 2014-2018 the native web. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml b/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml index fd28a945063..9c653dcd8ee 100644 --- a/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml +++ b/tests/cluecode/data/copyrights/thirdpartyproject_prop-ThirdPartyProject_prop.prop.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2010 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/toolchain.txt.yml b/tests/cluecode/data/copyrights/toolchain.txt.yml index de917d25e79..ab4a3df9fde 100644 --- a/tests/cluecode/data/copyrights/toolchain.txt.yml +++ b/tests/cluecode/data/copyrights/toolchain.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: lowRISC contributors count: 1 +allrights: + - Copyright lowRISC contributors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/trailing_For-c.c.yml b/tests/cluecode/data/copyrights/trailing_For-c.c.yml index 52757fd41ea..141492888da 100644 --- a/tests/cluecode/data/copyrights/trailing_For-c.c.yml +++ b/tests/cluecode/data/copyrights/trailing_For-c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Mycom Pany, inc. count: 1 +allrights: + - Copyright 2008 Mycom Pany, inc. + - Copyright (c) 1995-2003 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml b/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml index 31dc2984b85..e63c62ce012 100644 --- a/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml +++ b/tests/cluecode/data/copyrights/trailing_redistribution-bspatch_c.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Colin Percival count: 1 +allrights: + - Copyright (c) 2008 The Android Open Source Project + - Copyright 2003-2005 Colin Percival All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml b/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml index 55c61ec9653..f850bbeaec6 100644 --- a/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml +++ b/tests/cluecode/data/copyrights/transfig_with_parts-transfig.copyright.yml @@ -73,3 +73,21 @@ holders_summary: count: 1 - value: Uri Blumenthal, IBM count: 1 +allrights: + - Copyright (c) 1985-1988 Supoj Sutantavibul + - Copyright (c) 1991-1999 Micah Beck + - Copyright (c) 1989-2002 by Brian V. Smith + - Parts Copyright (c) 1991 by Paul King + - Parts Copyright (c) 1995 C. Blanc and C. Schlick + - Parts Copyright (c) 1993 Anthony Starks + - Parts Copyright (c) 1992 Uri Blumenthal, IBM + - Parts Copyright (c) 1992 by Brian Boyter + - Parts Copyright (c) 1995 Dane Dwyer + - Parts Copyright (c) 1999 by Philippe Bekaert + - Parts Copyright (c) 1999 by T. Sato + - Parts Copyright (c) 1998 by Mike Markowski + - Parts Copyright (c) 1994-2002 by Thomas Merz + - Parts Copyright (c) 2002-2006 by Martin Kroeker + - Copyright 1990, David Koblas. + - Copyright, 1987, Massachusetts Institute of Technology + - Copyright (c) 2006 Michael Pfeiffer - p3fff@web.de \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml b/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml index e82cf9043fe..16b701e6a0e 100644 --- a/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml +++ b/tests/cluecode/data/copyrights/treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. count: 1 +allrights: + - Copyright 1997, 1998 by Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/unicode_translit.txt.yml b/tests/cluecode/data/copyrights/unicode_translit.txt.yml index 07aaf7d05ab..370f97fcd15 100644 --- a/tests/cluecode/data/copyrights/unicode_translit.txt.yml +++ b/tests/cluecode/data/copyrights/unicode_translit.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Wojciech Mula count: 1 +allrights: + - Copyright (c) 2011-2016 Wojciech Mula All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/unicol.txt.yml b/tests/cluecode/data/copyrights/unicol.txt.yml index ad39d8d6653..82163e37ea1 100644 --- a/tests/cluecode/data/copyrights/unicol.txt.yml +++ b/tests/cluecode/data/copyrights/unicol.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: University College London count: 1 +allrights: + - Copyright (c) 1998-2000 University College London All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/unpublished.txt.yml b/tests/cluecode/data/copyrights/unpublished.txt.yml index 3a697e1230a..dd13bf9ff47 100644 --- a/tests/cluecode/data/copyrights/unpublished.txt.yml +++ b/tests/cluecode/data/copyrights/unpublished.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Unpublished Work of Sample Group, Inc. count: 1 +allrights: + - (c) Unpublished Work of Sample Group, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml b/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml index a72b8c1d6f0..f4322d3f738 100644 --- a/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml +++ b/tests/cluecode/data/copyrights/uofu_rfpl-UofU_RFPL.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: University of Utah count: 1 +allrights: + - Copyright (c) 2001, 1998 University of Utah. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml b/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml index 433f3ba1310..9eae45a0805 100644 --- a/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml +++ b/tests/cluecode/data/copyrights/url_in_html-detail_9_html.html.yml @@ -9,3 +9,5 @@ expected_failures: - copyrights - holders +allrights: + - (c) Oss http://s.pudn.com/upload_log.asp?e \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml b/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml index c95bd3285a2..66a49f4c263 100644 --- a/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml +++ b/tests/cluecode/data/copyrights/utilities_js-utilities_js.js.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Yahoo! Inc. count: 1 +allrights: + - Copyright (c) 2009, Yahoo! Inc. All rights reserved. + - Copyright 2001 Robert Penner All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml b/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml index b0227a255f2..cce2bb53800 100644 --- a/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml +++ b/tests/cluecode/data/copyrights/vitess_copyrights.txt.yml @@ -13,3 +13,7 @@ holders: holders_summary: - value: The Vitess Authors count: 3 +allrights: + - Copyright 2019 The Vitess Authors. + - Copyright 2019 The Vitess Authors + - Copyright 2020 The Vitess Authors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml b/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml index c88cf3f8fca..146ca16c068 100644 --- a/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml +++ b/tests/cluecode/data/copyrights/vovida_v1_0-Vovida_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Vovida Networks, Inc. count: 1 +allrights: + - Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml b/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml index 4e265f387d0..16c758e6b91 100644 --- a/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml +++ b/tests/cluecode/data/copyrights/web_app_dtd_b_sun-web_app_dtd.dtd.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright 2000-2007 Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml b/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml index 0a63969334d..a1536bf9a3f 100644 --- a/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml +++ b/tests/cluecode/data/copyrights/web_app_dtd_sun_twice-web_app_b_dtd.dtd.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California 94303, U.S.A. count: 1 +allrights: + - Copyright (c) 2000 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California 94303, U.S.A. All rights reserved. + - Copyright (c) 2000 Sun Microsystems, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/weird-date.java.yml b/tests/cluecode/data/copyrights/weird-date.java.yml index 0c276237ecb..7cfd09e3ee3 100644 --- a/tests/cluecode/data/copyrights/weird-date.java.yml +++ b/tests/cluecode/data/copyrights/weird-date.java.yml @@ -5,3 +5,5 @@ copyrights: - Copyright 2010-20224 Amazon.com, Inc. or its affiliates holders: - Amazon.com, Inc. or its affiliates +allrights: + - Copyright 2010-20224 Amazon.com, Inc. or its affiliates. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/wide_c-c.c.yml b/tests/cluecode/data/copyrights/wide_c-c.c.yml index 1496c419588..dec39c12bfb 100644 --- a/tests/cluecode/data/copyrights/wide_c-c.c.yml +++ b/tests/cluecode/data/copyrights/wide_c-c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/wide_txt.txt.yml b/tests/cluecode/data/copyrights/wide_txt.txt.yml index 1496c419588..dec39c12bfb 100644 --- a/tests/cluecode/data/copyrights/wide_txt.txt.yml +++ b/tests/cluecode/data/copyrights/wide_txt.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_ascii_art.txt.yml b/tests/cluecode/data/copyrights/with_ascii_art.txt.yml index c8090465861..f71fc374a77 100644 --- a/tests/cluecode/data/copyrights/with_ascii_art.txt.yml +++ b/tests/cluecode/data/copyrights/with_ascii_art.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1996. The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_colon.yml b/tests/cluecode/data/copyrights/with_colon.yml index 377713210e4..d3da54ab576 100644 --- a/tests/cluecode/data/copyrights/with_colon.yml +++ b/tests/cluecode/data/copyrights/with_colon.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Armin Ronacher count: 1 +allrights: + - copyright (c) 2013 by Armin Ronacher. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml b/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml index 536b626cec2..f1332d836c0 100644 --- a/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml +++ b/tests/cluecode/data/copyrights/with_dash_and_dotted_name.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: D.T.Shield count: 1 +allrights: + - Copyright 1999, 2000 - D.T.Shield. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml b/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml index 672df54a86c..725b1363d9f 100644 --- a/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml +++ b/tests/cluecode/data/copyrights/with_leading_date_andtrailing_plus.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Evgeniy Polyakov count: 1 +allrights: + - 2004+ Copyright (c) Evgeniy Polyakov All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml b/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml index 36838c1447b..e75eed2f62d 100644 --- a/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml +++ b/tests/cluecode/data/copyrights/with_sign_dash_and_dotted_name.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: D.T.Shield count: 1 +allrights: + - Copyright (c) 1999, 2000 - D.T.Shield. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml b/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml index 1bec7188d26..89c9e49bc15 100644 --- a/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml +++ b/tests/cluecode/data/copyrights/with_sign_year_noun_junk_auth_noun_and_auth.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the original author or authors count: 1 +allrights: + - Copyright (c) 2007-2010 the original author or authors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml b/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml index 7d0b67b32bc..a233dcdfc28 100644 --- a/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml +++ b/tests/cluecode/data/copyrights/with_verbatim_lf-verbatim_lf_c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Colin Percival count: 1 +allrights: + - Copyright 2003-2005 Colin Percival All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml b/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml index 22f1fcbc6bc..f27c83015be 100644 --- a/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml +++ b/tests/cluecode/data/copyrights/with_year_noun_junk_auth_noun_and_auth.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the original author or authors count: 1 +allrights: + - Copyright 2007-2010 the original author or authors. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/with_zoo.txt.yml b/tests/cluecode/data/copyrights/with_zoo.txt.yml index 89db5d2e57a..cf4cd6549f6 100644 --- a/tests/cluecode/data/copyrights/with_zoo.txt.yml +++ b/tests/cluecode/data/copyrights/with_zoo.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Open-RnD Sp. z o.o. count: 1 +allrights: + - Copyright (c) 2012-2013 Open-RnD Sp. z o.o. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml b/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml index 462219352b7..45b80813085 100644 --- a/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml +++ b/tests/cluecode/data/copyrights/xfonts_utils-xfonts_utils.copyright.yml @@ -57,3 +57,20 @@ holders_summary: count: 1 - value: Unicode, Inc. count: 1 +allrights: + - Copyright 1991, 1993, 1998 The Open Group + - Copyright 2005 Red Hat, Inc. + - Copyright 2005 Red Hat, Inc + - Copyright (c) 1991-2003 Unicode, Inc. All Rights reserved. + - Copyright (c) 2003 The NetBSD Foundation, Inc. All rights reserved. + - Copyright (c) 2006 Martin Husemann. + - Copyright (c) 2007 Joerg Sonnenberger. All rights reserved. + - Copyright (c) 2002-2008 by Juliusz Chroboczek + - Copyright (c) 1987, 1993 The Regents of the University of California. All rights reserved. + - Copyright 1993, 1994, 1998 The Open Group + - Copyright (c) 2002-2008 by Juliusz Chroboczek + - Copyright 1999, 2001, 2002, 2004 Branden Robinson. + - Copyright 2006 Steve Langasek. + - Copyright 1999, 2001, 2002, 2004 Branden Robinson. + - Copyright 1999-2002, 2004 Branden Robinson. + - Copyright 2006 Steve Langasek. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml b/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml index 92e21d5dbb8..5e9a3e252d6 100644 --- a/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml +++ b/tests/cluecode/data/copyrights/xresprobe-xresprobe.label.yml @@ -29,3 +29,10 @@ holders_summary: count: 1 - value: Terra Soft Solutions, Inc. count: 1 +allrights: + - copyright (c) 2004 Canonical Software + - Copyright (c) 2002 Terra Soft Solutions, Inc. + - Copyright (c) 1998 by Josh Vanderhoof + - Copyright (c) 1996-1999 SciTech Software, Inc. + - copyright (c) David Mosberger-Tang + - Copyright (c) 1999 Egbert Eich. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/zend-Zend.yml b/tests/cluecode/data/copyrights/zend-Zend.yml index 4f266e06455..93e8db112a1 100644 --- a/tests/cluecode/data/copyrights/zend-Zend.yml +++ b/tests/cluecode/data/copyrights/zend-Zend.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Zend Technologies Ltd. count: 1 +allrights: + - Copyright (c) 1999-2002 Zend Technologies Ltd. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml b/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml index 4989e10d6e3..fe0ef9859c5 100644 --- a/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml +++ b/tests/cluecode/data/copyrights/zope_v1_0-Zope_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Digital Creations count: 1 +allrights: + - Copyright (c) Digital Creations. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml b/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml index 240768857ba..6e43f30dbc7 100644 --- a/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml +++ b/tests/cluecode/data/copyrights/zope_v2_0-Zope_v.0.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Zope Corporation (tm) and Contributors count: 1 +allrights: + - Copyright (c) Zope Corporation (tm) and Contributors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_10.txt.yml b/tests/cluecode/data/generated/copyright_10.txt.yml index 44e20c6897e..cc8b45f821b 100644 --- a/tests/cluecode/data/generated/copyright_10.txt.yml +++ b/tests/cluecode/data/generated/copyright_10.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) by Leh. www.leh.jp holders: - Leh +allrights: + - Copyright (c) All Rights Reserved by Leh. www.leh.jp \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_11.txt.yml b/tests/cluecode/data/generated/copyright_11.txt.yml index c1c65157d9e..5f7662f322a 100644 --- a/tests/cluecode/data/generated/copyright_11.txt.yml +++ b/tests/cluecode/data/generated/copyright_11.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2014-2019 New Avenue Foundation holders: - New Avenue Foundation +allrights: + - Copyright (c) All Rights Reserved 2014-2019 New Avenue Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_12.txt.yml b/tests/cluecode/data/generated/copyright_12.txt.yml index bb0ae899dc4..2646bba463d 100644 --- a/tests/cluecode/data/generated/copyright_12.txt.yml +++ b/tests/cluecode/data/generated/copyright_12.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) - - PROAIM Medical holders: - PROAIM Medical +allrights: + - Copyright (c) - All Rights Reserved - PROAIM Medical. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_14.txt.yml b/tests/cluecode/data/generated/copyright_14.txt.yml index a5caca62d9f..ae09655a2b0 100644 --- a/tests/cluecode/data/generated/copyright_14.txt.yml +++ b/tests/cluecode/data/generated/copyright_14.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) Lei Connection Inc. holders: - Lei Connection Inc. +allrights: + - Copyright (c) All Rights Reserved, Lei Connection Inc. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_15.txt.yml b/tests/cluecode/data/generated/copyright_15.txt.yml index 696a4254b30..ae6e3983066 100644 --- a/tests/cluecode/data/generated/copyright_15.txt.yml +++ b/tests/cluecode/data/generated/copyright_15.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) by Minds, Japan Council for Quality Health Care holders: - Minds, Japan Council for Quality Health Care +allrights: + - Copyright (c) All rights reserved by Minds, Japan Council for Quality Health Care. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_16.txt.yml b/tests/cluecode/data/generated/copyright_16.txt.yml index 82107215d3a..e30b60820ea 100644 --- a/tests/cluecode/data/generated/copyright_16.txt.yml +++ b/tests/cluecode/data/generated/copyright_16.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) by Chinese Service Center for Scholarly Exchange holders: - Chinese Service Center for Scholarly Exchange +allrights: + - Copyright (c) All Rights Reserved by Chinese Service Center for Scholarly Exchange \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_17.txt.yml b/tests/cluecode/data/generated/copyright_17.txt.yml index 74f0b0a2bcf..d0f329432a6 100644 --- a/tests/cluecode/data/generated/copyright_17.txt.yml +++ b/tests/cluecode/data/generated/copyright_17.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) Chungjungwon Iotacoffee.Com 2011 holders: - Chungjungwon Iotacoffee.Com +allrights: + - Copyright (c) All Rights Are Reserved. Chungjungwon Iotacoffee.Com 2011 \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_18.txt.yml b/tests/cluecode/data/generated/copyright_18.txt.yml index c037b3c83ad..b87fdbaedec 100644 --- a/tests/cluecode/data/generated/copyright_18.txt.yml +++ b/tests/cluecode/data/generated/copyright_18.txt.yml @@ -6,3 +6,5 @@ copyrights: - South Baylo University Copyright (c) holders: - South Baylo University +allrights: + - South Baylo University Copyright (c) All Right Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_19.txt.yml b/tests/cluecode/data/generated/copyright_19.txt.yml index 6babfb07c4d..a8227696aa4 100644 --- a/tests/cluecode/data/generated/copyright_19.txt.yml +++ b/tests/cluecode/data/generated/copyright_19.txt.yml @@ -6,3 +6,5 @@ copyrights: - http://www.enox.biz/ Copyright (c) by Zhu Shi Hui She holders: - Zhu Shi Hui She +allrights: + - http://www.enox.biz/ Copyright (c) All rights Reserved by Zhu Shi Hui She \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_2.txt.yml b/tests/cluecode/data/generated/copyright_2.txt.yml index 611a0c9b4ac..7ce8212c6db 100644 --- a/tests/cluecode/data/generated/copyright_2.txt.yml +++ b/tests/cluecode/data/generated/copyright_2.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) SSC. Ltd. holders: - SSC. Ltd. +allrights: + - Copyright (c) All right reserved SSC. Ltd. diff --git a/tests/cluecode/data/generated/copyright_20.txt.yml b/tests/cluecode/data/generated/copyright_20.txt.yml index fe0c90e2154..99bb778e498 100644 --- a/tests/cluecode/data/generated/copyright_20.txt.yml +++ b/tests/cluecode/data/generated/copyright_20.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) by Zhu Shi Hui She Zhao Ri Zhu Zhai She holders: - Zhu Shi Hui She Zhao Ri Zhu Zhai She +allrights: + - Copyright (c) All rights Reserved by Zhu Shi Hui She Zhao Ri Zhu Zhai She \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_21.txt.yml b/tests/cluecode/data/generated/copyright_21.txt.yml index 97a90ab975d..e11dfaee320 100644 --- a/tests/cluecode/data/generated/copyright_21.txt.yml +++ b/tests/cluecode/data/generated/copyright_21.txt.yml @@ -6,3 +6,5 @@ copyrights: - copyright (c) localism,Inc. holders: - localism,Inc. +allrights: + - copyright (c) All rights reserved localism,Inc. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_23.txt.yml b/tests/cluecode/data/generated/copyright_23.txt.yml index 2368d67b201..4460cf16b25 100644 --- a/tests/cluecode/data/generated/copyright_23.txt.yml +++ b/tests/cluecode/data/generated/copyright_23.txt.yml @@ -6,3 +6,5 @@ copyrights: - Iotacoffee.Com 2011 Copyright (c) holders: - Iotacoffee.Com +allrights: + - Iotacoffee.Com 2011 Copyright (c) All Rights Are Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_25.txt.yml b/tests/cluecode/data/generated/copyright_25.txt.yml index f1c25da6cd4..d7aa9b26dc9 100644 --- a/tests/cluecode/data/generated/copyright_25.txt.yml +++ b/tests/cluecode/data/generated/copyright_25.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) Hair Plus Trading Co., Inc. holders: - Hair Plus Trading Co., Inc. +allrights: + - Copyright (c) All Rights Reserved. Hair Plus Trading Co., Inc. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_26.txt.yml b/tests/cluecode/data/generated/copyright_26.txt.yml index 3e314ca0a51..ea00368458b 100644 --- a/tests/cluecode/data/generated/copyright_26.txt.yml +++ b/tests/cluecode/data/generated/copyright_26.txt.yml @@ -7,3 +7,5 @@ copyrights: holders: - 2007-2020Ban Quan Suo notes: we do not split year from Chinese name correctly. +allrights: + - Copyright (c) All Rights Reserved 2007-2020Ban Quan Suo \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_29.txt.yml b/tests/cluecode/data/generated/copyright_29.txt.yml index 91097ae45ec..2008f3a6ec6 100644 --- a/tests/cluecode/data/generated/copyright_29.txt.yml +++ b/tests/cluecode/data/generated/copyright_29.txt.yml @@ -11,3 +11,5 @@ expected_failures: - copyrights - authors +allrights: + - Created by Samvel Khalatyan, May 28, 2013 Copyright 2013, All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_3.txt.yml b/tests/cluecode/data/generated/copyright_3.txt.yml index f5b9d40db81..cd5a744602e 100644 --- a/tests/cluecode/data/generated/copyright_3.txt.yml +++ b/tests/cluecode/data/generated/copyright_3.txt.yml @@ -6,3 +6,5 @@ copyrights: - Crown Copyright C holders: - Crown +allrights: + - Crown Copyright C All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_31.txt.yml b/tests/cluecode/data/generated/copyright_31.txt.yml index b1ce3ed3315..516277462ae 100644 --- a/tests/cluecode/data/generated/copyright_31.txt.yml +++ b/tests/cluecode/data/generated/copyright_31.txt.yml @@ -6,3 +6,5 @@ copyrights: - (c) Copyright CNRI holders: - CNRI +allrights: + - (c) Copyright CNRI, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_32.txt.yml b/tests/cluecode/data/generated/copyright_32.txt.yml index 46ef38baf56..13123acc449 100644 --- a/tests/cluecode/data/generated/copyright_32.txt.yml +++ b/tests/cluecode/data/generated/copyright_32.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright michimani holders: - michimani +allrights: + - Copyright michimani All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_33.txt.yml b/tests/cluecode/data/generated/copyright_33.txt.yml index 61b69b13034..c1ade425726 100644 --- a/tests/cluecode/data/generated/copyright_33.txt.yml +++ b/tests/cluecode/data/generated/copyright_33.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright 2019 authors: - Pine +allrights: + - Copyright 2019, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_34.txt.yml b/tests/cluecode/data/generated/copyright_34.txt.yml index 38cc302fe8e..d5e4c1a3fbd 100644 --- a/tests/cluecode/data/generated/copyright_34.txt.yml +++ b/tests/cluecode/data/generated/copyright_34.txt.yml @@ -9,3 +9,5 @@ copyrights: expected_failures: - authors +allrights: + - Copyright 2011 All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_35.txt.yml b/tests/cluecode/data/generated/copyright_35.txt.yml index 2188884b4cf..98ca23457dc 100644 --- a/tests/cluecode/data/generated/copyright_35.txt.yml +++ b/tests/cluecode/data/generated/copyright_35.txt.yml @@ -9,3 +9,5 @@ copyrights: expected_failures: - authors +allrights: + - Copyright 2010. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_36.txt.yml b/tests/cluecode/data/generated/copyright_36.txt.yml index ee8ce0704ab..db2acd01fb7 100644 --- a/tests/cluecode/data/generated/copyright_36.txt.yml +++ b/tests/cluecode/data/generated/copyright_36.txt.yml @@ -4,3 +4,5 @@ what: - authors copyrights: - Copyright 2016 +allrights: + - Copyright 2016, All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_38.txt.yml b/tests/cluecode/data/generated/copyright_38.txt.yml index ee7b98212a7..11a4934fb12 100644 --- a/tests/cluecode/data/generated/copyright_38.txt.yml +++ b/tests/cluecode/data/generated/copyright_38.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) All the Raige Dog Salon holders: - All the Raige Dog Salon +allrights: + - Copyright (c) All the Raige Dog Salon. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_41.txt.yml b/tests/cluecode/data/generated/copyright_41.txt.yml index 1002d7f2499..a6fab1a7a02 100644 --- a/tests/cluecode/data/generated/copyright_41.txt.yml +++ b/tests/cluecode/data/generated/copyright_41.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) Joe Joyce and contributors, 2016-2019 holders: - Joe Joyce and contributors +allrights: + - Copyright (c) Joe Joyce and contributors, 2016-2019. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_45.txt.yml b/tests/cluecode/data/generated/copyright_45.txt.yml index 4d6b41a2198..bfe05beeef1 100644 --- a/tests/cluecode/data/generated/copyright_45.txt.yml +++ b/tests/cluecode/data/generated/copyright_45.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) 2013, OpenCV Foundation holders: - OpenCV Foundation +allrights: + - Copyright (c) 2013, OpenCV Foundation, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_46.txt.yml b/tests/cluecode/data/generated/copyright_46.txt.yml index fb7aeef7754..f59cbb089e2 100644 --- a/tests/cluecode/data/generated/copyright_46.txt.yml +++ b/tests/cluecode/data/generated/copyright_46.txt.yml @@ -8,3 +8,6 @@ copyrights: holders: - The Regents of the University of California (Regents) - the respective contributors +allrights: + - Copyright (c) 2014, 2015, The Regents of the University of California (Regents) All rights reserved. + - Copyright (c) 2014, 2015, the respective contributors All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_47.txt.yml b/tests/cluecode/data/generated/copyright_47.txt.yml index de368553a54..b029d61ce37 100644 --- a/tests/cluecode/data/generated/copyright_47.txt.yml +++ b/tests/cluecode/data/generated/copyright_47.txt.yml @@ -4,3 +4,5 @@ what: - authors copyrights: - Copyright 2011 +allrights: + - Copyright 2011. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_48.txt.yml b/tests/cluecode/data/generated/copyright_48.txt.yml index f6dfc418e5b..f5fabfe5ec7 100644 --- a/tests/cluecode/data/generated/copyright_48.txt.yml +++ b/tests/cluecode/data/generated/copyright_48.txt.yml @@ -4,3 +4,5 @@ what: - authors copyrights: - Copyright 2012 +allrights: + - Copyright 2012. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_51.txt.yml b/tests/cluecode/data/generated/copyright_51.txt.yml index f6dfc418e5b..f5fabfe5ec7 100644 --- a/tests/cluecode/data/generated/copyright_51.txt.yml +++ b/tests/cluecode/data/generated/copyright_51.txt.yml @@ -4,3 +4,5 @@ what: - authors copyrights: - Copyright 2012 +allrights: + - Copyright 2012. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_52.txt.yml b/tests/cluecode/data/generated/copyright_52.txt.yml index 7e4d25b1603..205c969c38b 100644 --- a/tests/cluecode/data/generated/copyright_52.txt.yml +++ b/tests/cluecode/data/generated/copyright_52.txt.yml @@ -8,3 +8,6 @@ copyrights: holders: - The Regents of the University of California (Regents) - the respective contributors +allrights: + - Copyright (c) 2014, The Regents of the University of California (Regents) All rights reserved. + - Copyright (c) 2014, the respective contributors All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_6.txt.yml b/tests/cluecode/data/generated/copyright_6.txt.yml index cc43354f00e..5da7290bc62 100644 --- a/tests/cluecode/data/generated/copyright_6.txt.yml +++ b/tests/cluecode/data/generated/copyright_6.txt.yml @@ -6,3 +6,5 @@ copyrights: - copyright (c) istyle Inc. holders: - istyle Inc. +allrights: + - copyright (c) All rights reserved istyle Inc. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_7.txt.yml b/tests/cluecode/data/generated/copyright_7.txt.yml index 00016d26d11..64aca28f949 100644 --- a/tests/cluecode/data/generated/copyright_7.txt.yml +++ b/tests/cluecode/data/generated/copyright_7.txt.yml @@ -6,3 +6,5 @@ copyrights: - Copyright (c) by the District Export Council of Georgia holders: - the District Export Council of Georgia +allrights: + - Copyright (c) All Rights Reserved by the District Export Council of Georgia. \ No newline at end of file diff --git a/tests/cluecode/data/generated/copyright_9.txt.yml b/tests/cluecode/data/generated/copyright_9.txt.yml index a928bbf3623..d5553d85de9 100644 --- a/tests/cluecode/data/generated/copyright_9.txt.yml +++ b/tests/cluecode/data/generated/copyright_9.txt.yml @@ -6,3 +6,5 @@ copyrights: - COPYRIGHT (c) All About, Inc. holders: - All About, Inc. +allrights: + - COPYRIGHT (c) All About, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml b/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml index d9073e1f186..41b885b3592 100644 --- a/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml +++ b/tests/cluecode/data/holders/germany_should_detect_trailing_city_in_holders.txt.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin count: 1 +allrights: + - Copyright (c) 2011 Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_acme_c-c.c.yml b/tests/cluecode/data/holders/holder_acme_c-c.c.yml index af8c0f095f8..17a4ddfd82e 100644 --- a/tests/cluecode/data/holders/holder_acme_c-c.c.yml +++ b/tests/cluecode/data/holders/holder_acme_c-c.c.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: ACME, Inc. count: 1 +allrights: + - Copyright (c) 2000 ACME, Inc., All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml b/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml index 0786f3d679d..1016d69bf1a 100644 --- a/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml +++ b/tests/cluecode/data/holders/holder_addr_c-addr_c.c.yml @@ -9,3 +9,6 @@ holders_summary: count: 1 - value: Jon Doe count: 1 +allrights: + - Copyright 1999 Cornell University. All rights reserved. + - Copyright 2000 Jon Doe. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_atheros_py-py.py.yml b/tests/cluecode/data/holders/holder_atheros_py-py.py.yml index 02387c9697c..e007ee082e9 100644 --- a/tests/cluecode/data/holders/holder_atheros_py-py.py.yml +++ b/tests/cluecode/data/holders/holder_atheros_py-py.py.yml @@ -10,3 +10,7 @@ holders_summary: count: 2 - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2000 Atheros Communications, Inc., All Rights Reserved + - Copyright (c) 2001 Atheros Communications, Inc., All Rights Reserved + - Copyright (c) 1994-1997 by Intel Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_audio_c-c.c.yml b/tests/cluecode/data/holders/holder_audio_c-c.c.yml index f52dd4cf51d..6b8bb28c16f 100644 --- a/tests/cluecode/data/holders/holder_audio_c-c.c.yml +++ b/tests/cluecode/data/holders/holder_audio_c-c.c.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke count: 1 +allrights: + - copyright (c) 1995, AudioCodes, DSP Group, France Telecom, Universite de Sherbrooke. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_basic-copy_c.c.yml b/tests/cluecode/data/holders/holder_basic-copy_c.c.yml index e08b4db2d19..e47f1d5571e 100644 --- a/tests/cluecode/data/holders/holder_basic-copy_c.c.yml +++ b/tests/cluecode/data/holders/holder_basic-copy_c.c.yml @@ -19,3 +19,18 @@ holders: holders_summary: - value: Markus Franz Xaver Johannes Oberhumer count: 14 +allrights: + - Copyright (c) 2008 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2007 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2006 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2005 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2004 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2003 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2002 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2001 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2000 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1999 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1998 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1997 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer All Rights Reserved. + - (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Markus Franz Xaver Johannes Oberhumer http://www.oberhumer.com \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml b/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml index 9b03b2af247..d3b9f6bbd78 100644 --- a/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml +++ b/tests/cluecode/data/holders/holder_complex-strtol_c.c.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml b/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml index f6475019199..067b921dfe7 100644 --- a/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml +++ b/tests/cluecode/data/holders/holder_hans_jurgen_html-9_html.html.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Hans-Jurgen Koch count: 1 +allrights: + - Copyright (c) 2006 by Hans-Jurgen Koch. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml b/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml index 64aac13b415..35485cdf7da 100644 --- a/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml +++ b/tests/cluecode/data/holders/holder_hostpad-hostapd_cli_c.c.yml @@ -9,3 +9,6 @@ holders_summary: count: 1 - value: Jouni Malinen and contributors count: 1 +allrights: + - Copyright (c) 2004-2005, Jouni Malinen + - Copyright (c) 2004-2005, Jouni Malinen and contributors \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml b/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml index 5b131903d0e..169a431bcb5 100644 --- a/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml +++ b/tests/cluecode/data/holders/holder_ibm_c-ibm_c.c.yml @@ -19,3 +19,10 @@ holders_summary: count: 1 - value: ibm.com count: 1 +allrights: + - Copyright (c) ibm technologies 2008 + - Copyright (c) IBM Corporation 2008 + - Copyright (c) Ibm Corp. 2008 + - Copyright (c) ibm.com 2008 + - Copyright (c) IBM technology 2008 + - Copyright (c) IBM company 2008 \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml b/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml index 18ab0afaf69..751381dc4e1 100644 --- a/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml +++ b/tests/cluecode/data/holders/holder_ifrename-ifrename_c.c.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Jean Tourrilhes count: 1 +allrights: + - Copyright (c) 2004 Jean Tourrilhes \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_in_c-c.c.yml b/tests/cluecode/data/holders/holder_in_c-c.c.yml index f5090a98c0a..e600fa1d034 100644 --- a/tests/cluecode/data/holders/holder_in_c-c.c.yml +++ b/tests/cluecode/data/holders/holder_in_c-c.c.yml @@ -15,3 +15,14 @@ holders: holders_summary: - value: Markus Franz Xaver Johannes Oberhumer count: 10 +allrights: + - Copyright (c) 2005 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2004 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2003 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2002 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2001 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2000 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1999 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1998 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1997 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml b/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml index 42b41df3edf..c23df44aa99 100644 --- a/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml +++ b/tests/cluecode/data/holders/holder_in_copyright-COPYRIGHT_madwifi.madwifi.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml b/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml index 42b41df3edf..c23df44aa99 100644 --- a/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml +++ b/tests/cluecode/data/holders/holder_in_h-ah_h.h.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml b/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml index 9ecae8374c5..f8be9d8448d 100644 --- a/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml +++ b/tests/cluecode/data/holders/holder_in_license-COPYING_gpl.gpl.yml @@ -7,3 +7,6 @@ holders: holders_summary: - value: Free Software Foundation count: 2 +allrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_in_readme-README.yml b/tests/cluecode/data/holders/holder_in_readme-README.yml index 5c10746370b..be902b8cf85 100644 --- a/tests/cluecode/data/holders/holder_in_readme-README.yml +++ b/tests/cluecode/data/holders/holder_in_readme-README.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Jouni Malinen and contributors count: 1 +allrights: + - Copyright (c) 2002-2006, Jouni Malinen and contributors All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_in_text_.txt.yml b/tests/cluecode/data/holders/holder_in_text_.txt.yml index f5090a98c0a..e600fa1d034 100644 --- a/tests/cluecode/data/holders/holder_in_text_.txt.yml +++ b/tests/cluecode/data/holders/holder_in_text_.txt.yml @@ -15,3 +15,14 @@ holders: holders_summary: - value: Markus Franz Xaver Johannes Oberhumer count: 10 +allrights: + - Copyright (c) 2005 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2004 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2003 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2002 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2001 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 2000 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1999 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1998 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1997 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml b/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml index 42b41df3edf..c23df44aa99 100644 --- a/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml +++ b/tests/cluecode/data/holders/holder_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Sam Leffler, Errno Consulting, Atheros Communications, Inc. count: 1 +allrights: + - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml b/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml index ffc375647bf..d2ec7c202b8 100644 --- a/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml +++ b/tests/cluecode/data/holders/holder_javascript-utilities_js.js.yml @@ -9,3 +9,6 @@ holders_summary: count: 1 - value: Yahoo! Inc. count: 1 +allrights: + - Copyright (c) 2009, Yahoo! Inc. All rights reserved. + - Copyright 2001 Robert Penner All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml b/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml index 7d0e4b8a9f0..683bd419eef 100644 --- a/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml +++ b/tests/cluecode/data/holders/holder_javascript_large-ext_all_js.js.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Ext JS, LLC count: 1 +allrights: + - Copyright (c) 2006-2009 Ext JS, LLC licensing@extjs.com http://www.extjs.com/license \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml b/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml index ee3eb8780be..c9086c7c572 100644 --- a/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml +++ b/tests/cluecode/data/holders/holder_mergesort_java-MergeSort_java.java.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml b/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml index 2b6dfdf6940..a713423bd8d 100644 --- a/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml +++ b/tests/cluecode/data/holders/holder_multiline-Historical.txt.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS. count: 1 +allrights: + - COPYRIGHT (c) 1990-1994 BY GEORGE J. CARRETTE, CONCORD, MASSACHUSETTS. ALL RIGHTS RESERVED \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml b/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml index 4e1ea58989b..cc15cd77e8d 100644 --- a/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml +++ b/tests/cluecode/data/holders/holder_nokia_cpp-cpp.cpp.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Nokia Mobile Phones count: 1 +allrights: + - Copyright (c) 2002, Nokia Mobile Phones. All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_sample_java-java.java.yml b/tests/cluecode/data/holders/holder_sample_java-java.java.yml index b4624847799..54c2a604467 100644 --- a/tests/cluecode/data/holders/holder_sample_java-java.java.yml +++ b/tests/cluecode/data/holders/holder_sample_java-java.java.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Sample ABC Inc. count: 1 +allrights: + - Copyright (c) 2000-2007, Sample ABC Inc. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_simple-copy_c.c.yml b/tests/cluecode/data/holders/holder_simple-copy_c.c.yml index 4da86d3504b..856a17834d2 100644 --- a/tests/cluecode/data/holders/holder_simple-copy_c.c.yml +++ b/tests/cluecode/data/holders/holder_simple-copy_c.c.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Markus Franz Xaver Johannes Oberhumer count: 1 +allrights: + - Copyright (c) 1996 Markus Franz Xaver Johannes Oberhumer \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml b/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml index 5565ce86850..5866f6fff5c 100644 --- a/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml +++ b/tests/cluecode/data/holders/holder_snmptrapd_c-snmptrapd_c.c.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Carnegie Mellon University count: 1 +allrights: + - Copyright 1989, 1991, 1992 by Carnegie Mellon University \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml b/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml index 67d7fb6b879..8e9fa860947 100644 --- a/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml +++ b/tests/cluecode/data/holders/holder_somefile_cpp-somefile_cpp.cpp.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Foobar Company (PC) Property of Foobar Company count: 1 +allrights: + - Foobar Company, All Rights Reserved, (c) 2005 + - Copyright Foobar Company (PC) Property of Foobar Company + - Copyright (2003) Foobar Company All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml b/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml index c1b692265c7..20065c5f97a 100644 --- a/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml +++ b/tests/cluecode/data/holders/holder_stacktrace_cpp-stacktrace_cpp.cpp.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Rickard E. Faith count: 1 +allrights: + - Copyright 2003, 2004 Rickard E. Faith (faith@dict.org) \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_super_c-c.c.yml b/tests/cluecode/data/holders/holder_super_c-c.c.yml index 64355d873a1..faae0eaedcf 100644 --- a/tests/cluecode/data/holders/holder_super_c-c.c.yml +++ b/tests/cluecode/data/holders/holder_super_c-c.c.yml @@ -9,3 +9,6 @@ holders_summary: count: 1 - value: Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A. count: 1 +allrights: + - Copyright (c) \$LastChangedDate\$ Super Technologies Corporation, Cedar Rapids, Iowa, U.S.A. ALL RIGHTS RESERVED + - Copyright (c) 2004 Benjamin Herrenschmuidt (benh@kernel.crashing.org), IBM Corp. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml b/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml index e82cf9043fe..16b701e6a0e 100644 --- a/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml +++ b/tests/cluecode/data/holders/holder_treetablemodeladapter_java-TreeTableModelAdapter_java.java.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. count: 1 +allrights: + - Copyright 1997, 1998 by Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml b/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml index c62bfc94a61..dca0d8a2b3f 100644 --- a/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml +++ b/tests/cluecode/data/holders/holder_tunnel_h-tunnel_h.h.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Frank Strauss count: 1 +allrights: + - Copyright (c) 2000 Frank Strauss \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml b/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml index 014d3bc1587..8928418fe27 100644 --- a/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml +++ b/tests/cluecode/data/holders/holder_var_route_c-var_route_c.c.yml @@ -9,3 +9,6 @@ holders_summary: count: 1 - value: TGV, Incorporated count: 1 +allrights: + - Copyright 1988, 1989 by Carnegie Mellon University + - Copyright 1989 TGV, Incorporated \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml b/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml index 128bcbf1473..b50f7b39c73 100644 --- a/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml +++ b/tests/cluecode/data/holders/holder_xcon_sh-9_sh.sh.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: X Consortium count: 1 +allrights: + - Copyright (c) 1994 X Consortium \ No newline at end of file diff --git a/tests/cluecode/data/holders/holder_young_c-c.c.yml b/tests/cluecode/data/holders/holder_young_c-c.c.yml index d7dd8fef68c..e8bd0d1230b 100644 --- a/tests/cluecode/data/holders/holder_young_c-c.c.yml +++ b/tests/cluecode/data/holders/holder_young_c-c.c.yml @@ -9,3 +9,6 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) All rights reserved. + - holder is Tim Hudson (tjh@mincom.oz.au). \ No newline at end of file diff --git a/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml b/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml index 904db16f7cd..f434dae827e 100644 --- a/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml +++ b/tests/cluecode/data/holders/ibm_and_authors_are_detected_holders.txt.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: IBM, Corp. count: 1 +allrights: + - Copyright IBM, Corp. 2007 \ No newline at end of file diff --git a/tests/cluecode/data/holders/man_page_holders.txt.yml b/tests/cluecode/data/holders/man_page_holders.txt.yml index b59ac8dce33..48a51da5621 100644 --- a/tests/cluecode/data/holders/man_page_holders.txt.yml +++ b/tests/cluecode/data/holders/man_page_holders.txt.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Free Software Foundation, Inc., and others count: 1 +allrights: + - Copyright 2001-2017 Free Software Foundation, Inc., and others. \ No newline at end of file diff --git a/tests/cluecode/data/holders/oracle.txt.yml b/tests/cluecode/data/holders/oracle.txt.yml index c4ba2aef8e5..176f84b705c 100644 --- a/tests/cluecode/data/holders/oracle.txt.yml +++ b/tests/cluecode/data/holders/oracle.txt.yml @@ -6,3 +6,5 @@ holders: holders_summary: - value: Oracle and/or its affiliates count: 1 +allrights: + - Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml b/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml index fd28a945063..9c653dcd8ee 100644 --- a/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml +++ b/tests/cluecode/data/ics/android-mock-src-com-google-android-testing-mocking/GeneratedMockJar.readme.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2010 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml b/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml index 98e267d0fee..adfc8dd4fe8 100644 --- a/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml +++ b/tests/cluecode/data/ics/android-mock/regenerate_from_source.sh.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2011 The Android Open Source Project. \ No newline at end of file diff --git a/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml b/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml index d801e23a27d..5408a5fef0d 100644 --- a/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml +++ b/tests/cluecode/data/ics/antlr-src-org-antlr-runtime/ANTLRFileStream.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Terence Parr count: 1 +allrights: + - Copyright (c) 2005-2009 Terence Parr All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-harmony/NOTICE.yml b/tests/cluecode/data/ics/apache-harmony/NOTICE.yml index 1b580812031..b09d8c4b1b6 100644 --- a/tests/cluecode/data/ics/apache-harmony/NOTICE.yml +++ b/tests/cluecode/data/ics/apache-harmony/NOTICE.yml @@ -15,3 +15,8 @@ holders: holders_summary: - value: The Apache Software Foundation count: 4 +allrights: + - Copyright 2001-2004 The Apache Software Foundation. + - Copyright 2001-2006 The Apache Software Foundation. + - Copyright 2003-2004 The Apache Software Foundation. + - Copyright 2004 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml index 1c7a1982ff0..c85ef557534 100644 --- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml +++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/BinaryDecoder.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2001-2004 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml index 6179e209d13..9fe001d9f92 100644 --- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml +++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-codec/overview.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2003-2004 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml index b66499dfdca..469dbeec6b7 100644 --- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml +++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging-impl/WeakHashtable.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2004 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml index f72e661ae29..7e7ac327b8c 100644 --- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml +++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/LogFactory.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2001-2006 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml index 1c7a1982ff0..c85ef557534 100644 --- a/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml +++ b/tests/cluecode/data/ics/apache-http-src-org-apache-commons-logging/package.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Apache Software Foundation count: 1 +allrights: + - Copyright 2001-2004 The Apache Software Foundation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml b/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml index fd28a945063..9c653dcd8ee 100644 --- a/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml +++ b/tests/cluecode/data/ics/apache-http/ThirdPartyProject.prop.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2010 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml b/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml index 34b038d55e0..17464b8bc98 100644 --- a/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml +++ b/tests/cluecode/data/ics/apache-xml-src-main-java-org-apache-xpath-domapi/XPathStylesheetDOM3Exception.java.yml @@ -13,3 +13,5 @@ holders_summary: de Recherche en Informatique et en Automatique, Keio University) count: 1 notes: the results are not great, but the French institute is a rare case +allrights: + - Copyright (c) 2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). \ No newline at end of file diff --git a/tests/cluecode/data/ics/apache-xml/NOTICE.yml b/tests/cluecode/data/ics/apache-xml/NOTICE.yml index 736081714e1..75bc47c5248 100644 --- a/tests/cluecode/data/ics/apache-xml/NOTICE.yml +++ b/tests/cluecode/data/ics/apache-xml/NOTICE.yml @@ -43,3 +43,17 @@ holders_summary: count: 1 - value: iClick, Inc., software count: 1 +allrights: + - Copyright 1999-2006 The Apache Software Foundation + - Copyright 1999-2006 The Apache Software Foundation + - copyright (c) 1999-2002, Lotus Development Corporation., http://www.lotus.com. + - copyright (c) 2001-2002, Sun Microsystems., http://www.sun.com. + - copyright (c) 2003, IBM Corporation., http://www.ibm.com. + - Copyright 1999-2006 The Apache Software Foundation + - copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - copyright (c) 1999, Sun Microsystems., http://www.sun.com. + - at iClick, Inc., software copyright (c) 1999. + - Copyright 2001-2003,2006 The Apache Software Foundation. + - copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - copyright (c) 1999, Sun Microsystems., http://www.sun.com. + - copyright (c) 2000 World Wide Web Consortium, http://www.w3.org \ No newline at end of file diff --git a/tests/cluecode/data/ics/astl-include/algorithm.yml b/tests/cluecode/data/ics/astl-include/algorithm.yml index d206eb51980..2c3b9c44a0f 100644 --- a/tests/cluecode/data/ics/astl-include/algorithm.yml +++ b/tests/cluecode/data/ics/astl-include/algorithm.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2009 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/astl-include/basic_ios.h.yml b/tests/cluecode/data/ics/astl-include/basic_ios.h.yml index 2aeb728ed79..ea5f3c80d0a 100644 --- a/tests/cluecode/data/ics/astl-include/basic_ios.h.yml +++ b/tests/cluecode/data/ics/astl-include/basic_ios.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2010 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/astl-include/streambuf.yml b/tests/cluecode/data/ics/astl-include/streambuf.yml index 2aeb728ed79..ea5f3c80d0a 100644 --- a/tests/cluecode/data/ics/astl-include/streambuf.yml +++ b/tests/cluecode/data/ics/astl-include/streambuf.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2010 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/astl-include/string.yml b/tests/cluecode/data/ics/astl-include/string.yml index d206eb51980..2c3b9c44a0f 100644 --- a/tests/cluecode/data/ics/astl-include/string.yml +++ b/tests/cluecode/data/ics/astl-include/string.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2009 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/astl-src/ostream.cpp.yml b/tests/cluecode/data/ics/astl-src/ostream.cpp.yml index 2aeb728ed79..ea5f3c80d0a 100644 --- a/tests/cluecode/data/ics/astl-src/ostream.cpp.yml +++ b/tests/cluecode/data/ics/astl-src/ostream.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2010 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml b/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml index d206eb51980..2c3b9c44a0f 100644 --- a/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml +++ b/tests/cluecode/data/ics/astl-tests/test_vector.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2009 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/astl/NOTICE.yml b/tests/cluecode/data/ics/astl/NOTICE.yml index d206eb51980..2c3b9c44a0f 100644 --- a/tests/cluecode/data/ics/astl/NOTICE.yml +++ b/tests/cluecode/data/ics/astl/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2009 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/blktrace/NOTICE.yml b/tests/cluecode/data/ics/blktrace/NOTICE.yml index b66d6a9addb..f6e584e1227 100644 --- a/tests/cluecode/data/ics/blktrace/NOTICE.yml +++ b/tests/cluecode/data/ics/blktrace/NOTICE.yml @@ -43,3 +43,15 @@ holders_summary: count: 1 - value: Silicon Graphics, Inc. count: 1 +allrights: + - Copyright (c) 1997, 2002, 2005 Free Software Foundation, Inc. + - Copyright (c) 2005 Jens Axboe + - Copyright (c) 2006 Alan D. Brunelle + - Copyright (c) 2006 Jens Axboe + - Copyright (c) 2006. Bob Jenkins (bob_jenkins@burtleburtle.net) + - Copyright (c) 2009 Jozsef Kadlecsik (kadlec@blackhole.kfki.hu) + - Copyright IBM Corp. 2008 + - Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany. + - Copyright (c) 2005 Silicon Graphics, Inc. + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation \ No newline at end of file diff --git a/tests/cluecode/data/ics/blktrace/btrace.spec.yml b/tests/cluecode/data/ics/blktrace/btrace.spec.yml index 77675b89ea0..be6e109455f 100644 --- a/tests/cluecode/data/ics/blktrace/btrace.spec.yml +++ b/tests/cluecode/data/ics/blktrace/btrace.spec.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SUSE LINUX Products GmbH, Nuernberg, Germany count: 1 +allrights: + - Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany. \ No newline at end of file diff --git a/tests/cluecode/data/ics/blktrace/btrace.yml b/tests/cluecode/data/ics/blktrace/btrace.yml index d7acae7c68f..59640a18f98 100644 --- a/tests/cluecode/data/ics/blktrace/btrace.yml +++ b/tests/cluecode/data/ics/blktrace/btrace.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Silicon Graphics, Inc. count: 1 +allrights: + - Copyright (c) 2005 Silicon Graphics, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml index ce65a68270d..1d450de1613 100644 --- a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml +++ b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: GSyC/LibreSoft, Universidad Rey Juan Carlos count: 1 +allrights: + - Copyright (c) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml index fe353fa8150..2933493cffb 100644 --- a/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml +++ b/tests/cluecode/data/ics/bluetooth-bluez-health/mcap.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Signove count: 1 +allrights: + - Copyright (c) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos. + - Copyright (c) 2010 Signove \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml b/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml index 7500697a0dd..caa8ee14d07 100644 --- a/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml +++ b/tests/cluecode/data/ics/bluetooth-bluez-tools/hciattach_qualcomm.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Marcel Holtmann count: 1 +allrights: + - Copyright (c) 2005-2010 Marcel Holtmann + - Copyright (c) 2010, Code Aurora Forum. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml b/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml index d5d87093386..9c0719df1d6 100644 --- a/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml +++ b/tests/cluecode/data/ics/bluetooth-glib-docs-reference-glib/regex-syntax.sgml.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: University of Cambridge count: 1 +allrights: + - Copyright (c) 1997-2006 University of Cambridge. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml b/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml index 61e170869b7..3997a741980 100644 --- a/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml +++ b/tests/cluecode/data/ics/bluetooth-glib-gio-fam/fam-module.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Sebastian Droge count: 1 +allrights: + - Copyright (c) 2006-2007 Red Hat, Inc. + - Copyright (c) 2007 Sebastian Droge. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml index ccdfaa91a24..ceeeb6afa67 100644 --- a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml +++ b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/fen-data.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml index 38a47ddf643..beefe775226 100644 --- a/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml +++ b/tests/cluecode/data/ics/bluetooth-glib-gio-fen/gfendirectorymonitor.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2006-2007 Red Hat, Inc. + - Copyright (c) 2007 Sebastian Droge. + - Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml b/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml index 32824d8aae1..a553eff4641 100644 --- a/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml +++ b/tests/cluecode/data/ics/bluetooth-glib-gobject/gobject.rc.in.yml @@ -3,9 +3,11 @@ what: - holders - holders_summary copyrights: - - Copyright (c) 1998-2004 Tim Janik and Red Hat, Inc + - Copyright (c) 1998-2004 Tim Janik and Red Hat, Inc. holders: - - Tim Janik and Red Hat, Inc + - Tim Janik and Red Hat, Inc. holders_summary: - - value: Tim Janik and Red Hat, Inc + - value: Tim Janik and Red Hat, Inc. count: 1 +allrights: + - Copyright (c) 1998-2004 Tim Janik and Red Hat, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml b/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml index 8411f9eb37c..429649b9ff3 100644 --- a/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml +++ b/tests/cluecode/data/ics/bluetooth-glib-gthread/gthread.rc.in.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Sebastian Wilhelmi. Modified by the GLib Team and others count: 1 +allrights: + - Copyright (c) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald. + - Copyright (c) 1998 Sebastian Wilhelmi. Modified by the GLib Team and others \ No newline at end of file diff --git a/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml b/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml index 9105c8eb458..d13025a8319 100644 --- a/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml +++ b/tests/cluecode/data/ics/bluetooth-glib-po/po2tbl.sed.in.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Free Software Foundation, Inc. Ulrich Drepper count: 1 +allrights: + - Copyright (c) 1995 Free Software Foundation, Inc. Ulrich Drepper , 1995. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml b/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml index 7d0b67b32bc..a233dcdfc28 100644 --- a/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml +++ b/tests/cluecode/data/ics/bsdiff/bsdiff.1.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Colin Percival count: 1 +allrights: + - Copyright 2003-2005 Colin Percival All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml b/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml index 7d0b67b32bc..a233dcdfc28 100644 --- a/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml +++ b/tests/cluecode/data/ics/bsdiff/bsdiff.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Colin Percival count: 1 +allrights: + - Copyright 2003-2005 Colin Percival All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/bzip2/LICENSE.yml b/tests/cluecode/data/ics/bzip2/LICENSE.yml index 89be1dc252e..13d77be49ba 100644 --- a/tests/cluecode/data/ics/bzip2/LICENSE.yml +++ b/tests/cluecode/data/ics/bzip2/LICENSE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Julian R Seward count: 1 +allrights: + - copyright (c) 1996-2010 Julian R Seward. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bzip2/bzip2.c.yml b/tests/cluecode/data/ics/bzip2/bzip2.c.yml index bd9261570ce..36d4a6a5184 100644 --- a/tests/cluecode/data/ics/bzip2/bzip2.c.yml +++ b/tests/cluecode/data/ics/bzip2/bzip2.c.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Julian Seward count: 2 +allrights: + - Copyright (c) 1996-2010 Julian Seward + - Copyright (c) 1996-2010 by Julian Seward. \ No newline at end of file diff --git a/tests/cluecode/data/ics/bzip2/manual.html.yml b/tests/cluecode/data/ics/bzip2/manual.html.yml index 712a0425bbe..45572d38d11 100644 --- a/tests/cluecode/data/ics/bzip2/manual.html.yml +++ b/tests/cluecode/data/ics/bzip2/manual.html.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Julian Seward count: 2 +allrights: + - Copyright (c) 1996-2010 Julian Seward + - copyright (c) 1996-2010 Julian Seward. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml b/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml +++ b/tests/cluecode/data/ics/chromium-android-jni/jni_utils.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml b/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml +++ b/tests/cluecode/data/ics/chromium-android/execinfo.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml b/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml index 2083c9c295d..be94f7bd147 100644 --- a/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml +++ b/tests/cluecode/data/ics/chromium-app-sql/init_status.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml b/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml index 2083c9c295d..be94f7bd147 100644 --- a/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml +++ b/tests/cluecode/data/ics/chromium-base-allocator/allocator.gyp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml b/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml index 3a5bfd5373d..178edd83176 100644 --- a/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml +++ b/tests/cluecode/data/ics/chromium-base-i18n/icu_string_conversions.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. + - Copyright (c) 1995-2006 International Business Machines Corporation and others \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml index a7afdf39528..027b887a212 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/LICENSE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Lucent Technologies count: 1 +allrights: + - Copyright (c) 1991, 2000, 2001 by Lucent Technologies. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml index 9f0addd20ad..65569b035ed 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/ThirdPartyProject.prop.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2011 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml index a7afdf39528..027b887a212 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/dtoa.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Lucent Technologies count: 1 +allrights: + - Copyright (c) 1991, 2000, 2001 by Lucent Technologies. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml index c2b4b46b525..aa95008c770 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-dmg_fp/g_fmt.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Lucent Technologies count: 1 +allrights: + - Copyright (c) 1991, 1996 by Lucent Technologies. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml index 596ee0773f1..947113be51e 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright (c) 2008-2009, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-dynamic_annotations/dynamic_annotations.gyp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml index 5e0608b476b..d80fddff5bf 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: International Business Machines Corporation and others count: 1 +allrights: + - Copyright (c) 1999-2006, International Business Machines Corporation and others. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml index 74aceccde00..9fc76386faf 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-icu/icu_utf.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: International Business Machines Corporation and others count: 1 +allrights: + - Copyright (c) 1999-2004, International Business Machines Corporation and others. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml b/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml index de8c619a632..096f6a6a0c0 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-nspr/LICENSE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 1998-2000 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml index 593fbdfb680..219cf81d8ad 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prcpucfg.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2008, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml index 848ac9577f9..2da297e2e02 100644 --- a/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml +++ b/tests/cluecode/data/ics/chromium-base-third_party-nspr/prtime.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2011 Google Inc + - Portions created by the Initial Developer are Copyright (c) 1998-2000 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml index 2ba06afc999..93850466127 100644 --- a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml +++ b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml index 2ba06afc999..93850466127 100644 --- a/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml +++ b/tests/cluecode/data/ics/chromium-base/atomicops_internals_x86_gcc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/base.gyp.yml b/tests/cluecode/data/ics/chromium-base/base.gyp.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-base/base.gyp.yml +++ b/tests/cluecode/data/ics/chromium-base/base.gyp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml b/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml index 35ad75943db..06008f26251 100644 --- a/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml +++ b/tests/cluecode/data/ics/chromium-base/compat_execinfo.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml b/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml +++ b/tests/cluecode/data/ics/chromium-base/file_version_info.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml b/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml +++ b/tests/cluecode/data/ics/chromium-base/file_version_info_mac.mm.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml b/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml index 4a1a606cf03..3b234109d42 100644 --- a/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml +++ b/tests/cluecode/data/ics/chromium-base/foundation_utils_mac.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2008 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/md5.cc.yml b/tests/cluecode/data/ics/chromium-base/md5.cc.yml index b6c8273cbc9..5bad7bb9b6c 100644 --- a/tests/cluecode/data/ics/chromium-base/md5.cc.yml +++ b/tests/cluecode/data/ics/chromium-base/md5.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2006 Google Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml b/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml +++ b/tests/cluecode/data/ics/chromium-base/string_tokenizer.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml b/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml index 4a1a606cf03..3b234109d42 100644 --- a/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml +++ b/tests/cluecode/data/ics/chromium-build-mac/strip_from_xcode.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2008 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml b/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml index 4a1a606cf03..3b234109d42 100644 --- a/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml +++ b/tests/cluecode/data/ics/chromium-build/branding_value.sh.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2008 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml b/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml index 83d4e271598..de3fb6017c3 100644 --- a/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml +++ b/tests/cluecode/data/ics/chromium-build/install-build-deps.sh.yml @@ -19,3 +19,9 @@ holders_summary: count: 4 - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. + - Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + - Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. + - Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + - Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml b/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml +++ b/tests/cluecode/data/ics/chromium-build/whitespace_file.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml index 2083c9c295d..be94f7bd147 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-chromeos-panels/panel_scroller_container.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml b/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml index 2083c9c295d..be94f7bd147 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-cocoa/authorization_util.mm.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml index d94be1c7000..34604043d32 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-download/download_extensions.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 1998-1999 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml index 1cda1a98014..817984931c7 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml index df80ef9e717..139863e0ca3 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_posix.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml index 6413aad5c59..1f426eec336 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/firefox_profile_lock_win.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2008 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml index 4e3f73342a6..a8dfacb58af 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/mork_reader.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 2006 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml index 8a20feeb922..9803cc45805 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml index c611f6a41e4..edbf8517809 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_mac.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml index be6529516ac..47685a0e64c 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-importer/nss_decryptor_win.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml b/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml index 2083c9c295d..be94f7bd147 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-metrics/system_metrics.proto.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml b/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml index 2a6b217c788..7e201d38436 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-renderer_host/render_widget_host_view_mac.mm.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. + - Copyright (c) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. + - (c) 2006, 2007 Graham Dennis (graham.dennis@gmail.com) \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager-css/file_manager.css.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources-file_manager/harness.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml index 4ff54e89242..71a4e150a05 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources/about_credits.html.yml @@ -358,3 +358,107 @@ holders_summary: count: 1 - value: Xiph.org Foundation count: 1 +allrights: + - Copyright (c) 1991, 2000, 2001 by Lucent Technologies. + - Copyright (c) 2008-2009, Google Inc. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 1998-2000 the Initial Developer. All Rights Reserved. + - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved. + - (c) Copyright IBM Corporation. 2006, 2006. All Rights Reserved. + - Copyright (c) 2006, Google Inc. All rights reserved. + - Copyright (c) 2000-2008 Julian Seward. All rights reserved. + - Copyright (c) 2007 Red Hat, inc + - Copyright 2003-2005 Colin Percival All rights reserved + - Portions created by the Initial Developer are Copyright (c) 2000 the Initial Developer. All Rights Reserved. + - Copyright 1993 by OpenVision Technologies, Inc. + - Copyright 2007 Google Inc. + - Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Alexander Kellett, Alexey Proskuryakov, Alex Mathews, Allan Sandfeld Jensen, Alp Toker, Anders Carlsson, Andrew Wellington, Antti + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation + - Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved. + - Copyright (c) 2009 Apple Inc. All Rights Reserved. + - Portions Copyright (c) 1999-2007 Apple Inc. All Rights Reserved. + - copyright (c) 1996-2010 Julian R Seward. All rights reserved. + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Copyright (c) 1998-1999 Netscape Communications Corporation. All Rights Reserved. + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. + - Copyright (c) 2008 The Khronos Group Inc. + - Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002 by Remco Treffkorn, and others + - Copyright (c) 2005 by Eric S. Raymond. + - Copyright (c) 2007, 2010 Linux Foundation + - Copyright (c) 2006 IBM Corporation + - Copyright (c) 2000, 2006 Sun Microsystems, Inc. All rights reserved. + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved + - Copyright (c) 1995-2009 International Business Machines Corporation and others + - Copyrighy (c) 1999 TaBE Project. + - Copyright (c) 1999 Pai-Hsiang Hsiao. All rights reserved. + - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica. All rights reserved. + - Copyright 1996 Chih-Hao Tsai @ Beckman Institute, University of Illinois c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology. All Rights Reserved. + - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved. + - Copyright (c) 2006-2008 Jason Evans jasone@FreeBSD.org + - Copyright (c) International Business Machines Corp., 2002,2007 + - Copyright 2000-2007 Niels Provos provos@citi.umich.edu + - Copyright 2007-2009 Niels Provos and Nick Mathewson + - Copyright (c) 2004-2005, Google Inc. All rights reserved. + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved + - copyright holder, Aladdin Enterprises of Menlo Park + - copyright by the Free Software Foundation + - copyright by M.I.T. + - Copyright property of CompuServe Incorporated. + - Copyright (c) 1998-2005 Julian Smart, Robert Roebling + - Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 1998, 1999 Glenn Randers-Pehrson + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 2001-2006 Cisco Systems, Inc. All rights reserved. + - Copyright (c) 2010, Google Inc. All rights reserved. + - Copyright (c) 2010, Google Inc. All rights reserved. + - Copyright (c) 1998-2003 Daniel Veillard. All Rights Reserved. + - Copyright (c) 2001-2002 Daniel Veillard. All Rights Reserved. + - Copyright (c) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All Rights Reserved. + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation + - Copyright (c) 2005, 2006 Nick Galbreath - nickg at modp dot com All rights reserved. + - Copyright 2008 MolokoCacao All rights reserved + - Copyright (c) 2004-2009 Sergey Lyubka + - Portions Copyright (c) 2009 Gilbert Wellisch + - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved. + - Portions created by the Initial Developer are Copyright (c) 1998 the Initial Developer. All Rights Reserved. + - Copyright (c) 2004-2009 by Mulle Kybernetik. All rights reserved. + - Copyright (c) 2008 The Khronos Group Inc. + - Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved. + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 2009 The Chromium Authors. All rights reserved. + - Copyright 2007 Google Inc. + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Copyright 2008, Google Inc. All rights reserved. + - Copyright (c) 2007 Giampaolo Rodola g.rodola@gmail.com + - Copyright 2009, Google Inc. All rights reserved. + - Copyright (c) 2009 Mozilla Corporation + - Copyright (c) 1998-2007 Marti Maria + - Copyright (c) 1994-1996 SunSoft, Inc. + - Copyright 2009 Google Inc. + - Copyright (c) 2006 Bob Ippolito + - Copyright 2002-2008 Xiph.org Foundation + - Copyright 2002-2008 Jean-Marc Valin + - Copyright 2005-2007 Analog Devices Inc. + - Copyright 2005-2008 Commonwealth Scientific and Industrial Research Organisation (CSIRO) + - Copyright 1993, 2002, 2006 David Rowe + - Copyright 2003 EpicGames + - Copyright 1992-1994 Jutta Degener, Carsten Bormann + - Copyright (c) 1995-1998 The University of Utah and the Regents of the University of California All Rights Reserved + - Copyright (c) 1998-2005 University of Chicago. All rights reserved. + - Copyright (c) 2005-2006 Arizona Board of Regents (University of Arizona). All Rights Reserved + - Copyright (c) Andrew Tridgell 2004-2005 + - Copyright (c) Stefan Metzmacher 2006 + - Copyright (c) 2005, Google Inc. All rights reserved. + - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org + - Copyright (c) 1998-1999 Netscape Communications Corporation. All Rights Reserved. + - Copyright (c) 2001-2010 Peter Johnson and other Yasm developers. + - Copyright (c) 1995-2010 Jean-loup Gailly and Mark Adler + - Copyright (c) 1994-2006 Sun Microsystems Inc. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources/gpu_internals.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml b/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-resources/keyboard_overlay.js.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml index 35ad75943db..06008f26251 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/change_reorder_buffer.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml index 10c5cb05edf..8441a1df7cd 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-sync-engine/clear_data_command.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml b/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-ui-cocoa-applescript-examples/advanced_tab_manipulation.applescript.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml index 42804137f63..51963e7b356 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/annotations.proto.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2009 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml index fd28a945063..9c653dcd8ee 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser-userfeedback-proto/chrome.proto.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2010 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml b/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml +++ b/tests/cluecode/data/ics/chromium-chrome-browser/nacl_loader.sb.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml index 2083c9c295d..be94f7bd147 100644 --- a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml +++ b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-api-i18n-cld/background.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml index 05e582f6387..f49d5b39078 100644 --- a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml +++ b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-gdocs/chrome_ex_oauthsimple.js.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: unitedHeroes.net count: 2 +allrights: + - copyright unitedHeroes.net + - Copyright (c) 2009, unitedHeroes.net All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml index 6909a1ae13e..655a8c208d0 100644 --- a/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml +++ b/tests/cluecode/data/ics/chromium-chrome-common-extensions-docs-examples-extensions-oauth_contacts/NOTICE.yml @@ -16,3 +16,7 @@ holders_summary: count: 2 - value: Paul Johnston Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet count: 1 +allrights: + - copyright unitedHeroes.net + - Copyright (c) 2009, unitedHeroes.net All rights reserved. + - Copyright Paul Johnston 2000 - 2002. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml index 36bfc34d0af..22e7877cd16 100644 --- a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml +++ b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/blapi.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 1994-2000 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml index 50d775dbc73..fea69ba16b0 100644 --- a/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml +++ b/tests/cluecode/data/ics/chromium-crypto-third_party-nss/sha256.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 2002 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml b/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml index fb4bafe2964..007a3e534ed 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-base/basictypes.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2001 - 2003 Google Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml index 787d756a0d2..73ae41aa09e 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-base/logging.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2007, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml b/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml index b6c8273cbc9..865a746d3a4 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-base/logging.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2006 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml b/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml index 566b356417c..0d70bd70990 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-base/scoped_ptr.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Peter Dimov count: 1 +allrights: + - (c) Copyright Greg Colvin and Beman Dawes 1998, 1999. + - Copyright (c) 2001, 2002 Peter Dimov \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml index c5461a1f8d4..ff51230eb29 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-src/gurl_unittest.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2007 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml index c33bb9af53d..fa2a05dc6eb 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_canon_ip.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2009, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml index 480e9e8e3f5..e0a9c52c62e 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_common.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2010, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml index e8f81cb6bd5..c34e755cb06 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_parse.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 1998 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml b/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml index c5461a1f8d4..524ed5c3671 100644 --- a/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml +++ b/tests/cluecode/data/ics/chromium-googleurl-src/url_test_utils.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2007 Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml b/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml index a5de130fa9e..b554713c578 100644 --- a/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml +++ b/tests/cluecode/data/ics/chromium-googleurl/LICENSE.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright 2007, Google Inc. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 1998 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml b/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml index 7d6dd46a3db..700457d47cc 100644 --- a/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-base/cookie_monster.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 2003 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml b/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml index bec4c936fbb..a9e0d6cd482 100644 --- a/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml +++ b/tests/cluecode/data/ics/chromium-net-base/effective_tld_names.dat.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: the Initial Developer count: 1 +allrights: + - Portions created by the Initial Developer are Copyright (c) 2007 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml b/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml index 9dbde1a17ad..036a2f46138 100644 --- a/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-base/ssl_false_start_blacklist_process.cc.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: The Chromium Authors count: 2 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Copyright (c) 2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml b/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml index 0523e566966..6ecda23fea6 100644 --- a/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-base/x509_cert_types_mac_unittest.cc.yml @@ -21,3 +21,9 @@ holders_summary: count: 2 - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - (c) Kasim 2005 + - (c) 1999 Entrust.net Limited + - (c) Kasim 2005 + - (c) 1999 Entrust.net Limited \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml b/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml index de879e231e5..0cd51644cee 100644 --- a/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-base/x509_certificate_unittest.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml b/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml index 2477f610e18..7b74e4f5650 100644 --- a/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml +++ b/tests/cluecode/data/ics/chromium-net-data-proxy_resolver_perftest/no-ads.pac.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: John LoVerso count: 1 +allrights: + - Copyright 1996-2004, John LoVerso. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml b/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml index d0de80cec73..b6e75b6df71 100644 --- a/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-disk_cache/sparse_control.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml b/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml index 4a1a606cf03..3b234109d42 100644 --- a/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-ftp/ftp_network_layer.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2008 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-http/des.cc.yml b/tests/cluecode/data/ics/chromium-net-http/des.cc.yml index ccdc0649150..26a0c6ca2d8 100644 --- a/tests/cluecode/data/ics/chromium-net-http/des.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-http/des.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. + - Copyright (c) 2003 IBM Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml b/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml index f685362d27f..6d920894199 100644 --- a/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-http/http_auth_handler_ntlm_portable.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Copyright (c) 2003 IBM Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml b/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml index 4d1208e382e..625f92773d1 100644 --- a/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-http/http_chunked_decoder.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 2001 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml b/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml index 08ad0c5430a..785f9a5f7b0 100644 --- a/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-http/md4.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: IBM Corporation count: 1 +allrights: + - Copyright (c) 2003 IBM Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml b/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml index 81b87a39245..eecd9336f2b 100644 --- a/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-socket/ssl_client_socket_nss.cc.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2011 The Chromium Authors. All rights reserved. + - Portions created by the Initial Developer are Copyright (c) 2000 the Initial Developer. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml b/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml +++ b/tests/cluecode/data/ics/chromium-net-tools-testserver/chromiumsync.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Chromium Authors count: 1 +allrights: + - Copyright (c) 2010 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml b/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml index 782e4e4f951..010fe70072a 100644 --- a/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml +++ b/tests/cluecode/data/ics/chromium-net-tools-tld_cleanup/tld_cleanup.cc.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: The Chromium Authors count: 2 +allrights: + - Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml index 942b76e2706..6069b5e76b5 100644 --- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml +++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2005, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml index 1201bead34d..15bf8bca4eb 100644 --- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml +++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src-gtest/gtest_main.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2006, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml index 7a73bfbd2e1..c5514c0212d 100644 --- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml +++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/codetablewriter_interface.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2008 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml index 16814c32c43..3e860541265 100644 --- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml +++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/gflags.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright (c) 2006, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml index e9927a41c74..a90921370f3 100644 --- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml +++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/mutex.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright (c) 2007, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml index e46e3f037f6..32808b9155f 100644 --- a/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml +++ b/tests/cluecode/data/ics/chromium-sdch-open-vcdiff-src/zconf.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2005 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml b/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml index 787d756a0d2..73ae41aa09e 100644 --- a/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml +++ b/tests/cluecode/data/ics/chromium-testing-gmock-include-gmock/gmock-cardinalities.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2007, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml index bb3b10f2116..f2f0f05ee21 100644 --- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator-cpp/gmock_class_test.py.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Neal Norwitz count: 1 +allrights: + - Copyright 2009 Neal Norwitz All Rights Reserved. + - Portions Copyright 2009 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml index 7a73bfbd2e1..c5514c0212d 100644 --- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts-generator/gmock_gen.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2008 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml index c33bb9af53d..fa2a05dc6eb 100644 --- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/fuse_gmock_files.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2009, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml index 593fbdfb680..219cf81d8ad 100644 --- a/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gmock-scripts/gmock_doctor.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2008, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml b/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml index 1201bead34d..15bf8bca4eb 100644 --- a/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gmock-test/gmock_test_utils.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2006, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml b/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml index 593fbdfb680..219cf81d8ad 100644 --- a/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml +++ b/tests/cluecode/data/ics/chromium-testing-gmock/COPYING.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2008, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml index c5e4ce567bf..1e8bcec3df5 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-linked_ptr.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2003 Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml index 42804137f63..51963e7b356 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-include-gtest-internal/gtest-tuple.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2009 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml b/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml index 42804137f63..51963e7b356 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-samples/sample10_unittest.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2009 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml index 4c85b1c8d6c..5abc1012f6b 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-scripts/gen_gtest_pred_impl.py.yml @@ -13,3 +13,7 @@ holders: holders_summary: - value: Google count: 3 +allrights: + - Copyright 2006, Google Inc. All rights reserved. + - Copyright 2006, Google Inc. All rights reserved. + - Copyright 2006, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml b/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml index 593fbdfb680..219cf81d8ad 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-src/gtest-port.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2008, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml index a33ef0193db..40aaa51e061 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest-linked_ptr_test.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2003, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml index fd28a945063..9c653dcd8ee 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_catch_exceptions_test.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2010 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml index 6c88e7f86c6..438a169c3fc 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_filter_unittest.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2005 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml index 42804137f63..51963e7b356 100644 --- a/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml +++ b/tests/cluecode/data/ics/chromium-testing-gtest-test/gtest_shuffle_test.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2009 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml b/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml index 1bbbb740b09..0a54a84b597 100644 --- a/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml +++ b/tests/cluecode/data/ics/chromium-testing/generate_gmock_mutant.py.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: The Chromium Authors count: 2 +allrights: + - Copyright (c) 2009 The Chromium Authors. All rights reserved. + - Copyright (c) 2009 The Chromium Authors. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml index b695b41745d..254d1a52500 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/_libevent_time.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml index 32136a19f80..c82699a9a6d 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent-compat-sys/queue.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml index d5f3f000691..2c73105efb3 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent-test/regress_dns.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2003-2006 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml index 9b311873651..5da778e16a8 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/buffer.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2002, 2003 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml index c6265a65edf..f8949c63b7e 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/devpoll.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright 2000-2004 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml index f35160b5dd6..5acdf8a46d8 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright 2000-2003 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml index 11acbe0911b..17565dc5031 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/epoll_sub.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright 2003 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml index db14d7f80d5..839052b5d62 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evbuffer.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2002-2004 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml index f682ceb121c..78c15bfcf7e 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.3.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2006 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml index f682ceb121c..78c15bfcf7e 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evdns.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2006 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml index 02b031d3d18..e58d22e0e78 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event-internal.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2000-2004 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml index 99352509f0d..8c51961721c 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event.3.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Artur Grabowski count: 1 +allrights: + - Copyright (c) 2000 Artur Grabowski All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml index 3050e7fb94a..ac643fd91ad 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2000-2007 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml index 176288f7051..1ccbbb0d8f2 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event_rpcgen.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2005 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml index 4a6f573af4a..a7b2d005728 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/event_tagging.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2003, 2004 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml index 6c587035104..f4457523387 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evport.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2007 Sun Microsystems. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml index 32c69760456..364410df3ca 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evsignal.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright 2000-2002 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml index 216ba7dc562..cb53191740b 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/evutil.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2007 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml index 3fbd9ca225c..d5028527a28 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/http-internal.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright 2001 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml index 90721298775..c00f64501da 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/http.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright (c) 2002-2006 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml index bdf419fa307..40e478aa42d 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/log.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 2005 Nick Mathewson + - Copyright (c) 2000 Dug Song + - Copyright (c) 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/min_heap.h.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/min_heap.h.yml index 172a507a803..ac77cd046f6 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/min_heap.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/min_heap.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Maxim Yegorushkin count: 1 +allrights: + - Copyright (c) 2006 Maxim Yegorushkin All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libevent/strlcpy.c.yml b/tests/cluecode/data/ics/chromium-third_party-libevent/strlcpy.c.yml index f11b7c9d4ed..8ae6c28af72 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libevent/strlcpy.c.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libevent/strlcpy.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Todd C. Miller count: 1 +allrights: + - Copyright (c) 1998 Todd C. Miller All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libjingle-source-talk-base/httpbase.cc.yml b/tests/cluecode/data/ics/chromium-third_party-libjingle-source-talk-base/httpbase.cc.yml index d3fff376119..93d26d85e1e 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libjingle-source-talk-base/httpbase.cc.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libjingle-source-talk-base/httpbase.cc.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Google count: 2 +allrights: + - Copyright 2004-2005, Google Inc. + - Copyright 2005 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-libjingle-source/COPYING.yml b/tests/cluecode/data/ics/chromium-third_party-libjingle-source/COPYING.yml index 9ef3dcbc3b9..a35d827644b 100644 --- a/tests/cluecode/data/ics/chromium-third_party-libjingle-source/COPYING.yml +++ b/tests/cluecode/data/ics/chromium-third_party-libjingle-source/COPYING.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright (c) 2004-2005, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-third_party-modp_b64/LICENSE.yml b/tests/cluecode/data/ics/chromium-third_party-modp_b64/LICENSE.yml index e191755a5ef..2de084a7827 100644 --- a/tests/cluecode/data/ics/chromium-third_party-modp_b64/LICENSE.yml +++ b/tests/cluecode/data/ics/chromium-third_party-modp_b64/LICENSE.yml @@ -9,3 +9,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/ics/chromium-third_party-modp_b64/modp_b64.cc.yml b/tests/cluecode/data/ics/chromium-third_party-modp_b64/modp_b64.cc.yml index e191755a5ef..2de084a7827 100644 --- a/tests/cluecode/data/ics/chromium-third_party-modp_b64/modp_b64.cc.yml +++ b/tests/cluecode/data/ics/chromium-third_party-modp_b64/modp_b64.cc.yml @@ -9,3 +9,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/ics/chromium-third_party-modp_b64/modp_b64.h.yml b/tests/cluecode/data/ics/chromium-third_party-modp_b64/modp_b64.h.yml index 0fd8df20f83..9b6c1917461 100644 --- a/tests/cluecode/data/ics/chromium-third_party-modp_b64/modp_b64.h.yml +++ b/tests/cluecode/data/ics/chromium-third_party-modp_b64/modp_b64.h.yml @@ -9,3 +9,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/ics/chromium-webkit-glue-resources/README.txt.yml b/tests/cluecode/data/ics/chromium-webkit-glue-resources/README.txt.yml index d58ab1afcd4..1918203a154 100644 --- a/tests/cluecode/data/ics/chromium-webkit-glue-resources/README.txt.yml +++ b/tests/cluecode/data/ics/chromium-webkit-glue-resources/README.txt.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) 1998 the Initial Developer. All Rights Reserved. + - Copyright (c) 2005 Apple Computer, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-webkit-glue/inspector_strings.grd.yml b/tests/cluecode/data/ics/chromium-webkit-glue/inspector_strings.grd.yml index d74394782a5..9f76671ac88 100644 --- a/tests/cluecode/data/ics/chromium-webkit-glue/inspector_strings.grd.yml +++ b/tests/cluecode/data/ics/chromium-webkit-glue/inspector_strings.grd.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Apple Inc. count: 1 +allrights: + - Copyright (c) 2007, 2008 Apple Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/chromium-webkit-glue/multipart_response_delegate.h.yml b/tests/cluecode/data/ics/chromium-webkit-glue/multipart_response_delegate.h.yml index 8bdf1412e92..21bbf7a1c71 100644 --- a/tests/cluecode/data/ics/chromium-webkit-glue/multipart_response_delegate.h.yml +++ b/tests/cluecode/data/ics/chromium-webkit-glue/multipart_response_delegate.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2006-2009 The Chromium Authors. 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-webkit-glue/webkit_strings.grd.yml b/tests/cluecode/data/ics/chromium-webkit-glue/webkit_strings.grd.yml index 7d6662f12a3..b9633c1633d 100644 --- a/tests/cluecode/data/ics/chromium-webkit-glue/webkit_strings.grd.yml +++ b/tests/cluecode/data/ics/chromium-webkit-glue/webkit_strings.grd.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Initial Developer count: 1 +allrights: + - Copyright (c) 2007 Apple Inc. 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/LICENSE.yml b/tests/cluecode/data/ics/chromium/LICENSE.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/chromium/LICENSE.yml +++ b/tests/cluecode/data/ics/chromium/LICENSE.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/clang/NOTICE.yml b/tests/cluecode/data/ics/clang/NOTICE.yml index 503172ca068..26ecd59b430 100644 --- a/tests/cluecode/data/ics/clang/NOTICE.yml +++ b/tests/cluecode/data/ics/clang/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: University of Illinois at Urbana-Champaign count: 1 +allrights: + - Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dbus-dbus/dbus-hash.c.yml b/tests/cluecode/data/ics/dbus-dbus/dbus-hash.c.yml index c9cebf6804a..bbdf3501509 100644 --- a/tests/cluecode/data/ics/dbus-dbus/dbus-hash.c.yml +++ b/tests/cluecode/data/ics/dbus-dbus/dbus-hash.c.yml @@ -26,3 +26,10 @@ holders_summary: count: 1 - value: the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation count: 1 +allrights: + - Copyright (c) 2002 Red Hat, Inc. + - Copyright (c) 1991-1993 The Regents of the University of California. + - Copyright (c) 1994 Sun Microsystems, Inc. + - Copyright (c) 1991-1993 The Regents of the University of California. + - Copyright (c) 1994 Sun Microsystems, Inc. + - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation \ No newline at end of file diff --git a/tests/cluecode/data/ics/dbus-dbus/dbus-md5.c.yml b/tests/cluecode/data/ics/dbus-dbus/dbus-md5.c.yml index a39e7da1fc6..cb0f423d73f 100644 --- a/tests/cluecode/data/ics/dbus-dbus/dbus-md5.c.yml +++ b/tests/cluecode/data/ics/dbus-dbus/dbus-md5.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Red Hat count: 1 +allrights: + - Copyright (c) 2003 Red Hat Inc. + - Copyright (c) 1999, 2000 Aladdin Enterprises. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dbus-doc/introspect.xsl.yml b/tests/cluecode/data/ics/dbus-doc/introspect.xsl.yml index 15eca03bcc4..bbb08e24f09 100644 --- a/tests/cluecode/data/ics/dbus-doc/introspect.xsl.yml +++ b/tests/cluecode/data/ics/dbus-doc/introspect.xsl.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Lennart Poettering count: 1 +allrights: + - Copyright (c) 2005 Lennart Poettering. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dbus-tools/strtoll.c.yml b/tests/cluecode/data/ics/dbus-tools/strtoll.c.yml index d4c419e5c19..14e3a035ec9 100644 --- a/tests/cluecode/data/ics/dbus-tools/strtoll.c.yml +++ b/tests/cluecode/data/ics/dbus-tools/strtoll.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1992, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dbus/COPYING.yml b/tests/cluecode/data/ics/dbus/COPYING.yml index 01fd9b7216c..f963a9c24de 100644 --- a/tests/cluecode/data/ics/dbus/COPYING.yml +++ b/tests/cluecode/data/ics/dbus/COPYING.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Lawrence E. Rosen count: 1 +allrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen. All rights reserved. + - 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/dhcpcd-compat/linkaddr.c.yml b/tests/cluecode/data/ics/dhcpcd-compat/linkaddr.c.yml index ac2ce5f06d1..37d1992e172 100644 --- a/tests/cluecode/data/ics/dhcpcd-compat/linkaddr.c.yml +++ b/tests/cluecode/data/ics/dhcpcd-compat/linkaddr.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dhcpcd/NOTICE.yml b/tests/cluecode/data/ics/dhcpcd/NOTICE.yml index 6d1fe7d8ee0..13ac7ddf6dd 100644 --- a/tests/cluecode/data/ics/dhcpcd/NOTICE.yml +++ b/tests/cluecode/data/ics/dhcpcd/NOTICE.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Roy Marples count: 1 +allrights: + - Copyright 2006-2008 Roy Marples All rights reserved + - Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. + - Copyright (c) 1996-2003 by Internet Software Consortium \ No newline at end of file diff --git a/tests/cluecode/data/ics/dhcpcd/arp.c.yml b/tests/cluecode/data/ics/dhcpcd/arp.c.yml index e808dfe5a61..a899b55185e 100644 --- a/tests/cluecode/data/ics/dhcpcd/arp.c.yml +++ b/tests/cluecode/data/ics/dhcpcd/arp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Roy Marples count: 1 +allrights: + - Copyright (c) 2006-2008 Roy Marples All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dhcpcd/bind.c.yml b/tests/cluecode/data/ics/dhcpcd/bind.c.yml index 39b1791f10e..9f2e781268d 100644 --- a/tests/cluecode/data/ics/dhcpcd/bind.c.yml +++ b/tests/cluecode/data/ics/dhcpcd/bind.c.yml @@ -9,3 +9,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/ics/dhcpcd/client.c.yml b/tests/cluecode/data/ics/dhcpcd/client.c.yml index 1112ee77d6b..f9107877a0e 100644 --- a/tests/cluecode/data/ics/dhcpcd/client.c.yml +++ b/tests/cluecode/data/ics/dhcpcd/client.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Roy Marples count: 1 +allrights: + - Copyright 2006-2008 Roy Marples All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dhcpcd/common.c.yml b/tests/cluecode/data/ics/dhcpcd/common.c.yml index 95231da608e..01849933866 100644 --- a/tests/cluecode/data/ics/dhcpcd/common.c.yml +++ b/tests/cluecode/data/ics/dhcpcd/common.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Roy Marples count: 1 +allrights: + - Copyright (c) 2006-2009 Roy Marples All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dhcpcd/dhcpcd.8.yml b/tests/cluecode/data/ics/dhcpcd/dhcpcd.8.yml index 8c2f2e9f939..8c3dd4df572 100644 --- a/tests/cluecode/data/ics/dhcpcd/dhcpcd.8.yml +++ b/tests/cluecode/data/ics/dhcpcd/dhcpcd.8.yml @@ -9,3 +9,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/ics/dhcpcd/dhcpcd.c.yml b/tests/cluecode/data/ics/dhcpcd/dhcpcd.c.yml index 7e5ea263597..185a4c96476 100644 --- a/tests/cluecode/data/ics/dhcpcd/dhcpcd.c.yml +++ b/tests/cluecode/data/ics/dhcpcd/dhcpcd.c.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Roy Marples count: 2 +allrights: + - Copyright (c) 2006-2010 Roy Marples All rights reserved + - Copyright (c) 2006-2010 Roy Marples \ No newline at end of file diff --git a/tests/cluecode/data/ics/dhcpcd/if-linux-wireless.c.yml b/tests/cluecode/data/ics/dhcpcd/if-linux-wireless.c.yml index 4740c897fd8..240273cfc48 100644 --- a/tests/cluecode/data/ics/dhcpcd/if-linux-wireless.c.yml +++ b/tests/cluecode/data/ics/dhcpcd/if-linux-wireless.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Roy Marples count: 1 +allrights: + - Copyright (c) 2009-2010 Roy Marples All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dnsmasq-src/nameser.h.yml b/tests/cluecode/data/ics/dnsmasq-src/nameser.h.yml index 70902ff7a7a..d149c316001 100644 --- a/tests/cluecode/data/ics/dnsmasq-src/nameser.h.yml +++ b/tests/cluecode/data/ics/dnsmasq-src/nameser.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1983, 1989, 1993 The Regents of the University of California. All rights reserved. + - Portions Copyright (c) 1993 by Digital Equipment Corporation. + - Portions Copyright (c) 1995 by International Business Machines, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/ics/doclava-src-com-google-doclava-parser/Java.g.yml b/tests/cluecode/data/ics/doclava-src-com-google-doclava-parser/Java.g.yml index 407d71d0ac3..de749764bae 100644 --- a/tests/cluecode/data/ics/doclava-src-com-google-doclava-parser/Java.g.yml +++ b/tests/cluecode/data/ics/doclava-src-com-google-doclava-parser/Java.g.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Terence Parr count: 1 +allrights: + - Copyright (c) 2007-2008 Terence Parr All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.c.yml b/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.c.yml index 24d0c1763d0..c232dd988b3 100644 --- a/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.c.yml +++ b/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Michael J. Fromberger count: 1 +allrights: + - Copyright (c) 1998 Michael J. Fromberger, All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.h.yml b/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.h.yml index 24d0c1763d0..c232dd988b3 100644 --- a/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.h.yml +++ b/tests/cluecode/data/ics/dropbear-libtommath-mtest/mpi.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Michael J. Fromberger count: 1 +allrights: + - Copyright (c) 1998 Michael J. Fromberger, All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/LICENSE.yml b/tests/cluecode/data/ics/dropbear/LICENSE.yml index 93081feafc6..4036cdfd928 100644 --- a/tests/cluecode/data/ics/dropbear/LICENSE.yml +++ b/tests/cluecode/data/ics/dropbear/LICENSE.yml @@ -34,3 +34,11 @@ holders_summary: count: 1 - value: Todd C. Miller count: 1 +allrights: + - (c) 2004 Mihnea Stoenescu + - Copyright (c) 2002-2006 Matt Johnston + - Portions copyright (c) 2004 Mihnea Stoenescu All rights reserved. + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland All rights reserved + - (c) Todd C. Miller + - copyright 1997-2003 Simon Tatham. + - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/agentfwd.h.yml b/tests/cluecode/data/ics/dropbear/agentfwd.h.yml index 924099e82f7..26bb3ed8d63 100644 --- a/tests/cluecode/data/ics/dropbear/agentfwd.h.yml +++ b/tests/cluecode/data/ics/dropbear/agentfwd.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Matt Johnston count: 1 +allrights: + - Copyright (c) 2002,2003 Matt Johnston All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/atomicio.c.yml b/tests/cluecode/data/ics/dropbear/atomicio.c.yml index d7f89e7c932..d610fb3d376 100644 --- a/tests/cluecode/data/ics/dropbear/atomicio.c.yml +++ b/tests/cluecode/data/ics/dropbear/atomicio.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Theo de Raadt count: 1 +allrights: + - Copyright (c) 1995,1999 Theo de Raadt. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/circbuffer.c.yml b/tests/cluecode/data/ics/dropbear/circbuffer.c.yml index b9eb4ff6b22..be263abcb9f 100644 --- a/tests/cluecode/data/ics/dropbear/circbuffer.c.yml +++ b/tests/cluecode/data/ics/dropbear/circbuffer.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Matt Johnston count: 1 +allrights: + - Copyright (c) 2002-2004 Matt Johnston All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/cli-algo.c.yml b/tests/cluecode/data/ics/dropbear/cli-algo.c.yml index 303fa452a87..b67cfe54905 100644 --- a/tests/cluecode/data/ics/dropbear/cli-algo.c.yml +++ b/tests/cluecode/data/ics/dropbear/cli-algo.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Mihnea Stoenescu count: 1 +allrights: + - Copyright (c) 2002,2003 Matt Johnston + - Copyright (c) 2004 by Mihnea Stoenescu All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/cli-authinteract.c.yml b/tests/cluecode/data/ics/dropbear/cli-authinteract.c.yml index f58dd963426..2af2c0ba758 100644 --- a/tests/cluecode/data/ics/dropbear/cli-authinteract.c.yml +++ b/tests/cluecode/data/ics/dropbear/cli-authinteract.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Matt Johnston count: 1 +allrights: + - Copyright (c) 2005 Matt Johnston All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/cli-kex.c.yml b/tests/cluecode/data/ics/dropbear/cli-kex.c.yml index bac579d2357..7b65a147d7f 100644 --- a/tests/cluecode/data/ics/dropbear/cli-kex.c.yml +++ b/tests/cluecode/data/ics/dropbear/cli-kex.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Mihnea Stoenescu count: 1 +allrights: + - Copyright (c) 2002-2004 Matt Johnston + - Copyright (c) 2004 by Mihnea Stoenescu All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/common-kex.c.yml b/tests/cluecode/data/ics/dropbear/common-kex.c.yml index ea4674c20b9..48e0833f62a 100644 --- a/tests/cluecode/data/ics/dropbear/common-kex.c.yml +++ b/tests/cluecode/data/ics/dropbear/common-kex.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Mihnea Stoenescu count: 1 +allrights: + - Copyright (c) 2002-2004 Matt Johnston + - Portions Copyright (c) 2004 by Mihnea Stoenescu All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/compat.c.yml b/tests/cluecode/data/ics/dropbear/compat.c.yml index 3e2a34c6c8e..59866aabd96 100644 --- a/tests/cluecode/data/ics/dropbear/compat.c.yml +++ b/tests/cluecode/data/ics/dropbear/compat.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Todd C. Miller count: 1 +allrights: + - Copyright (c) 2002,2003 Matt Johnston All rights reserved. + - Copyright (c) 1998 Todd C. Miller All rights reserved. + - Copyright (c) 1990, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/dbutil.c.yml b/tests/cluecode/data/ics/dropbear/dbutil.c.yml index ddd8035e304..93e99db5309 100644 --- a/tests/cluecode/data/ics/dropbear/dbutil.c.yml +++ b/tests/cluecode/data/ics/dropbear/dbutil.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Todd C. Miller count: 1 +allrights: + - Copyright (c) 2002,2003 Matt Johnston All rights reserved. + - Copyright (c) 1998 Todd C. Miller All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/fake-rfc2553.c.yml b/tests/cluecode/data/ics/dropbear/fake-rfc2553.c.yml index 7cdb7a5121f..c5a588136d5 100644 --- a/tests/cluecode/data/ics/dropbear/fake-rfc2553.c.yml +++ b/tests/cluecode/data/ics/dropbear/fake-rfc2553.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: WIDE Project count: 1 +allrights: + - Copyright (c) 2000-2003 Damien Miller. All rights reserved. + - Copyright (c) 1999 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/keyimport.c.yml b/tests/cluecode/data/ics/dropbear/keyimport.c.yml index 80830ee9534..bbd2998e7d9 100644 --- a/tests/cluecode/data/ics/dropbear/keyimport.c.yml +++ b/tests/cluecode/data/ics/dropbear/keyimport.c.yml @@ -20,3 +20,7 @@ holders_summary: count: 1 - value: Simon Tatham count: 1 +allrights: + - copyright 2003 Matt Johnston + - copyright 1997-2003 Simon Tatham. + - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/loginrec.c.yml b/tests/cluecode/data/ics/dropbear/loginrec.c.yml index 68228ffb4f6..07105afd5ee 100644 --- a/tests/cluecode/data/ics/dropbear/loginrec.c.yml +++ b/tests/cluecode/data/ics/dropbear/loginrec.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Todd C. Miller count: 1 +allrights: + - Copyright (c) 2000 Andre Lucas. All rights reserved. + - Portions copyright (c) 1998 Todd C. Miller + - Portions copyright (c) 1996 Jason Downs + - Portions copyright (c) 1996 Theo de Raadt \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/loginrec.h.yml b/tests/cluecode/data/ics/dropbear/loginrec.h.yml index 5195a048b8d..3d11cd0f274 100644 --- a/tests/cluecode/data/ics/dropbear/loginrec.h.yml +++ b/tests/cluecode/data/ics/dropbear/loginrec.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Andre Lucas count: 1 +allrights: + - Copyright (c) 2000 Andre Lucas. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/netbsd_getpass.c.yml b/tests/cluecode/data/ics/dropbear/netbsd_getpass.c.yml index dafceefa8b3..07c58d6d375 100644 --- a/tests/cluecode/data/ics/dropbear/netbsd_getpass.c.yml +++ b/tests/cluecode/data/ics/dropbear/netbsd_getpass.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - 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/ics/dropbear/progressmeter.c.yml b/tests/cluecode/data/ics/dropbear/progressmeter.c.yml index bb89d815d3f..63c022b360d 100644 --- a/tests/cluecode/data/ics/dropbear/progressmeter.c.yml +++ b/tests/cluecode/data/ics/dropbear/progressmeter.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nils Nordman count: 1 +allrights: + - Copyright (c) 2003 Nils Nordman. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/progressmeter.h.yml b/tests/cluecode/data/ics/dropbear/progressmeter.h.yml index a852277eae0..5dfdc4893cb 100644 --- a/tests/cluecode/data/ics/dropbear/progressmeter.h.yml +++ b/tests/cluecode/data/ics/dropbear/progressmeter.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nils Nordman count: 1 +allrights: + - Copyright (c) 2002 Nils Nordman. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/scp.c.yml b/tests/cluecode/data/ics/dropbear/scp.c.yml index 03391a9e5a4..8c56772f98a 100644 --- a/tests/cluecode/data/ics/dropbear/scp.c.yml +++ b/tests/cluecode/data/ics/dropbear/scp.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Theo de Raadt count: 1 +allrights: + - Copyright (c) 1999 Theo de Raadt. All rights reserved. + - Copyright (c) 1999 Aaron Campbell. All rights reserved. + - Copyright (c) 1983, 1990, 1992, 1993, 1995 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/scpmisc.c.yml b/tests/cluecode/data/ics/dropbear/scpmisc.c.yml index 638e74ecb39..80cafce15db 100644 --- a/tests/cluecode/data/ics/dropbear/scpmisc.c.yml +++ b/tests/cluecode/data/ics/dropbear/scpmisc.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Tatu Ylonen , Espoo, Finland count: 1 +allrights: + - Copyright (c) 2000 Markus Friedl. All rights reserved. + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/scpmisc.h.yml b/tests/cluecode/data/ics/dropbear/scpmisc.h.yml index 5b03863af6c..53c31f68282 100644 --- a/tests/cluecode/data/ics/dropbear/scpmisc.h.yml +++ b/tests/cluecode/data/ics/dropbear/scpmisc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Tatu Ylonen , Espoo, Finland count: 1 +allrights: + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland All rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/svr-authpam.c.yml b/tests/cluecode/data/ics/dropbear/svr-authpam.c.yml index 9bc4c69aca4..0ee400a4708 100644 --- a/tests/cluecode/data/ics/dropbear/svr-authpam.c.yml +++ b/tests/cluecode/data/ics/dropbear/svr-authpam.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Matt Johnston count: 1 +allrights: + - Copyright (c) 2004 Martin Carlsson + - Portions (c) 2004 Matt Johnston All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/dropbear/svr-main.c.yml b/tests/cluecode/data/ics/dropbear/svr-main.c.yml index 7bb8fa69cef..873984f9416 100644 --- a/tests/cluecode/data/ics/dropbear/svr-main.c.yml +++ b/tests/cluecode/data/ics/dropbear/svr-main.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Matt Johnston count: 1 +allrights: + - Copyright (c) 2002-2006 Matt Johnston All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/ANTMain.java.yml b/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/ANTMain.java.yml index 06e75519061..de6aca32d65 100644 --- a/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/ANTMain.java.yml +++ b/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/ANTMain.java.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - Vlad Roubtsov, (c) 2004 \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/emmajavaTask.java.yml b/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/emmajavaTask.java.yml index 68fbac20041..17e5e7dcab5 100644 --- a/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/emmajavaTask.java.yml +++ b/tests/cluecode/data/ics/emma-ant-ant14-com-vladium-emma/emmajavaTask.java.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - Vlad Roubtsov, (c) 2003 \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-data/IMetadataConstants.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-data/IMetadataConstants.java.yml index af240e424be..427ea5c18ac 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-data/IMetadataConstants.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-data/IMetadataConstants.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-report-lcov/ReportGenerator.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-report-lcov/ReportGenerator.java.yml index c7ae1763eed..b8bed23582f 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-report-lcov/ReportGenerator.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma-report-lcov/ReportGenerator.java.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright 2009 Google Inc. All Rights Reserved. + - Copyright (c) 2003 Vladimir Roubtsov. + - Vlad Roubtsov, (c) 2003 + - Tim Baverstock, (c) 2009 \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/IAppConstants.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/IAppConstants.java.yml index 61a89a8ee0e..1ab0fa80029 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/IAppConstants.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/IAppConstants.java.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Vlad Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - Vlad Roubtsov, (c) 2003 + - (c) Vladimir Roubtsov \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/Processor.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/Processor.java.yml index 23b0f8cb89a..d61867753b3 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/Processor.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-emma/Processor.java.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2004 Vladimir Roubtsov. All rights reserved. + - Vlad Roubtsov, (c) 2004 \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/AbstractClassDefVisitor.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/AbstractClassDefVisitor.java.yml index e3ef79bf6d6..b676408ca54 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/AbstractClassDefVisitor.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/AbstractClassDefVisitor.java.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - (c) 2001, Vlad Roubtsov \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/ConstantCollection.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/ConstantCollection.java.yml index 45f5fc4a950..8f9e2bbeac2 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/ConstantCollection.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-jcd-cls/ConstantCollection.java.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Vladimir Roubtsov count: 2 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - (c) 2001, Vladimir Roubtsov \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-logging/ILogLevels.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-logging/ILogLevels.java.yml index 4deff833a2d..3317aa3ec4b 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-logging/ILogLevels.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-logging/ILogLevels.java.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - Vlad Roubtsov, (c) 2001 \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/SoftValueMap.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/SoftValueMap.java.yml index 8964d6c2e2a..6a39ac7fa9e 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/SoftValueMap.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/SoftValueMap.java.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - (c) 2002, Vlad Roubtsov \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/WCMatcher.java.yml b/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/WCMatcher.java.yml index bc62b7bce13..45874a06b10 100644 --- a/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/WCMatcher.java.yml +++ b/tests/cluecode/data/ics/emma-core-java12-com-vladium-util/WCMatcher.java.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Vladimir Roubtsov count: 1 +allrights: + - Copyright (c) 2003 Vladimir Roubtsov. All rights reserved. + - Vlad Roubtsov, (c) 2002 \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma/BUILD.txt.yml b/tests/cluecode/data/ics/emma/BUILD.txt.yml index 0ac5a90014d..b9837203ead 100644 --- a/tests/cluecode/data/ics/emma/BUILD.txt.yml +++ b/tests/cluecode/data/ics/emma/BUILD.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Vlad Roubtsov count: 1 +allrights: + - Copyright (c) 2003-2004 Vlad Roubtsov. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/emma/test.sh.yml b/tests/cluecode/data/ics/emma/test.sh.yml index 42804137f63..51963e7b356 100644 --- a/tests/cluecode/data/ics/emma/test.sh.yml +++ b/tests/cluecode/data/ics/emma/test.sh.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/expat-amiga/expat_lib.c.yml b/tests/cluecode/data/ics/expat-amiga/expat_lib.c.yml index 3989e6fc34f..998f1402f5f 100644 --- a/tests/cluecode/data/ics/expat-amiga/expat_lib.c.yml +++ b/tests/cluecode/data/ics/expat-amiga/expat_lib.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Expat maintainers count: 1 +allrights: + - Copyright (c) 2001-2007 Expat maintainers. \ No newline at end of file diff --git a/tests/cluecode/data/ics/expat-conftools/ltmain.sh.yml b/tests/cluecode/data/ics/expat-conftools/ltmain.sh.yml index c1e1af769fa..38822ab5e64 100644 --- a/tests/cluecode/data/ics/expat-conftools/ltmain.sh.yml +++ b/tests/cluecode/data/ics/expat-conftools/ltmain.sh.yml @@ -5,10 +5,13 @@ what: copyrights: - Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. - - Copyright (c) 2005 Free Software Foundation, Inc + - Copyright (c) 2005 Free Software Foundation, Inc. holders: - Free Software Foundation, Inc. - - Free Software Foundation, Inc + - Free Software Foundation, Inc. holders_summary: - value: Free Software Foundation count: 2 +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/ics/expat-doc/reference.html.yml b/tests/cluecode/data/ics/expat-doc/reference.html.yml index 8b421e1a4e6..8acbe4f2df1 100644 --- a/tests/cluecode/data/ics/expat-doc/reference.html.yml +++ b/tests/cluecode/data/ics/expat-doc/reference.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Clark Cooper count: 1 +allrights: + - Copyright 1999,2000 Clark Cooper All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/expat-examples/outline.c.yml b/tests/cluecode/data/ics/expat-examples/outline.c.yml index 9851d222496..77223760122 100644 --- a/tests/cluecode/data/ics/expat-examples/outline.c.yml +++ b/tests/cluecode/data/ics/expat-examples/outline.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Clark Cooper count: 1 +allrights: + - Copyright 1999, Clark Cooper All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/expat-lib/macconfig.h.yml b/tests/cluecode/data/ics/expat-lib/macconfig.h.yml index 8b63c5d98c9..d5c70b71d1b 100644 --- a/tests/cluecode/data/ics/expat-lib/macconfig.h.yml +++ b/tests/cluecode/data/ics/expat-lib/macconfig.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Clark Cooper count: 1 +allrights: + - Copyright 2000, Clark Cooper All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/expat/NOTICE.yml b/tests/cluecode/data/ics/expat/NOTICE.yml index df6143db736..d084d3ad47d 100644 --- a/tests/cluecode/data/ics/expat/NOTICE.yml +++ b/tests/cluecode/data/ics/expat/NOTICE.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Thai Open Source Software Center Ltd and Clark Cooper count: 1 +allrights: + - Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. \ No newline at end of file diff --git a/tests/cluecode/data/ics/fdlibm/NOTICE.yml b/tests/cluecode/data/ics/fdlibm/NOTICE.yml index b71748a147f..a8c66e1eeb3 100644 --- a/tests/cluecode/data/ics/fdlibm/NOTICE.yml +++ b/tests/cluecode/data/ics/fdlibm/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/fdlibm/e_acos.c.yml b/tests/cluecode/data/ics/fdlibm/e_acos.c.yml index b71748a147f..a8c66e1eeb3 100644 --- a/tests/cluecode/data/ics/fdlibm/e_acos.c.yml +++ b/tests/cluecode/data/ics/fdlibm/e_acos.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/fdlibm/e_exp.c.yml b/tests/cluecode/data/ics/fdlibm/e_exp.c.yml index 26e90683693..1c3e444280f 100644 --- a/tests/cluecode/data/ics/fdlibm/e_exp.c.yml +++ b/tests/cluecode/data/ics/fdlibm/e_exp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2004 by Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/fdlibm/k_tan.c.yml b/tests/cluecode/data/ics/fdlibm/k_tan.c.yml index a95722c00f9..90945331363 100644 --- a/tests/cluecode/data/ics/fdlibm/k_tan.c.yml +++ b/tests/cluecode/data/ics/fdlibm/k_tan.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/fdlibm/makefile.in.yml b/tests/cluecode/data/ics/fdlibm/makefile.in.yml index b71748a147f..a8c66e1eeb3 100644 --- a/tests/cluecode/data/ics/fdlibm/makefile.in.yml +++ b/tests/cluecode/data/ics/fdlibm/makefile.in.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 1993 by Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-builds/ft2unix.h.yml b/tests/cluecode/data/ics/freetype-builds/ft2unix.h.yml index 1f4bbcbca76..87e1e1646a6 100644 --- a/tests/cluecode/data/ics/freetype-builds/ft2unix.h.yml +++ b/tests/cluecode/data/ics/freetype-builds/ft2unix.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-config/ftconfig.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-config/ftconfig.h.yml index 59a3e06ff6b..91cc70d8c44 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-config/ftconfig.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-config/ftconfig.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2004, 2006-2008, 2010-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-config/ftstdlib.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-config/ftstdlib.h.yml index 7601d90d7e6..54bbf9c25e3 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-config/ftstdlib.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-config/ftstdlib.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svbdf.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svbdf.h.yml index 94ca619ef33..05a87e8de92 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svbdf.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svbdf.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svcid.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svcid.h.yml index 462002c6673..c4d8fb72ac0 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svcid.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svcid.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Derek Clegg, Michael Toftdal count: 1 +allrights: + - Copyright 2007, 2009 by Derek Clegg, Michael Toftdal. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svgxval.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svgxval.h.yml index 784a09d56d0..4f2fde5c624 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svgxval.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svgxval.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Masatake YAMATO, Red Hat K.K., David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2004, 2005 by Masatake YAMATO, Red Hat K.K., David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svkern.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svkern.h.yml index ba6f1a07b4f..279579c5927 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svkern.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svkern.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svmm.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svmm.h.yml index 33f8736fd78..01e86969d3b 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svmm.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svmm.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003, 2004 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpostnm.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpostnm.h.yml index 70be23bdaed..cc9b06b1586 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpostnm.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpostnm.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpsinfo.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpsinfo.h.yml index 0af95185f66..7ff6f0a40d0 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpsinfo.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svpsinfo.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003, 2004, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttcmap.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttcmap.h.yml index eb87e901a8f..5f5bd4e751b 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttcmap.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttcmap.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Masatake YAMATO, Redhat K.K. count: 1 +allrights: + - Copyright 2003 by Masatake YAMATO, Redhat K.K. + - Copyright 2003, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttglyf.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttglyf.h.yml index a32896ec159..d133c7031d6 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttglyf.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal-services/svttglyf.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner count: 1 +allrights: + - Copyright 2007 by David Turner. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/autohint.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/autohint.h.yml index e91d797837e..96f92cef068 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/autohint.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/autohint.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftcalc.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftcalc.h.yml index a72970868d5..ab0c1079229 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftcalc.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftcalc.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdebug.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdebug.h.yml index 530328d824a..86f4dfca4f4 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdebug.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdebug.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2004, 2006, 2007, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdriver.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdriver.h.yml index 1fde3166340..49fd5206330 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdriver.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftdriver.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2006, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftobjs.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftobjs.h.yml index 1a63f03bf94..dfc9500ac19 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftobjs.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftobjs.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2008, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftpic.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftpic.h.yml index 308502b5b59..2e91809b913 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftpic.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftpic.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Oran Agra and Mickey Gabel count: 1 +allrights: + - Copyright 2009 by Oran Agra and Mickey Gabel. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftserv.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftserv.h.yml index 1e2f5ae7717..5c1c9b426b0 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftserv.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftserv.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003, 2004, 2005, 2006, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftstream.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftstream.h.yml index 3f7492ad767..d52a34b17bf 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftstream.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftstream.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2002, 2004-2006, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/fttrace.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/fttrace.h.yml index 86f35dbe1ac..e217f0f6402 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/fttrace.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/fttrace.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2004-2007, 2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftvalid.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftvalid.h.yml index 29fe027d2bc..691c3333a20 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/ftvalid.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/ftvalid.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2004 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/internal.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/internal.h.yml index c35f6e02377..f9f39177502 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/internal.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/internal.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/pshints.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/pshints.h.yml index ff91917127d..37a32c4c02c 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/pshints.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/pshints.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2005, 2006, 2007, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/sfnt.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/sfnt.h.yml index db6feedd9e7..e752bae966d 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/sfnt.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/sfnt.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype-internal/tttypes.h.yml b/tests/cluecode/data/ics/freetype-include-freetype-internal/tttypes.h.yml index 22d9819f7af..4c529f20919 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype-internal/tttypes.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype-internal/tttypes.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2004, 2005, 2006, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/freetype.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/freetype.h.yml index edf32a672b7..bce9ebfc41a 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/freetype.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/freetype.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftadvanc.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftadvanc.h.yml index 18c9ff7e3b0..1ffb003229d 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftadvanc.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftadvanc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftbbox.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftbbox.h.yml index 6c49044e7da..3fabd524d2d 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftbbox.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftbbox.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2003, 2007, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftbdf.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftbdf.h.yml index 8af5b37cb10..d50f3d862a5 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftbdf.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftbdf.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2006, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftbitmap.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftbitmap.h.yml index a61bc0762db..f6eb9c69e8a 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftbitmap.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftbitmap.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2004, 2005, 2006, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftcache.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftcache.h.yml index fe90458c72e..a61bf0220eb 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftcache.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftcache.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftcid.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftcid.h.yml index 41fd69daf7c..bde975b6013 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftcid.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftcid.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Dereg Clegg, Michael Toftdal count: 1 +allrights: + - Copyright 2007, 2009 by Dereg Clegg, Michael Toftdal. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/fterrdef.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/fterrdef.h.yml index 4d339b7fed4..a45043f4c6e 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/fterrdef.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/fterrdef.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2004, 2006, 2007, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/fterrors.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/fterrors.h.yml index 25495f2ad9e..f271002e949 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/fterrors.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/fterrors.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2004, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftgasp.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftgasp.h.yml index 57a754fa4d5..ca0714bf76b 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftgasp.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftgasp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2007, 2008, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftglyph.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftglyph.h.yml index f1c0831f025..85400f50d35 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftglyph.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftglyph.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2003, 2006, 2008, 2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftgxval.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftgxval.h.yml index 9ce13e16e0c..2ca8936ced8 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftgxval.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftgxval.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Masatake YAMATO, Redhat K.K, David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2004, 2005, 2006 by Masatake YAMATO, Redhat K.K, David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftgzip.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftgzip.h.yml index f0200b732cc..9b95a1eabab 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftgzip.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftgzip.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftimage.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftimage.h.yml index 8c2a5941e7a..ed6c4c71ef6 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftimage.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftimage.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftincrem.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftincrem.h.yml index 9e32168f59f..b9dbe0039f0 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftincrem.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftincrem.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2006, 2007, 2008, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftlcdfil.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftlcdfil.h.yml index a2a5756c276..0d25f3fdb62 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftlcdfil.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftlcdfil.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006, 2007, 2008, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftlist.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftlist.h.yml index 80724ab95d4..8dac3e3ad69 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftlist.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftlist.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2003, 2007, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftlzw.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftlzw.h.yml index 133be04b017..0437bd56d85 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftlzw.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftlzw.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2004, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftmac.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftmac.h.yml index 366e08db255..2f81382bfcc 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftmac.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftmac.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2004, 2006, 2007 by Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftmm.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftmm.h.yml index e5bc0db0e12..780ff49eedc 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftmm.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftmm.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2003, 2004, 2006, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftmodapi.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftmodapi.h.yml index eb9bbb8ec90..bed9f234199 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftmodapi.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftmodapi.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2006, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftmoderr.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftmoderr.h.yml index 1cfc5fd732f..7e23a115243 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftmoderr.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftmoderr.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2004, 2005, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftotval.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftotval.h.yml index f466a41fc39..1893fff1bf1 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftotval.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftotval.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2004, 2005, 2006, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftoutln.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftoutln.h.yml index f51ea9fb51e..bdf8fb1814b 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftoutln.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftoutln.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2003, 2005-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftpfr.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftpfr.h.yml index 29c5bafc7cb..75ca660d872 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftpfr.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftpfr.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2006, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftrender.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftrender.h.yml index c6842de4c8f..fb3a4651671 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftrender.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftrender.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2005, 2006, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftsnames.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftsnames.h.yml index 55bab344dc0..6169d79ddc2 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftsnames.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftsnames.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2006, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftstroke.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftstroke.h.yml index 6d10d332e72..00fe73768cb 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftstroke.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftstroke.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002-2006, 2008, 2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftsynth.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftsynth.h.yml index 22d3fdaadb9..3e74228ddc2 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftsynth.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftsynth.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2001, 2003, 2006, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftsystem.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftsystem.h.yml index 9abd7a6b1e7..dd27fe449a6 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftsystem.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftsystem.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2005, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/fttrigon.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/fttrigon.h.yml index 02b2a6dbc96..401d66113aa 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/fttrigon.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/fttrigon.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2003, 2005, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/fttypes.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/fttypes.h.yml index da2fabdf7dd..0ab3aa45c90 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/fttypes.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/fttypes.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2004, 2006, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftwinfnt.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftwinfnt.h.yml index be0efa26331..a8788896ec4 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftwinfnt.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftwinfnt.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003, 2004, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ftxf86.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ftxf86.h.yml index 5f59b9d3a42..c89d4128769 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ftxf86.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ftxf86.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2006, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/t1tables.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/t1tables.h.yml index 338649d8cdc..c90c8eb882b 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/t1tables.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/t1tables.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2006, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ttnameid.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ttnameid.h.yml index a96811ff9c6..ed8d02bc024 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ttnameid.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ttnameid.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2002, 2003, 2004, 2006, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/tttables.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/tttables.h.yml index 4ae29eb57aa..e2e6783a06a 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/tttables.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/tttables.h.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/ics/freetype-include-freetype/tttags.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/tttags.h.yml index 87882df8169..49652567dce 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/tttags.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/tttags.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2004, 2005, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include-freetype/ttunpat.h.yml b/tests/cluecode/data/ics/freetype-include-freetype/ttunpat.h.yml index 5f8ca73a8bb..f58c0e76d99 100644 --- a/tests/cluecode/data/ics/freetype-include-freetype/ttunpat.h.yml +++ b/tests/cluecode/data/ics/freetype-include-freetype/ttunpat.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-include/ft2build.h.yml b/tests/cluecode/data/ics/freetype-include/ft2build.h.yml index f5d0449b887..851b3da2867 100644 --- a/tests/cluecode/data/ics/freetype-include/ft2build.h.yml +++ b/tests/cluecode/data/ics/freetype-include/ft2build.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afangles.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afangles.c.yml index 2bda06ee004..47b845b3005 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afangles.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afangles.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2006, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afcjk.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afcjk.c.yml index f1e1489225e..a9bf799a7e7 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afcjk.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afcjk.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afcjk.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/afcjk.h.yml index 0f57b12d757..3b528e85922 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afcjk.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afcjk.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006, 2007, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afdummy.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afdummy.c.yml index d3ecc697b47..56b6abe4030 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afdummy.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afdummy.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2005, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/aferrors.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/aferrors.h.yml index 821678773ff..39b9e367d37 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/aferrors.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/aferrors.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2005 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afglobal.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afglobal.c.yml index c46ce19517d..9216d48c22b 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afglobal.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afglobal.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afglobal.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/afglobal.h.yml index 8be572a9444..077e8a6a1f7 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afglobal.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afglobal.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2005, 2007, 2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afhints.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afhints.c.yml index 0022da2b994..ebb5b722bbc 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afhints.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afhints.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2007, 2009-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afhints.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/afhints.h.yml index d0be48099fb..264b697a2cf 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afhints.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afhints.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2008, 2010-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/aflatin.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/aflatin.h.yml index 435fd878d4d..7b715550cde 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/aflatin.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/aflatin.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2007, 2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afloader.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afloader.c.yml index 6570407b0ed..f6eb52bbcc3 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afloader.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afloader.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afmodule.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afmodule.c.yml index 6f7198b4b59..37c2900d20c 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afmodule.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afmodule.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2006, 2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afmodule.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/afmodule.h.yml index 6c1fa374cdd..ba7b4ff9e80 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afmodule.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afmodule.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003, 2004, 2005 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afpic.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/afpic.c.yml index b2c57c7bd7e..ce802a06730 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afpic.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afpic.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Oran Agra and Mickey Gabel count: 1 +allrights: + - Copyright 2009, 2010, 2011 by Oran Agra and Mickey Gabel. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afpic.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/afpic.h.yml index cd32d103dfa..2259997eee9 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afpic.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afpic.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Oran Agra and Mickey Gabel count: 1 +allrights: + - Copyright 2009, 2011 by Oran Agra and Mickey Gabel. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/afwarp.h.yml b/tests/cluecode/data/ics/freetype-src-autofit/afwarp.h.yml index ed32d46ebee..2ca14f17e73 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/afwarp.h.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/afwarp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-autofit/autofit.c.yml b/tests/cluecode/data/ics/freetype-src-autofit/autofit.c.yml index eeacc52c38e..a04947dca8e 100644 --- a/tests/cluecode/data/ics/freetype-src-autofit/autofit.c.yml +++ b/tests/cluecode/data/ics/freetype-src-autofit/autofit.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2003-2007, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftadvanc.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftadvanc.c.yml index 56e185f7a8b..e25ee68b694 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftadvanc.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftadvanc.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftapi.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftapi.c.yml index 5fe2cd6ec48..4d6dcaac618 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftapi.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftapi.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftbase.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftbase.c.yml index 0213c418e46..826f3628bd1 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftbase.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftbase.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftbase.h.yml b/tests/cluecode/data/ics/freetype-src-base/ftbase.h.yml index bad7f993aba..0d9cbc27962 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftbase.h.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftbase.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, Werner Lemberg, and suzuki toshiya count: 1 +allrights: + - Copyright 2008, 2010 by David Turner, Robert Wilhelm, Werner Lemberg, and suzuki toshiya. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftbbox.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftbbox.c.yml index aa30941c5ae..4531989aa2b 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftbbox.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftbbox.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2004, 2006, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftbitmap.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftbitmap.c.yml index 870285b89be..eaba4481c88 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftbitmap.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftbitmap.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2004, 2005, 2006, 2007, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftcalc.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftcalc.c.yml index 4380f2eb393..773d166e39e 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftcalc.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftcalc.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftdbgmem.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftdbgmem.c.yml index f0a70ed72e2..009d013f733 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftdbgmem.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftdbgmem.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftdebug.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftdebug.c.yml index 1cb17cb3a29..cd905411779 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftdebug.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftdebug.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2004, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftglyph.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftglyph.c.yml index 13573fee6ad..3007efc0525 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftglyph.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftglyph.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2007, 2008, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftinit.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftinit.c.yml index d946379b545..b09ab896689 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftinit.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftinit.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2005, 2007, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftlcdfil.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftlcdfil.c.yml index 56a17095227..b17f022947e 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftlcdfil.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftlcdfil.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftmm.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftmm.c.yml index 02f069103f8..2d5b70b0424 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftmm.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftmm.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2003, 2004, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftobjs.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftobjs.c.yml index edf32a672b7..bce9ebfc41a 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftobjs.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftobjs.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftpatent.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftpatent.c.yml index c036b7066c4..5d4df305c7f 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftpatent.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftpatent.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner count: 1 +allrights: + - Copyright 2007, 2008, 2010 by David Turner. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftsnames.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftsnames.c.yml index db3ca4d98f7..ce310ccaf9f 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftsnames.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftsnames.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftstream.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftstream.c.yml index 11aba55c256..0b9fcb57fb4 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftstream.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftstream.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2002, 2004-2006, 2008-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftstroke.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftstroke.c.yml index 10ba49de43f..6a8cf609e22 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftstroke.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftstroke.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002-2006, 2008-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftsynth.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftsynth.c.yml index 1953fb2ea8c..0d0ae8e1652 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftsynth.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftsynth.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2001, 2002, 2003, 2004, 2005, 2006, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftsystem.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftsystem.c.yml index cc609f2b389..70e81450f15 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftsystem.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftsystem.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2002, 2006, 2008-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/fttrigon.c.yml b/tests/cluecode/data/ics/freetype-src-base/fttrigon.c.yml index 3fc7c429eb6..549f3950dc9 100644 --- a/tests/cluecode/data/ics/freetype-src-base/fttrigon.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/fttrigon.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2004, 2005 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftutil.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftutil.c.yml index 3ab00768549..b3344f79835 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftutil.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftutil.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2004, 2005, 2006, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-base/ftxf86.c.yml b/tests/cluecode/data/ics/freetype-src-base/ftxf86.c.yml index 504adae1e04..c050bfc1d7d 100644 --- a/tests/cluecode/data/ics/freetype-src-base/ftxf86.c.yml +++ b/tests/cluecode/data/ics/freetype-src-base/ftxf86.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cff.c.yml b/tests/cluecode/data/ics/freetype-src-cff/cff.c.yml index 56dbb7e1452..0d54873af91 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cff.c.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cff.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffcmap.c.yml b/tests/cluecode/data/ics/freetype-src-cff/cffcmap.c.yml index 655c637bf96..8e7ba0469f9 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffcmap.c.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffcmap.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffcmap.h.yml b/tests/cluecode/data/ics/freetype-src-cff/cffcmap.h.yml index 6969b77f1f2..a67935e0dbe 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffcmap.h.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffcmap.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cfferrs.h.yml b/tests/cluecode/data/ics/freetype-src-cff/cfferrs.h.yml index 582ebe17497..497dc38299d 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cfferrs.h.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cfferrs.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffload.c.yml b/tests/cluecode/data/ics/freetype-src-cff/cffload.c.yml index 8c2a5941e7a..ed6c4c71ef6 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffload.c.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffload.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffload.h.yml b/tests/cluecode/data/ics/freetype-src-cff/cffload.h.yml index 7e75e9f1ea0..db169b930ff 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffload.h.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffload.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2007, 2008, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffobjs.h.yml b/tests/cluecode/data/ics/freetype-src-cff/cffobjs.h.yml index 4e14530e00d..f526dc29050 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffobjs.h.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffobjs.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffparse.c.yml b/tests/cluecode/data/ics/freetype-src-cff/cffparse.c.yml index 53bfd03a657..bdea285da19 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffparse.c.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffparse.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2004, 2007-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffparse.h.yml b/tests/cluecode/data/ics/freetype-src-cff/cffparse.h.yml index 28feb0306bd..b689598c88a 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffparse.h.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffparse.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cffpic.c.yml b/tests/cluecode/data/ics/freetype-src-cff/cffpic.c.yml index c88457c3811..5987956b1a2 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cffpic.c.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cffpic.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Oran Agra and Mickey Gabel count: 1 +allrights: + - Copyright 2009, 2010 by Oran Agra and Mickey Gabel. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-cff/cfftypes.h.yml b/tests/cluecode/data/ics/freetype-src-cff/cfftypes.h.yml index f17df7515c9..fdf42537cbe 100644 --- a/tests/cluecode/data/ics/freetype-src-cff/cfftypes.h.yml +++ b/tests/cluecode/data/ics/freetype-src-cff/cfftypes.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2003, 2006-2008, 2010-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/afmparse.c.yml b/tests/cluecode/data/ics/freetype-src-psaux/afmparse.c.yml index 77af1bbe8c6..6722859310c 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/afmparse.c.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/afmparse.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006, 2007, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/psaux.c.yml b/tests/cluecode/data/ics/freetype-src-psaux/psaux.c.yml index 4001d254039..260feb4e245 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/psaux.c.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/psaux.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.c.yml b/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.c.yml index 3a63f586686..cda58e547f5 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.c.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2001, 2002, 2003, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.h.yml b/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.h.yml index 2f264077292..1f210facec5 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.h.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/psauxmod.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2001 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/psconv.c.yml b/tests/cluecode/data/ics/freetype-src-psaux/psconv.c.yml index 05a4e498417..0a07c686aae 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/psconv.c.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/psconv.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/t1cmap.c.yml b/tests/cluecode/data/ics/freetype-src-psaux/t1cmap.c.yml index 9611ca23487..533fac277d2 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/t1cmap.c.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/t1cmap.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2006, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/t1decode.c.yml b/tests/cluecode/data/ics/freetype-src-psaux/t1decode.c.yml index 6ebd5342261..2d8d15a497e 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/t1decode.c.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/t1decode.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psaux/t1decode.h.yml b/tests/cluecode/data/ics/freetype-src-psaux/t1decode.h.yml index a528fc88830..b02341e8d07 100644 --- a/tests/cluecode/data/ics/freetype-src-psaux/t1decode.h.yml +++ b/tests/cluecode/data/ics/freetype-src-psaux/t1decode.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2001, 2002, 2003 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.c.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.c.yml index 965b176b460..9829c452df3 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.c.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.h.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.h.yml index 4aae7a87647..b58b0d68d0f 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.h.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshalgo.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.c.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.c.yml index f20825dc27c..676754ed3d0 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.c.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2004, 2006, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.h.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.h.yml index 9eceecc4320..52abf126a61 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.h.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshglob.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshinter.c.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshinter.c.yml index 0e38e66f265..e5e5440b6ef 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshinter.c.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshinter.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2003 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshmod.c.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshmod.c.yml index 7c5e07845d7..3d1ab0dd173 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshmod.c.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshmod.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.c.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.c.yml index c98d34b9bb3..11f1514c9aa 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.c.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2004, 2007, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.h.yml b/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.h.yml index bb61b12cc82..29d6ddb15e1 100644 --- a/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.h.yml +++ b/tests/cluecode/data/ics/freetype-src-pshinter/pshrec.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2002, 2003, 2006, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psnames/psmodule.c.yml b/tests/cluecode/data/ics/freetype-src-psnames/psmodule.c.yml index 6cb25b4aa18..fe1a7265ffe 100644 --- a/tests/cluecode/data/ics/freetype-src-psnames/psmodule.c.yml +++ b/tests/cluecode/data/ics/freetype-src-psnames/psmodule.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2005, 2006, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psnames/psmodule.h.yml b/tests/cluecode/data/ics/freetype-src-psnames/psmodule.h.yml index 948231570a7..2c140cbc548 100644 --- a/tests/cluecode/data/ics/freetype-src-psnames/psmodule.h.yml +++ b/tests/cluecode/data/ics/freetype-src-psnames/psmodule.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-psnames/pstables.h.yml b/tests/cluecode/data/ics/freetype-src-psnames/pstables.h.yml index e5adcb670e7..e027fe43096 100644 --- a/tests/cluecode/data/ics/freetype-src-psnames/pstables.h.yml +++ b/tests/cluecode/data/ics/freetype-src-psnames/pstables.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2005, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-raster/ftmisc.h.yml b/tests/cluecode/data/ics/freetype-src-raster/ftmisc.h.yml index 19ec92ffc30..e437ee3c8af 100644 --- a/tests/cluecode/data/ics/freetype-src-raster/ftmisc.h.yml +++ b/tests/cluecode/data/ics/freetype-src-raster/ftmisc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2005, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-raster/ftraster.c.yml b/tests/cluecode/data/ics/freetype-src-raster/ftraster.c.yml index 0468df80405..d74f7e3f55c 100644 --- a/tests/cluecode/data/ics/freetype-src-raster/ftraster.c.yml +++ b/tests/cluecode/data/ics/freetype-src-raster/ftraster.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2005, 2007, 2008, 2009, 2010, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-raster/ftrend1.c.yml b/tests/cluecode/data/ics/freetype-src-raster/ftrend1.c.yml index ccbc5a97250..1fb73c2923b 100644 --- a/tests/cluecode/data/ics/freetype-src-raster/ftrend1.c.yml +++ b/tests/cluecode/data/ics/freetype-src-raster/ftrend1.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2005, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/sfdriver.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/sfdriver.c.yml index 6f84e4e5294..9ebc089c53d 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/sfdriver.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/sfdriver.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2007, 2009-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/sferrors.h.yml b/tests/cluecode/data/ics/freetype-src-sfnt/sferrors.h.yml index 1558a59a291..ea2aa002100 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/sferrors.h.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/sferrors.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2001, 2004 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/sfobjs.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/sfobjs.c.yml index 8d2841946e2..b82a2e29b1a 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/sfobjs.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/sfobjs.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2008, 2010-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttbdf.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttbdf.c.yml index 1fc415ddce2..5de5a406cea 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttbdf.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttbdf.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2005, 2006, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.c.yml index 78f1c918182..647e30a1e01 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.h.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.h.yml index bcb4a284d36..bdd494e4aff 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.h.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttcmap.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2002, 2003, 2004, 2005 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.c.yml index c0be4ab8db6..81e7988f27d 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.h.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.h.yml index 687f43fa06d..d1179f4374b 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.h.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttkern.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2005, 2007 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttload.h.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttload.h.yml index 957ae8e491b..0e05b0d1497 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttload.h.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttload.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2005, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttmtx.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttmtx.c.yml index d98c4b073f4..f45abaf2908 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttmtx.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttmtx.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2006-2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttpost.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttpost.c.yml index a17c3e74f9b..25cdedd6bb7 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttpost.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttpost.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit.h.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit.h.yml index b1683f13daa..335ae026af9 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit.h.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit0.c.yml b/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit0.c.yml index 79d9ab6d7e4..8a6cd0e2059 100644 --- a/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit0.c.yml +++ b/tests/cluecode/data/ics/freetype-src-sfnt/ttsbit0.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2005, 2006, 2007, 2008, 2009 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-smooth/ftgrays.c.yml b/tests/cluecode/data/ics/freetype-src-smooth/ftgrays.c.yml index de132cb2137..79429f35560 100644 --- a/tests/cluecode/data/ics/freetype-src-smooth/ftgrays.c.yml +++ b/tests/cluecode/data/ics/freetype-src-smooth/ftgrays.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2003, 2005-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-smooth/ftsmooth.c.yml b/tests/cluecode/data/ics/freetype-src-smooth/ftsmooth.c.yml index 2fee39bb163..4e6b5c83306 100644 --- a/tests/cluecode/data/ics/freetype-src-smooth/ftsmooth.c.yml +++ b/tests/cluecode/data/ics/freetype-src-smooth/ftsmooth.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 2000-2006, 2009-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-truetype/truetype.c.yml b/tests/cluecode/data/ics/freetype-src-truetype/truetype.c.yml index b41505578f1..dd77df6642e 100644 --- a/tests/cluecode/data/ics/freetype-src-truetype/truetype.c.yml +++ b/tests/cluecode/data/ics/freetype-src-truetype/truetype.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2004, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-truetype/ttgload.c.yml b/tests/cluecode/data/ics/freetype-src-truetype/ttgload.c.yml index 995b0e06ba0..1e6d9f55317 100644 --- a/tests/cluecode/data/ics/freetype-src-truetype/ttgload.c.yml +++ b/tests/cluecode/data/ics/freetype-src-truetype/ttgload.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2011 David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-truetype/ttgload.h.yml b/tests/cluecode/data/ics/freetype-src-truetype/ttgload.h.yml index bb9a5508926..66f50a385ac 100644 --- a/tests/cluecode/data/ics/freetype-src-truetype/ttgload.h.yml +++ b/tests/cluecode/data/ics/freetype-src-truetype/ttgload.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2006, 2008, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-truetype/ttinterp.h.yml b/tests/cluecode/data/ics/freetype-src-truetype/ttinterp.h.yml index 45ed9de1a0f..48ccec37173 100644 --- a/tests/cluecode/data/ics/freetype-src-truetype/ttinterp.h.yml +++ b/tests/cluecode/data/ics/freetype-src-truetype/ttinterp.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2010 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-truetype/ttobjs.h.yml b/tests/cluecode/data/ics/freetype-src-truetype/ttobjs.h.yml index ea981a1317a..d836330378d 100644 --- a/tests/cluecode/data/ics/freetype-src-truetype/ttobjs.h.yml +++ b/tests/cluecode/data/ics/freetype-src-truetype/ttobjs.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2009, 2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype-src-truetype/ttpload.c.yml b/tests/cluecode/data/ics/freetype-src-truetype/ttpload.c.yml index d9305f96ff0..443fc6ccb90 100644 --- a/tests/cluecode/data/ics/freetype-src-truetype/ttpload.c.yml +++ b/tests/cluecode/data/ics/freetype-src-truetype/ttpload.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Turner, Robert Wilhelm, and Werner Lemberg count: 1 +allrights: + - Copyright 1996-2002, 2004-2011 by David Turner, Robert Wilhelm, and Werner Lemberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/freetype/NOTICE.yml b/tests/cluecode/data/ics/freetype/NOTICE.yml index 44b836e35d6..45f382aee82 100644 --- a/tests/cluecode/data/ics/freetype/NOTICE.yml +++ b/tests/cluecode/data/ics/freetype/NOTICE.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/ics/gtest-test/gtest_filter_unittest.py.yml b/tests/cluecode/data/ics/gtest-test/gtest_filter_unittest.py.yml index 942b76e2706..6069b5e76b5 100644 --- a/tests/cluecode/data/ics/gtest-test/gtest_filter_unittest.py.yml +++ b/tests/cluecode/data/ics/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/gtest-test/gtest_nc_test.py.yml b/tests/cluecode/data/ics/gtest-test/gtest_nc_test.py.yml index 787d756a0d2..73ae41aa09e 100644 --- a/tests/cluecode/data/ics/gtest-test/gtest_nc_test.py.yml +++ b/tests/cluecode/data/ics/gtest-test/gtest_nc_test.py.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/harfbuzz-contrib/harfbuzz-unicode-icu.c.yml b/tests/cluecode/data/ics/harfbuzz-contrib/harfbuzz-unicode-icu.c.yml index 68f0c90ee4e..5167352989c 100644 --- a/tests/cluecode/data/ics/harfbuzz-contrib/harfbuzz-unicode-icu.c.yml +++ b/tests/cluecode/data/ics/harfbuzz-contrib/harfbuzz-unicode-icu.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Google count: 1 +allrights: + - Copyright 2010, The Android Open Source Project + - Copyright 2010, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/iproute2-include-linux-tc_act/tc_skbedit.h.yml b/tests/cluecode/data/ics/iproute2-include-linux-tc_act/tc_skbedit.h.yml index b9fc238023e..78a02f192f2 100644 --- a/tests/cluecode/data/ics/iproute2-include-linux-tc_act/tc_skbedit.h.yml +++ b/tests/cluecode/data/ics/iproute2-include-linux-tc_act/tc_skbedit.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2008, Intel Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/iproute2-include-linux/if_addrlabel.h.yml b/tests/cluecode/data/ics/iproute2-include-linux/if_addrlabel.h.yml index e7e7bb16485..76553fc4bd2 100644 --- a/tests/cluecode/data/ics/iproute2-include-linux/if_addrlabel.h.yml +++ b/tests/cluecode/data/ics/iproute2-include-linux/if_addrlabel.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: USAGI/WIDE Project count: 1 +allrights: + - Copyright (c) 2007 USAGI/WIDE Project, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-include-glibc/NOTICE.yml b/tests/cluecode/data/ics/ipsec-tools-src-include-glibc/NOTICE.yml index 32136a19f80..c82699a9a6d 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-include-glibc/NOTICE.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-include-glibc/NOTICE.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/ipsec-tools-src-libipsec/NOTICE.yml b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/NOTICE.yml index f41312ceafa..b2ad99f5cf9 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/NOTICE.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/NOTICE.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: WIDE Project count: 2 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998, and 1999 WIDE Project. All rights reserved. + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_dump_policy.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_dump_policy.c.yml index db71a49fb7b..336a00208cb 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_dump_policy.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_dump_policy.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998, and 1999 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_set_policy.3.yml b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_set_policy.3.yml index db71a49fb7b..336a00208cb 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_set_policy.3.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/ipsec_set_policy.3.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998, and 1999 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/key_debug.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/key_debug.c.yml index 1496c419588..dec39c12bfb 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/key_debug.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/key_debug.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/ics/ipsec-tools-src-libipsec/policy_parse.y.yml b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/policy_parse.y.yml index db71a49fb7b..336a00208cb 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-libipsec/policy_parse.y.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-libipsec/policy_parse.y.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998, and 1999 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.c.yml index c8eb9963aa9..61c89ff107a 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Aaron D. Gifford count: 1 +allrights: + - Copyright 2000 Aaron D. Gifford. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.h.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.h.yml index c8eb9963aa9..61c89ff107a 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.h.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon-missing-crypto-sha2/sha2.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Aaron D. Gifford count: 1 +allrights: + - Copyright 2000 Aaron D. Gifford. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/NOTICE.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/NOTICE.yml index 6d5cbf42573..905e61c950d 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/NOTICE.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/NOTICE.yml @@ -43,3 +43,16 @@ holders_summary: count: 1 - value: Wasabi Systems, Inc. count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. + - Copyright (c) 2004 Emmanuel Dreyfus All rights reserved. + - Copyright (c) 2004-2006 Emmanuel Dreyfus All rights reserved. + - Copyright (c) 2000 WIDE Project. All rights reserved. + - Copyright (c) 2004-2005 Emmanuel Dreyfus All rights reserved. + - Copyright (c) 2000, 2001 WIDE Project. All rights reserved. + - Copyright (c) 2004 SuSE Linux AG, Nuernberg, Germany. + - Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 and 2003 WIDE Project. All rights reserved. + - Copyright 2000 Wasabi Systems, Inc. All rights reserved. + - Copyright (c) 2005 International Business Machines Corporation + - Copyright (c) 2005 by Trusted Computer Solutions, Inc. All rights reserved. + - Copyright 2000 Aaron D. Gifford. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/cfparse.y.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/cfparse.y.yml index 8eb65b35d67..5681a0575b3 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/cfparse.y.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/cfparse.y.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 and 2003 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/dump.h.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/dump.h.yml index 739ff18d98b..6c99a4c716e 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/dump.h.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/dump.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 2000 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/evt.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/evt.c.yml index e2d9d490092..34e8c1700e7 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/evt.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/evt.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Timo Teras count: 1 +allrights: + - Copyright (c) 2004 Emmanuel Dreyfus + - Copyright (c) 2008 Timo Teras All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/gcmalloc.h.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/gcmalloc.h.yml index 400e413ce06..791c61c370f 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/gcmalloc.h.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/gcmalloc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 2000, 2001 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/genlist.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/genlist.c.yml index eee1f4f06d9..9a9d819eab4 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/genlist.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/genlist.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SuSE Linux AG, Nuernberg, Germany count: 1 +allrights: + - Copyright (c) 2004 SuSE Linux AG, Nuernberg, Germany. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/grabmyaddr.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/grabmyaddr.c.yml index 5edfcc73cc0..631219c2e42 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/grabmyaddr.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/grabmyaddr.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. + - Copyright (c) 2008 Timo Teras All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/gssapi.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/gssapi.c.yml index 43e73eacbbe..d95ec969060 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/gssapi.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/gssapi.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Wasabi Systems, Inc. count: 1 +allrights: + - Copyright 2000 Wasabi Systems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/handler.h.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/handler.h.yml index 1496c419588..dec39c12bfb 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/handler.h.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/handler.h.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/ics/ipsec-tools-src-racoon/isakmp_cfg.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_cfg.c.yml index 86cc2eae9d4..b83e7dd6f4e 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_cfg.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_cfg.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Emmanuel Dreyfus count: 1 +allrights: + - Copyright (c) 2004-2006 Emmanuel Dreyfus All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_cfg.h.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_cfg.h.yml index f4274c841cb..70307490b5e 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_cfg.h.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_cfg.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Emmanuel Dreyfus count: 1 +allrights: + - Copyright (c) 2004 Emmanuel Dreyfus All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_xauth.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_xauth.c.yml index 872149b517f..79cd28f1019 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_xauth.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/isakmp_xauth.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Emmanuel Dreyfus count: 1 +allrights: + - Copyright (c) 2004-2005 Emmanuel Dreyfus All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/plainrsa-gen.8.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/plainrsa-gen.8.yml index eee1f4f06d9..9a9d819eab4 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/plainrsa-gen.8.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/plainrsa-gen.8.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SuSE Linux AG, Nuernberg, Germany count: 1 +allrights: + - Copyright (c) 2004 SuSE Linux AG, Nuernberg, Germany. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoon.8.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoon.8.yml index 1496c419588..dec39c12bfb 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoon.8.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoon.8.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/ics/ipsec-tools-src-racoon/racoonctl.8.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoonctl.8.yml index f4274c841cb..70307490b5e 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoonctl.8.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoonctl.8.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Emmanuel Dreyfus count: 1 +allrights: + - Copyright (c) 2004 Emmanuel Dreyfus All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoonctl.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoonctl.c.yml index 3a9cf4aa542..1ebc9c22643 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoonctl.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/racoonctl.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. + - Copyright (c) 2008 Timo Teras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools-src-racoon/security.c.yml b/tests/cluecode/data/ics/ipsec-tools-src-racoon/security.c.yml index e23184d80cd..9d6b26bb935 100644 --- a/tests/cluecode/data/ics/ipsec-tools-src-racoon/security.c.yml +++ b/tests/cluecode/data/ics/ipsec-tools-src-racoon/security.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Trusted Computer Solutions, Inc. count: 1 +allrights: + - Copyright (c) 2005 International Business Machines Corporation + - Copyright (c) 2005 by Trusted Computer Solutions, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ipsec-tools/NOTICE.yml b/tests/cluecode/data/ics/ipsec-tools/NOTICE.yml index b81368e8825..3e17e5eea90 100644 --- a/tests/cluecode/data/ics/ipsec-tools/NOTICE.yml +++ b/tests/cluecode/data/ics/ipsec-tools/NOTICE.yml @@ -51,3 +51,19 @@ holders_summary: count: 1 - value: Wasabi Systems, Inc. count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. + - Copyright (c) 2004 Emmanuel Dreyfus All rights reserved. + - Copyright (c) 2004-2006 Emmanuel Dreyfus All rights reserved. + - Copyright (c) 2000 WIDE Project. All rights reserved. + - Copyright (c) 2004-2005 Emmanuel Dreyfus All rights reserved. + - Copyright (c) 2000, 2001 WIDE Project. All rights reserved. + - Copyright (c) 2004 SuSE Linux AG, Nuernberg, Germany. + - Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 and 2003 WIDE Project. All rights reserved. + - Copyright 2000 Wasabi Systems, Inc. All rights reserved. + - Copyright (c) 2005 International Business Machines Corporation + - Copyright (c) 2005 by Trusted Computer Solutions, Inc. All rights reserved. + - Copyright 2000 Aaron D. Gifford. All rights reserved. + - Copyright (c) 1995, 1996, 1997, 1998, and 1999 WIDE Project. All rights reserved. + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. + - 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/iptables-extensions/libxt_IDLETIMER.c.yml b/tests/cluecode/data/ics/iptables-extensions/libxt_IDLETIMER.c.yml index 330cd9e9530..e8f091e1d6d 100644 --- a/tests/cluecode/data/ics/iptables-extensions/libxt_IDLETIMER.c.yml +++ b/tests/cluecode/data/ics/iptables-extensions/libxt_IDLETIMER.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nokia Corporation count: 1 +allrights: + - Copyright (c) 2010 Nokia Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/iptables-extensions/libxt_TEE.c.yml b/tests/cluecode/data/ics/iptables-extensions/libxt_TEE.c.yml index bda05805746..d069742f3f0 100644 --- a/tests/cluecode/data/ics/iptables-extensions/libxt_TEE.c.yml +++ b/tests/cluecode/data/ics/iptables-extensions/libxt_TEE.c.yml @@ -16,3 +16,5 @@ expected_failures: - copyrights - holders - holders_summary +allrights: + - Copyright (c) Sebastian Classen \ No newline at end of file diff --git a/tests/cluecode/data/ics/iptables-extensions/libxt_conntrack.c.yml b/tests/cluecode/data/ics/iptables-extensions/libxt_conntrack.c.yml index cd3833fb2e4..93284ed5209 100644 --- a/tests/cluecode/data/ics/iptables-extensions/libxt_conntrack.c.yml +++ b/tests/cluecode/data/ics/iptables-extensions/libxt_conntrack.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Marc Boucher count: 1 +allrights: + - (c) 2001 Marc Boucher (marc@mbsi.ca). + - Copyright (c) CC Computer Consultants GmbH, 2007 - 2008 Jan Engelhardt \ No newline at end of file diff --git a/tests/cluecode/data/ics/iptables-include-linux-netfilter/xt_conntrack.h.yml b/tests/cluecode/data/ics/iptables-include-linux-netfilter/xt_conntrack.h.yml index 780972a24b1..c3edca9d4a0 100644 --- a/tests/cluecode/data/ics/iptables-include-linux-netfilter/xt_conntrack.h.yml +++ b/tests/cluecode/data/ics/iptables-include-linux-netfilter/xt_conntrack.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Marc Boucher count: 1 +allrights: + - (c) 2001 Marc Boucher (marc@mbsi.ca). \ No newline at end of file diff --git a/tests/cluecode/data/ics/iptables-iptables/iptables-apply.8.yml b/tests/cluecode/data/ics/iptables-iptables/iptables-apply.8.yml index c04b01c7faf..7c446a63edc 100644 --- a/tests/cluecode/data/ics/iptables-iptables/iptables-apply.8.yml +++ b/tests/cluecode/data/ics/iptables-iptables/iptables-apply.8.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Martin F. Krafft count: 1 +allrights: + - copyright by Martin F. Krafft. \ No newline at end of file diff --git a/tests/cluecode/data/ics/iptables-libipq/ipq_create_handle.3.yml b/tests/cluecode/data/ics/iptables-libipq/ipq_create_handle.3.yml index 21df2a8253a..e793cb911ba 100644 --- a/tests/cluecode/data/ics/iptables-libipq/ipq_create_handle.3.yml +++ b/tests/cluecode/data/ics/iptables-libipq/ipq_create_handle.3.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Netfilter Core Team count: 2 +allrights: + - Copyright (c) 2000-2001 Netfilter Core Team + - Copyright (c) 2000-2001 Netfilter Core Team. \ No newline at end of file diff --git a/tests/cluecode/data/ics/iptables-libipq/ipq_errstr.3.yml b/tests/cluecode/data/ics/iptables-libipq/ipq_errstr.3.yml index 833957b1364..cccea6e5578 100644 --- a/tests/cluecode/data/ics/iptables-libipq/ipq_errstr.3.yml +++ b/tests/cluecode/data/ics/iptables-libipq/ipq_errstr.3.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Netfilter Core Team count: 2 +allrights: + - Copyright (c) 2000 Netfilter Core Team + - Copyright (c) 2000-2001 Netfilter Core Team. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-sample-preproc/Assistant.java.yml b/tests/cluecode/data/ics/javassist-sample-preproc/Assistant.java.yml index 6abc7e6b128..c6785c824ef 100644 --- a/tests/cluecode/data/ics/javassist-sample-preproc/Assistant.java.yml +++ b/tests/cluecode/data/ics/javassist-sample-preproc/Assistant.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba count: 1 +allrights: + - Copyright (c) 1999-2005 Shigeru Chiba. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/Annotation.java.yml b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/Annotation.java.yml index ea59d7eba63..3c1000fe9a4 100644 --- a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/Annotation.java.yml +++ b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/Annotation.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Bill Burke count: 1 +allrights: + - Copyright (c) 2004 Bill Burke. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/NoSuchClassError.java.yml b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/NoSuchClassError.java.yml index 3df8073aa94..f7f139779dd 100644 --- a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/NoSuchClassError.java.yml +++ b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode-annotation/NoSuchClassError.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba count: 1 +allrights: + - Copyright (c) 1999-2009 Shigeru Chiba. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/ByteStream.java.yml b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/ByteStream.java.yml index 506e5a6d0a4..71d6e7521b5 100644 --- a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/ByteStream.java.yml +++ b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/ByteStream.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba count: 1 +allrights: + - Copyright (c) 1999-2010 Shigeru Chiba. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/InstructionPrinter.java.yml b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/InstructionPrinter.java.yml index 0fe13ba01e9..23dd7500ccc 100644 --- a/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/InstructionPrinter.java.yml +++ b/tests/cluecode/data/ics/javassist-src-main-javassist-bytecode/InstructionPrinter.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba, and others count: 1 +allrights: + - Copyright (c) 1999-2007 Shigeru Chiba, and others. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-src-main-javassist/ByteArrayClassPath.java.yml b/tests/cluecode/data/ics/javassist-src-main-javassist/ByteArrayClassPath.java.yml index 63671e17781..9c9618f8087 100644 --- a/tests/cluecode/data/ics/javassist-src-main-javassist/ByteArrayClassPath.java.yml +++ b/tests/cluecode/data/ics/javassist-src-main-javassist/ByteArrayClassPath.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba count: 1 +allrights: + - Copyright (c) 1999-2007 Shigeru Chiba. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-src-main-javassist/CtClass.java.yml b/tests/cluecode/data/ics/javassist-src-main-javassist/CtClass.java.yml index 9329898a792..008fea1d7fb 100644 --- a/tests/cluecode/data/ics/javassist-src-main-javassist/CtClass.java.yml +++ b/tests/cluecode/data/ics/javassist-src-main-javassist/CtClass.java.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Shigeru Chiba count: 2 +allrights: + - Copyright (c) 1999-2007 Shigeru Chiba. All Rights Reserved. + - Copyright (c) 1999-2010 Shigeru Chiba. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist-tutorial/tutorial.html.yml b/tests/cluecode/data/ics/javassist-tutorial/tutorial.html.yml index 3694bbf1261..e7bd0597f5b 100644 --- a/tests/cluecode/data/ics/javassist-tutorial/tutorial.html.yml +++ b/tests/cluecode/data/ics/javassist-tutorial/tutorial.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba count: 1 +allrights: + - Copyright (c) 2000-2010 by Shigeru Chiba, All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist/License.html.yml b/tests/cluecode/data/ics/javassist/License.html.yml index 506e5a6d0a4..71d6e7521b5 100644 --- a/tests/cluecode/data/ics/javassist/License.html.yml +++ b/tests/cluecode/data/ics/javassist/License.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba count: 1 +allrights: + - Copyright (c) 1999-2010 Shigeru Chiba. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist/NOTICE.yml b/tests/cluecode/data/ics/javassist/NOTICE.yml index 506e5a6d0a4..71d6e7521b5 100644 --- a/tests/cluecode/data/ics/javassist/NOTICE.yml +++ b/tests/cluecode/data/ics/javassist/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Shigeru Chiba count: 1 +allrights: + - Copyright (c) 1999-2010 Shigeru Chiba. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/javassist/Readme.html.yml b/tests/cluecode/data/ics/javassist/Readme.html.yml index 70b49fba654..8a0051a4329 100644 --- a/tests/cluecode/data/ics/javassist/Readme.html.yml +++ b/tests/cluecode/data/ics/javassist/Readme.html.yml @@ -13,3 +13,7 @@ holders: holders_summary: - value: Shigeru Chiba count: 3 +allrights: + - Copyright (c) 1999-2010 by Shigeru Chiba, All rights reserved. + - Copyright (c) 1999-2010 Shigeru Chiba. All Rights Reserved. + - Copyright (c) 1999-2010 Shigeru Chiba. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jhead/main.c.yml b/tests/cluecode/data/ics/jhead/main.c.yml index 7bd76166a51..76a76c3538d 100644 --- a/tests/cluecode/data/ics/jhead/main.c.yml +++ b/tests/cluecode/data/ics/jhead/main.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2008, The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/NOTICE.yml b/tests/cluecode/data/ics/jpeg/NOTICE.yml index 299bf4cd8ec..a1d2a6511f7 100644 --- a/tests/cluecode/data/ics/jpeg/NOTICE.yml +++ b/tests/cluecode/data/ics/jpeg/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - copyright (c) 1991-1998, Thomas G. Lane. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/README.yml b/tests/cluecode/data/ics/jpeg/README.yml index d2d234661a5..32885858d8b 100644 --- a/tests/cluecode/data/ics/jpeg/README.yml +++ b/tests/cluecode/data/ics/jpeg/README.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/ics/jpeg/ansi2knr.c.yml b/tests/cluecode/data/ics/jpeg/ansi2knr.c.yml index c1f50819752..49d797be71b 100644 --- a/tests/cluecode/data/ics/jpeg/ansi2knr.c.yml +++ b/tests/cluecode/data/ics/jpeg/ansi2knr.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Richard M. Stallman count: 1 +allrights: + - Copyright (c) 1988 Richard M. Stallman + - Copyright (c) 1989 Aladdin Enterprises. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/cderror.h.yml b/tests/cluecode/data/ics/jpeg/cderror.h.yml index 42d963ee878..538e3dfc129 100644 --- a/tests/cluecode/data/ics/jpeg/cderror.h.yml +++ b/tests/cluecode/data/ics/jpeg/cderror.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1994-1997, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/cdjpeg.c.yml b/tests/cluecode/data/ics/jpeg/cdjpeg.c.yml index 8acba5855b9..e3c6bbdf8a0 100644 --- a/tests/cluecode/data/ics/jpeg/cdjpeg.c.yml +++ b/tests/cluecode/data/ics/jpeg/cdjpeg.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1997, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/cjpeg.c.yml b/tests/cluecode/data/ics/jpeg/cjpeg.c.yml index 8363ba6437f..2d167409bba 100644 --- a/tests/cluecode/data/ics/jpeg/cjpeg.c.yml +++ b/tests/cluecode/data/ics/jpeg/cjpeg.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1998, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/ckconfig.c.yml b/tests/cluecode/data/ics/jpeg/ckconfig.c.yml index 7133349f02a..bb926385792 100644 --- a/tests/cluecode/data/ics/jpeg/ckconfig.c.yml +++ b/tests/cluecode/data/ics/jpeg/ckconfig.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1994, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/coderules.doc.yml b/tests/cluecode/data/ics/jpeg/coderules.doc.yml index ad9eaf20d6c..4163a33ef80 100644 --- a/tests/cluecode/data/ics/jpeg/coderules.doc.yml +++ b/tests/cluecode/data/ics/jpeg/coderules.doc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1996, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/filelist.doc.yml b/tests/cluecode/data/ics/jpeg/filelist.doc.yml index 4586a6b8ee0..0f9b93a5bbc 100644 --- a/tests/cluecode/data/ics/jpeg/filelist.doc.yml +++ b/tests/cluecode/data/ics/jpeg/filelist.doc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1994-1998, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/install.doc.yml b/tests/cluecode/data/ics/jpeg/install.doc.yml index 8363ba6437f..2d167409bba 100644 --- a/tests/cluecode/data/ics/jpeg/install.doc.yml +++ b/tests/cluecode/data/ics/jpeg/install.doc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1998, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jcapimin.c.yml b/tests/cluecode/data/ics/jpeg/jcapimin.c.yml index 4586a6b8ee0..0f9b93a5bbc 100644 --- a/tests/cluecode/data/ics/jpeg/jcapimin.c.yml +++ b/tests/cluecode/data/ics/jpeg/jcapimin.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1994-1998, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jcapistd.c.yml b/tests/cluecode/data/ics/jpeg/jcapistd.c.yml index b675272b4c7..66a55f9ad6b 100644 --- a/tests/cluecode/data/ics/jpeg/jcapistd.c.yml +++ b/tests/cluecode/data/ics/jpeg/jcapistd.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1994-1996, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jccolor.c.yml b/tests/cluecode/data/ics/jpeg/jccolor.c.yml index ad9eaf20d6c..4163a33ef80 100644 --- a/tests/cluecode/data/ics/jpeg/jccolor.c.yml +++ b/tests/cluecode/data/ics/jpeg/jccolor.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1996, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jcphuff.c.yml b/tests/cluecode/data/ics/jpeg/jcphuff.c.yml index 1da654c184d..29585186384 100644 --- a/tests/cluecode/data/ics/jpeg/jcphuff.c.yml +++ b/tests/cluecode/data/ics/jpeg/jcphuff.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1995-1997, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jctrans.c.yml b/tests/cluecode/data/ics/jpeg/jctrans.c.yml index bdadd7f4823..81b1b0fe4b0 100644 --- a/tests/cluecode/data/ics/jpeg/jctrans.c.yml +++ b/tests/cluecode/data/ics/jpeg/jctrans.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1995-1998, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jmemansi.c.yml b/tests/cluecode/data/ics/jpeg/jmemansi.c.yml index 091ae899091..c19653268dc 100644 --- a/tests/cluecode/data/ics/jpeg/jmemansi.c.yml +++ b/tests/cluecode/data/ics/jpeg/jmemansi.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1992-1996, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jmemdos.c.yml b/tests/cluecode/data/ics/jpeg/jmemdos.c.yml index dbdad11bf9a..91a79a125c5 100644 --- a/tests/cluecode/data/ics/jpeg/jmemdos.c.yml +++ b/tests/cluecode/data/ics/jpeg/jmemdos.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1992-1997, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/jversion.h.yml b/tests/cluecode/data/ics/jpeg/jversion.h.yml index f8c246de72e..08c45a02871 100644 --- a/tests/cluecode/data/ics/jpeg/jversion.h.yml +++ b/tests/cluecode/data/ics/jpeg/jversion.h.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Thomas G. Lane count: 2 +allrights: + - Copyright (c) 1991-1998, Thomas G. Lane. + - Copyright (c) 1998, Thomas G. Lane \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/rdcolmap.c.yml b/tests/cluecode/data/ics/jpeg/rdcolmap.c.yml index 2d5c37a94f5..0d3e631605d 100644 --- a/tests/cluecode/data/ics/jpeg/rdcolmap.c.yml +++ b/tests/cluecode/data/ics/jpeg/rdcolmap.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1994-1996, Thomas G. Lane. + - Copyright (c) 1988 by Jef Poskanzer. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/rdppm.c.yml b/tests/cluecode/data/ics/jpeg/rdppm.c.yml index 079700cc0a4..cd085dc5985 100644 --- a/tests/cluecode/data/ics/jpeg/rdppm.c.yml +++ b/tests/cluecode/data/ics/jpeg/rdppm.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1997, Thomas G. Lane. + - Copyright (c) 1988 by Jef Poskanzer. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/structure.doc.yml b/tests/cluecode/data/ics/jpeg/structure.doc.yml index 80d1c590624..21ee2b6a41d 100644 --- a/tests/cluecode/data/ics/jpeg/structure.doc.yml +++ b/tests/cluecode/data/ics/jpeg/structure.doc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1995, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/transupp.c.yml b/tests/cluecode/data/ics/jpeg/transupp.c.yml index 0a9ec31eb9b..de3b2eea4fe 100644 --- a/tests/cluecode/data/ics/jpeg/transupp.c.yml +++ b/tests/cluecode/data/ics/jpeg/transupp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1997, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/wrgif.c.yml b/tests/cluecode/data/ics/jpeg/wrgif.c.yml index 81b329903fc..8e4cd7352ac 100644 --- a/tests/cluecode/data/ics/jpeg/wrgif.c.yml +++ b/tests/cluecode/data/ics/jpeg/wrgif.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1991-1997, Thomas G. Lane. + - Copyright (c) 1989 by Jef Poskanzer. + - Copyright property of CompuServe Incorporated. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jpeg/wrjpgcom.c.yml b/tests/cluecode/data/ics/jpeg/wrjpgcom.c.yml index 42d963ee878..538e3dfc129 100644 --- a/tests/cluecode/data/ics/jpeg/wrjpgcom.c.yml +++ b/tests/cluecode/data/ics/jpeg/wrjpgcom.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Thomas G. Lane count: 1 +allrights: + - Copyright (c) 1994-1997, Thomas G. Lane. \ No newline at end of file diff --git a/tests/cluecode/data/ics/jsr305/NOTICE.yml b/tests/cluecode/data/ics/jsr305/NOTICE.yml index cbe7454c8bf..a8fbeb24d9e 100644 --- a/tests/cluecode/data/ics/jsr305/NOTICE.yml +++ b/tests/cluecode/data/ics/jsr305/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: JSR305 expert group count: 1 +allrights: + - Copyright (c) 2007-2009, JSR305 expert group All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-arm-arch/vmalloc.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-arm-arch/vmalloc.h.yml index 73af7182f6b..3caf9a82e73 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-arm-arch/vmalloc.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-arm-arch/vmalloc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Russell King count: 1 +allrights: + - Copyright (c) 2000 Russell King. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/atomic.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/atomic.h.yml index cb30fbc8531..0eae1077e6b 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/atomic.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/atomic.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Russell King count: 1 +allrights: + - Copyright (c) 1996 Russell King. + - Copyright (c) 2002 Deep Blue Solutions Ltd. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/bitops.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/bitops.h.yml index 7d535c2d804..587ad7cefa8 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/bitops.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/bitops.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Russell King count: 1 +allrights: + - Copyright 1995, Russell King. + - Copyright 2001, Nicolas Pitre \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/domain.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/domain.h.yml index 63827aad915..d2b58afe6ea 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/domain.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/domain.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Russell King count: 1 +allrights: + - Copyright (c) 1999 Russell King. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/posix_types.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/posix_types.h.yml index 813639fd567..883a29642d0 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/posix_types.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/posix_types.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Russell King count: 1 +allrights: + - Copyright (c) 1996-1998 Russell King. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/sizes.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/sizes.h.yml index 3d03435f676..ae9dcf62576 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/sizes.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/sizes.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: ARM Limited count: 1 +allrights: + - Copyright (c) ARM Limited 1998. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/thread_info.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/thread_info.h.yml index 89e6f28ec69..ed89d7a358f 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-arm/thread_info.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-arm/thread_info.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Russell King count: 1 +allrights: + - Copyright (c) 2002 Russell King. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-generic/tlb.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-generic/tlb.h.yml index ec1494fada1..0f456347d0f 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-generic/tlb.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-generic/tlb.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Red Hat count: 1 +allrights: + - Copyright 2001 Red Hat, Inc. + - Copyright Linus Torvalds and others. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-x86/bitops_32.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-x86/bitops_32.h.yml index a6589817c73..5b441515244 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-x86/bitops_32.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-x86/bitops_32.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Linus Torvalds count: 1 +allrights: + - Copyright 1992, Linus Torvalds. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-asm-x86/genapic_32.h.yml b/tests/cluecode/data/ics/kernel-headers-original-asm-x86/genapic_32.h.yml index a5f3549742a..f80ce7df73e 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-asm-x86/genapic_32.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-asm-x86/genapic_32.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Andi Kleen, SuSE Labs count: 1 +allrights: + - Copyright 2003 Andi Kleen, SuSE Labs. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux-mtd/flashchip.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux-mtd/flashchip.h.yml index 9c277d562a2..cc0edaaf713 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux-mtd/flashchip.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux-mtd/flashchip.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Red Hat count: 1 +allrights: + - (c) 2000 Red Hat. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_asn1.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_asn1.h.yml index 58bef1104e5..79ef0b43e3e 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_asn1.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_asn1.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: the Massachusetts Institute of Technology count: 1 +allrights: + - Copyright (c) 2000 The Regents of the University of Michigan. All rights reserved. + - Copyright 1995 by the Massachusetts Institute of Technology. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_err.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_err.h.yml index 5fecb547d47..47e65b17c16 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_err.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux-sunrpc/gss_err.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of Michigan count: 1 +allrights: + - Copyright (c) 2002 The Regents of the University of Michigan. All rights reserved. + - Copyright 1993 by OpenVision Technologies, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/a1026.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/a1026.h.yml index a7e761dceab..1d6eee95ed2 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/a1026.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/a1026.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: HTC Corporation count: 1 +allrights: + - Copyright (c) 2009 HTC Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/aio_abi.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/aio_abi.h.yml index 7cb00f3653f..9ce23c10b3d 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/aio_abi.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/aio_abi.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Red Hat count: 1 +allrights: + - Copyright 2000,2001,2002 Red Hat. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/ata.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/ata.h.yml index 0ab18b69cc3..cafe568e00a 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/ata.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/ata.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Red Hat count: 1 +allrights: + - Copyright 2003-2004 Red Hat, Inc. All rights reserved. + - Copyright 2003-2004 Jeff Garzik \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/clk.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/clk.h.yml index dd92af1e823..06acb9780a5 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/clk.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/clk.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: ARM Limited count: 1 +allrights: + - Copyright (c) 2004 ARM Limited. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/coda.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/coda.h.yml index 307c5b07faf..cb4b665e34e 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/coda.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/coda.h.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Carnegie Mellon University count: 2 +allrights: + - Copyright (c) 1987-1999 Carnegie Mellon University + - Copyright (c) 1987-1999 Carnegie Mellon University All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/dm-ioctl.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/dm-ioctl.h.yml index c7c7018fc8f..9eef982ea8c 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/dm-ioctl.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/dm-ioctl.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Sistina Software (UK) Limited count: 1 +allrights: + - Copyright (c) 2001 - 2003 Sistina Software (UK) Limited. + - Copyright (c) 2004 - 2005 Red Hat, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/dmaengine.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/dmaengine.h.yml index c96ae0998b5..3bf71876e59 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/dmaengine.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/dmaengine.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2004 - 2006 Intel Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/ftape.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/ftape.h.yml index f4512532546..af18c0a8355 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/ftape.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/ftape.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Claus-Justus Heine count: 1 +allrights: + - Copyright (c) 1994-1996 Bas Laarhoven + - (c) 1996-1997 Claus-Justus Heine. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/hil.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/hil.h.yml index b2d699cc4cf..631ad7e90f3 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/hil.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/hil.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian S. Julin count: 1 +allrights: + - Copyright (c) 2001 Brian S. Julin All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/if_ppp.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/if_ppp.h.yml index 7662d011bdb..f62da062a56 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/if_ppp.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/if_ppp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Carnegie Mellon University count: 1 +allrights: + - Copyright (c) 1989 Carnegie Mellon University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/jbd.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/jbd.h.yml index 31e8452857e..c0846212696 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/jbd.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/jbd.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Red Hat count: 1 +allrights: + - Copyright 1998-2000 Red Hat, Inc -- All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/kxtf9.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/kxtf9.h.yml index 8adb14132ff..2ef4241e6c2 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/kxtf9.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/kxtf9.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Kionix, Inc. count: 1 +allrights: + - Copyright (c) 2008-2009, Kionix, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/leds-an30259a.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/leds-an30259a.h.yml index 3d11ea65717..2a418414726 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/leds-an30259a.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/leds-an30259a.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Samsung Electronics Co. Ltd. count: 1 +allrights: + - Copyright (c) 2011 Samsung Electronics Co. Ltd. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/lis331dlh.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/lis331dlh.h.yml index b0294a6134b..785228e2ae9 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/lis331dlh.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/lis331dlh.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Motorola count: 1 +allrights: + - Copyright (c) 2008-2009, Motorola, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/loop.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/loop.h.yml index 7e60499c210..3ac21dcda7a 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/loop.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/loop.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Theodore Ts'o count: 1 +allrights: + - Copyright 1993 by Theodore Ts'o. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/msm_q6vdec.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/msm_q6vdec.h.yml index 4f722530630..8564b9898a0 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/msm_q6vdec.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/msm_q6vdec.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Code Aurora Forum count: 1 +allrights: + - Copyright (c) 2008-2009, Code Aurora Forum. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_dec.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_dec.h.yml index ba1950fc272..bdc93d16223 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_dec.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_dec.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Code Aurora Forum count: 1 +allrights: + - Copyright (c) 2010, Code Aurora Forum. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_enc.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_enc.h.yml index ba66a88cb43..121fc132b35 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_enc.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/msm_vidc_enc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Code Aurora Forum count: 1 +allrights: + - Copyright (c) 2009, Code Aurora Forum. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/mt9t013.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/mt9t013.h.yml index 5debc0217a9..5930eac1d46 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/mt9t013.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/mt9t013.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: HTC, Inc count: 1 +allrights: + - Copyright (c) 2007, 2008 HTC, Inc All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/nfs4.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/nfs4.h.yml index 9e841d8aae0..e40c353ad8c 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/nfs4.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/nfs4.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of Michigan count: 1 +allrights: + - Copyright (c) 2002 The Regents of the University of Michigan. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/nvhdcp.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/nvhdcp.h.yml index 36d1060afe8..9c70b7721a5 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/nvhdcp.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/nvhdcp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: NVIDIA Corporation count: 1 +allrights: + - Copyright (c) 2010-2011, NVIDIA Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/ppp_defs.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/ppp_defs.h.yml index ca9904e1a61..7aaf36c120b 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/ppp_defs.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/ppp_defs.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Australian National University count: 1 +allrights: + - Copyright (c) 1994 The Australian National University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/qic117.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/qic117.h.yml index 0fd0c895214..9ee3b5022a5 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/qic117.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/qic117.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Claus-Justus Heine count: 1 +allrights: + - Copyright (c) 1993-1996 Bas Laarhoven + - (c) 1997 Claus-Justus Heine. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/quota.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/quota.h.yml index 0c0c3817834..9c2fa7d47d0 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/quota.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/quota.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986 Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/rpmsg_omx.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/rpmsg_omx.h.yml index cf831c805c0..5a654aedf77 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/rpmsg_omx.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/rpmsg_omx.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Texas Instruments count: 1 +allrights: + - Copyright (c) 2011 Texas Instruments. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/serial_reg.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/serial_reg.h.yml index 06179737192..1705a45e036 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/serial_reg.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/serial_reg.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Theodore Ts'o count: 1 +allrights: + - Copyright (c) 1992, 1994 by Theodore Ts'o. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/wireless.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/wireless.h.yml index 1ad9094855a..ab37fd36741 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/wireless.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/wireless.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean Tourrilhes count: 1 +allrights: + - Copyright (c) 1997-2006 Jean Tourrilhes, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/xattr.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/xattr.h.yml index 3b176664d3c..c7bdcf1d0ae 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/xattr.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/xattr.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Silicon Graphics, Inc. count: 1 +allrights: + - Copyright (c) 2001 by Andreas Gruenbacher + - Copyright (c) 2001-2002 Silicon Graphics, Inc. All Rights Reserved. + - Copyright (c) 2004 Red Hat, Inc., James Morris \ No newline at end of file diff --git a/tests/cluecode/data/ics/kernel-headers-original-linux/zconf.h.yml b/tests/cluecode/data/ics/kernel-headers-original-linux/zconf.h.yml index d490f15e2ed..592b24b4e05 100644 --- a/tests/cluecode/data/ics/kernel-headers-original-linux/zconf.h.yml +++ b/tests/cluecode/data/ics/kernel-headers-original-linux/zconf.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-1998 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libffi-src-m32r/ffitarget.h.yml b/tests/cluecode/data/ics/libffi-src-m32r/ffitarget.h.yml index e744deb7fec..c6f7325ce75 100644 --- a/tests/cluecode/data/ics/libffi-src-m32r/ffitarget.h.yml +++ b/tests/cluecode/data/ics/libffi-src-m32r/ffitarget.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Renesas Technology count: 1 +allrights: + - Copyright (c) 2004 Renesas Technology. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libffi/LICENSE.yml b/tests/cluecode/data/ics/libffi/LICENSE.yml index 634302c1f49..badc22f808c 100644 --- a/tests/cluecode/data/ics/libffi/LICENSE.yml +++ b/tests/cluecode/data/ics/libffi/LICENSE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Red Hat, Inc and others count: 1 +allrights: + - Copyright (c) 1996-2008 Red Hat, Inc and others. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libgsm-inc/config.h.yml b/tests/cluecode/data/ics/libgsm-inc/config.h.yml index f7d52a663e2..58030940669 100644 --- a/tests/cluecode/data/ics/libgsm-inc/config.h.yml +++ b/tests/cluecode/data/ics/libgsm-inc/config.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jutta Degener and Carsten Bormann, Technische Universitaet Berlin count: 1 +allrights: + - Copyright 1992 by Jutta Degener and Carsten Bormann, Technische Universitaet Berlin. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libgsm-man/gsm.3.yml b/tests/cluecode/data/ics/libgsm-man/gsm.3.yml index f7d52a663e2..58030940669 100644 --- a/tests/cluecode/data/ics/libgsm-man/gsm.3.yml +++ b/tests/cluecode/data/ics/libgsm-man/gsm.3.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jutta Degener and Carsten Bormann, Technische Universitaet Berlin count: 1 +allrights: + - Copyright 1992 by Jutta Degener and Carsten Bormann, Technische Universitaet Berlin. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libgsm-man/gsm_option.3.yml b/tests/cluecode/data/ics/libgsm-man/gsm_option.3.yml index 8bdd2170b06..9c93ccbf1df 100644 --- a/tests/cluecode/data/ics/libgsm-man/gsm_option.3.yml +++ b/tests/cluecode/data/ics/libgsm-man/gsm_option.3.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jutta Degener and Carsten Bormann, Technische Universitaet Berlin count: 1 +allrights: + - Copyright 1992-1995 by Jutta Degener and Carsten Bormann, Technische Universitaet Berlin. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libgsm/ChangeLog.yml b/tests/cluecode/data/ics/libgsm/ChangeLog.yml index f7d52a663e2..58030940669 100644 --- a/tests/cluecode/data/ics/libgsm/ChangeLog.yml +++ b/tests/cluecode/data/ics/libgsm/ChangeLog.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jutta Degener and Carsten Bormann, Technische Universitaet Berlin count: 1 +allrights: + - Copyright 1992 by Jutta Degener and Carsten Bormann, Technische Universitaet Berlin. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libgsm/README.yml b/tests/cluecode/data/ics/libgsm/README.yml index f7d52a663e2..58030940669 100644 --- a/tests/cluecode/data/ics/libgsm/README.yml +++ b/tests/cluecode/data/ics/libgsm/README.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jutta Degener and Carsten Bormann, Technische Universitaet Berlin count: 1 +allrights: + - Copyright 1992 by Jutta Degener and Carsten Bormann, Technische Universitaet Berlin. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap-doc/pcap.html.yml b/tests/cluecode/data/ics/libpcap-doc/pcap.html.yml index ba36c4ea930..9f69db92855 100644 --- a/tests/cluecode/data/ics/libpcap-doc/pcap.html.yml +++ b/tests/cluecode/data/ics/libpcap-doc/pcap.html.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: The Internet Society count: 2 +allrights: + - Copyright (c) The Internet Society (2004). All Rights Reserved. + - Copyright (c) The Internet Society (2004). All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap-doc/pcap.txt.yml b/tests/cluecode/data/ics/libpcap-doc/pcap.txt.yml index ba36c4ea930..9f69db92855 100644 --- a/tests/cluecode/data/ics/libpcap-doc/pcap.txt.yml +++ b/tests/cluecode/data/ics/libpcap-doc/pcap.txt.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: The Internet Society count: 2 +allrights: + - Copyright (c) The Internet Society (2004). All Rights Reserved. + - Copyright (c) The Internet Society (2004). All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap-lbl/os-sunos4.h.yml b/tests/cluecode/data/ics/libpcap-lbl/os-sunos4.h.yml index b5238fd21d4..9d19f6e28d1 100644 --- a/tests/cluecode/data/ics/libpcap-lbl/os-sunos4.h.yml +++ b/tests/cluecode/data/ics/libpcap-lbl/os-sunos4.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989, 1990, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap-lbl/os-ultrix4.h.yml b/tests/cluecode/data/ics/libpcap-lbl/os-ultrix4.h.yml index 5469b7753fd..ed6788e42be 100644 --- a/tests/cluecode/data/ics/libpcap-lbl/os-ultrix4.h.yml +++ b/tests/cluecode/data/ics/libpcap-lbl/os-ultrix4.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap-missing/snprintf.c.yml b/tests/cluecode/data/ics/libpcap-missing/snprintf.c.yml index ea1114b7d20..4e9cd1874cc 100644 --- a/tests/cluecode/data/ics/libpcap-missing/snprintf.c.yml +++ b/tests/cluecode/data/ics/libpcap-missing/snprintf.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden) count: 1 +allrights: + - Copyright (c) 1995-1999 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden). All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/Makefile.in.yml b/tests/cluecode/data/ics/libpcap/Makefile.in.yml index 43ddee89b5d..46e7362ae51 100644 --- a/tests/cluecode/data/ics/libpcap/Makefile.in.yml +++ b/tests/cluecode/data/ics/libpcap/Makefile.in.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/aclocal.m4.yml b/tests/cluecode/data/ics/libpcap/aclocal.m4.yml index 4d0136af02b..ce164183fc6 100644 --- a/tests/cluecode/data/ics/libpcap/aclocal.m4.yml +++ b/tests/cluecode/data/ics/libpcap/aclocal.m4.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/atmuni31.h.yml b/tests/cluecode/data/ics/libpcap/atmuni31.h.yml index 5d12870a6a4..b7d048c001e 100644 --- a/tests/cluecode/data/ics/libpcap/atmuni31.h.yml +++ b/tests/cluecode/data/ics/libpcap/atmuni31.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Yen Yen Lim and North Dakota State University count: 1 +allrights: + - Copyright (c) 1997 Yen Yen Lim and North Dakota State University All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/bpf_dump.c.yml b/tests/cluecode/data/ics/libpcap/bpf_dump.c.yml index b8c9317eaea..ecbbfe8ecb7 100644 --- a/tests/cluecode/data/ics/libpcap/bpf_dump.c.yml +++ b/tests/cluecode/data/ics/libpcap/bpf_dump.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1992, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/bpf_image.c.yml b/tests/cluecode/data/ics/libpcap/bpf_image.c.yml index 9c0dca47b6f..36c898ae94e 100644 --- a/tests/cluecode/data/ics/libpcap/bpf_image.c.yml +++ b/tests/cluecode/data/ics/libpcap/bpf_image.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1992, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/configure.in.yml b/tests/cluecode/data/ics/libpcap/configure.in.yml index 10f8f0b4d1e..dde435036ec 100644 --- a/tests/cluecode/data/ics/libpcap/configure.in.yml +++ b/tests/cluecode/data/ics/libpcap/configure.in.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/etherent.c.yml b/tests/cluecode/data/ics/libpcap/etherent.c.yml index 5469b7753fd..ed6788e42be 100644 --- a/tests/cluecode/data/ics/libpcap/etherent.c.yml +++ b/tests/cluecode/data/ics/libpcap/etherent.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/ethertype.h.yml b/tests/cluecode/data/ics/libpcap/ethertype.h.yml index 06dec4c15f5..a40f9fc6924 100644 --- a/tests/cluecode/data/ics/libpcap/ethertype.h.yml +++ b/tests/cluecode/data/ics/libpcap/ethertype.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/fad-getad.c.yml b/tests/cluecode/data/ics/libpcap/fad-getad.c.yml index 95fd04bb8d6..51f1c5ca438 100644 --- a/tests/cluecode/data/ics/libpcap/fad-getad.c.yml +++ b/tests/cluecode/data/ics/libpcap/fad-getad.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1995, 1996, 1997, 1998 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/fad-win32.c.yml b/tests/cluecode/data/ics/libpcap/fad-win32.c.yml index c431e305c4b..570ecd455c5 100644 --- a/tests/cluecode/data/ics/libpcap/fad-win32.c.yml +++ b/tests/cluecode/data/ics/libpcap/fad-win32.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: NetGroup, Politecnico di Torino (Italy) count: 1 +allrights: + - Copyright (c) 2002 - 2005 NetGroup, Politecnico di Torino (Italy) + - Copyright (c) 2005 - 2006 CACE Technologies, Davis (California) All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/gencode.c.yml b/tests/cluecode/data/ics/libpcap/gencode.c.yml index 59446f9d185..74b9b32555c 100644 --- a/tests/cluecode/data/ics/libpcap/gencode.c.yml +++ b/tests/cluecode/data/ics/libpcap/gencode.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/gencode.h.yml b/tests/cluecode/data/ics/libpcap/gencode.h.yml index 14e90cb2e5b..812905afc68 100644 --- a/tests/cluecode/data/ics/libpcap/gencode.h.yml +++ b/tests/cluecode/data/ics/libpcap/gencode.h.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: Yen Yen Lim and North Dakota State University count: 1 +allrights: + - Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. + - Copyright (c) 1997 Yen Yen Lim and North Dakota State University All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/grammar.c.yml b/tests/cluecode/data/ics/libpcap/grammar.c.yml index 54c81605256..f58eb1b4b18 100644 --- a/tests/cluecode/data/ics/libpcap/grammar.c.yml +++ b/tests/cluecode/data/ics/libpcap/grammar.c.yml @@ -15,3 +15,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/llc.h.yml b/tests/cluecode/data/ics/libpcap/llc.h.yml index c182afcc694..adf19d9dfc4 100644 --- a/tests/cluecode/data/ics/libpcap/llc.h.yml +++ b/tests/cluecode/data/ics/libpcap/llc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/mkdep.yml b/tests/cluecode/data/ics/libpcap/mkdep.yml index 1ecdcefb393..4230495c3ac 100644 --- a/tests/cluecode/data/ics/libpcap/mkdep.yml +++ b/tests/cluecode/data/ics/libpcap/mkdep.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/nlpid.h.yml b/tests/cluecode/data/ics/libpcap/nlpid.h.yml index eb226bc443b..569292248fe 100644 --- a/tests/cluecode/data/ics/libpcap/nlpid.h.yml +++ b/tests/cluecode/data/ics/libpcap/nlpid.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Juniper Networks, Inc. count: 1 +allrights: + - Copyright (c) 1996 Juniper Networks, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/optimize.c.yml b/tests/cluecode/data/ics/libpcap/optimize.c.yml index 862e2c8e629..cc31a3b77fb 100644 --- a/tests/cluecode/data/ics/libpcap/optimize.c.yml +++ b/tests/cluecode/data/ics/libpcap/optimize.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-bpf.c.yml b/tests/cluecode/data/ics/libpcap/pcap-bpf.c.yml index d661a32ff17..cd7ff3307a5 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-bpf.c.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-bpf.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996, 1998 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-bpf.h.yml b/tests/cluecode/data/ics/libpcap/pcap-bpf.h.yml index 95aae285c32..6250bab538b 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-bpf.h.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-bpf.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-dlpi.c.yml b/tests/cluecode/data/ics/libpcap/pcap-dlpi.c.yml index 860b755f34d..f0752f6ef8c 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-dlpi.c.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-dlpi.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-int.h.yml b/tests/cluecode/data/ics/libpcap/pcap-int.h.yml index 89910deff31..ff3b8ceb303 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-int.h.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-int.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-namedb.h.yml b/tests/cluecode/data/ics/libpcap/pcap-namedb.h.yml index 1ecdcefb393..4230495c3ac 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-namedb.h.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-namedb.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-nit.c.yml b/tests/cluecode/data/ics/libpcap/pcap-nit.c.yml index edf038be729..ae649669ff6 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-nit.c.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-nit.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-nit.h.yml b/tests/cluecode/data/ics/libpcap/pcap-nit.h.yml index f13ae889635..22f1f5632a6 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-nit.h.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-nit.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1994 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-null.c.yml b/tests/cluecode/data/ics/libpcap/pcap-null.c.yml index 89910deff31..ff3b8ceb303 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-null.c.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-null.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-stdinc.h.yml b/tests/cluecode/data/ics/libpcap/pcap-stdinc.h.yml index aaafadd0518..40ebf265282 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-stdinc.h.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-stdinc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: NetGroup, Politecnico di Torino (Italy) count: 1 +allrights: + - Copyright (c) 2002 - 2003 NetGroup, Politecnico di Torino (Italy) All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap-win32.c.yml b/tests/cluecode/data/ics/libpcap/pcap-win32.c.yml index af68e6be622..072a6574dfd 100644 --- a/tests/cluecode/data/ics/libpcap/pcap-win32.c.yml +++ b/tests/cluecode/data/ics/libpcap/pcap-win32.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: NetGroup, Politecnico di Torino (Italy) count: 1 +allrights: + - Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy) + - Copyright (c) 2005 - 2007 CACE Technologies, Davis (California) All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap.3.yml b/tests/cluecode/data/ics/libpcap/pcap.3.yml index a08933db3b6..276ee756d66 100644 --- a/tests/cluecode/data/ics/libpcap/pcap.3.yml +++ b/tests/cluecode/data/ics/libpcap/pcap.3.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap.c.yml b/tests/cluecode/data/ics/libpcap/pcap.c.yml index c614801e0c3..568a28853e6 100644 --- a/tests/cluecode/data/ics/libpcap/pcap.c.yml +++ b/tests/cluecode/data/ics/libpcap/pcap.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/pcap.h.yml b/tests/cluecode/data/ics/libpcap/pcap.h.yml index 860b755f34d..f0752f6ef8c 100644 --- a/tests/cluecode/data/ics/libpcap/pcap.h.yml +++ b/tests/cluecode/data/ics/libpcap/pcap.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/ppp.h.yml b/tests/cluecode/data/ics/libpcap/ppp.h.yml index 4cb6ce0c3bc..4166bf1c256 100644 --- a/tests/cluecode/data/ics/libpcap/ppp.h.yml +++ b/tests/cluecode/data/ics/libpcap/ppp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Carnegie Mellon count: 1 +allrights: + - Copyright 1989 by Carnegie Mellon. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libpcap/scanner.c.yml b/tests/cluecode/data/ics/libpcap/scanner.c.yml index 9078088ca83..2b9a6907fc4 100644 --- a/tests/cluecode/data/ics/libpcap/scanner.c.yml +++ b/tests/cluecode/data/ics/libpcap/scanner.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-build-x86-msvs/obj_int_extract.bat.yml b/tests/cluecode/data/ics/libvpx-build-x86-msvs/obj_int_extract.bat.yml index d586c4b7620..5d9383b6a5e 100644 --- a/tests/cluecode/data/ics/libvpx-build-x86-msvs/obj_int_extract.bat.yml +++ b/tests/cluecode/data/ics/libvpx-build-x86-msvs/obj_int_extract.bat.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The WebM project authors count: 1 +allrights: + - Copyright (c) 2011 The WebM project authors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-examples-includes-HTML-Toc-0.91/Toc.pod.yml b/tests/cluecode/data/ics/libvpx-examples-includes-HTML-Toc-0.91/Toc.pod.yml index 43564b7f2c3..f1617304236 100644 --- a/tests/cluecode/data/ics/libvpx-examples-includes-HTML-Toc-0.91/Toc.pod.yml +++ b/tests/cluecode/data/ics/libvpx-examples-includes-HTML-Toc-0.91/Toc.pod.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Freddy Vulto count: 1 +allrights: + - Copyright (c) 2001 Freddy Vulto. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/License.text.yml b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/License.text.yml index 18c63e0833d..64353ec86f9 100644 --- a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/License.text.yml +++ b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/License.text.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Michel Fortin count: 1 +allrights: + - Copyright (c) 2004-2008 Michel Fortin http://www.michelf.com/ All rights reserved. + - Copyright (c) 2003-2006 John Gruber http://daringfireball.net/ All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/PHP_Markdown_Extra_Readme.text.yml b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/PHP_Markdown_Extra_Readme.text.yml index 9c9e912efac..63091b1b091 100644 --- a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/PHP_Markdown_Extra_Readme.text.yml +++ b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/PHP_Markdown_Extra_Readme.text.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Michel Fortin count: 1 +allrights: + - Copyright (c) 2004-2005 Michel Fortin http://www.michelf.com/ All rights reserved. + - Copyright (c) 2003-2005 John Gruber http://daringfireball.net/ All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/markdown.php.yml b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/markdown.php.yml index ab753630f65..5f9165e1bc2 100644 --- a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/markdown.php.yml +++ b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-Markdown-Extra-1.2.3/markdown.php.yml @@ -18,3 +18,8 @@ holders_summary: - value: Michel Fortin count: 2 notes: we do not want a trailing http +allrights: + - Copyright (c) 2004-2008 Michel Fortin http://www.michelf.com/projects/php-markdown + - Copyright (c) 2004-2006 John Gruber http://daringfireball.net/projects/markdown + - Copyright (c) 2004-2008 Michel Fortin http://www.michelf.com All rights reserved. + - Copyright (c) 2003-2006 John Gruber http://daringfireball.net All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/PHP_SmartyPants_Readme.txt.yml b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/PHP_SmartyPants_Readme.txt.yml index be8109fc9c9..a3d231575a9 100644 --- a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/PHP_SmartyPants_Readme.txt.yml +++ b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/PHP_SmartyPants_Readme.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Michel Fortin count: 1 +allrights: + - Copyright (c) 2005 Michel Fortin http://www.michelf.com/ All rights reserved. + - Copyright (c) 2003-2004 John Gruber http://daringfireball.net/ All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/smartypants.php.yml b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/smartypants.php.yml index e05548a6269..901ab744a08 100644 --- a/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/smartypants.php.yml +++ b/tests/cluecode/data/ics/libvpx-examples-includes-PHP-SmartyPants-1.5.1e/smartypants.php.yml @@ -17,3 +17,8 @@ holders_summary: count: 2 - value: Michel Fortin count: 2 +allrights: + - Copyright (c) 2003-2004 John Gruber + - Copyright (c) 2004-2005 Michel Fortin + - Copyright (c) 2003 John Gruber http://daringfireball.net All rights reserved. + - Copyright (c) 2004-2005 Michel Fortin http://www.michelf.com \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-libmkv/EbmlIDs.h.yml b/tests/cluecode/data/ics/libvpx-libmkv/EbmlIDs.h.yml index f3151de3480..9e90a0b073b 100644 --- a/tests/cluecode/data/ics/libvpx-libmkv/EbmlIDs.h.yml +++ b/tests/cluecode/data/ics/libvpx-libmkv/EbmlIDs.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The WebM project authors count: 1 +allrights: + - Copyright (c) 2010 The WebM project authors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-nestegg-halloc-src/halloc.c.yml b/tests/cluecode/data/ics/libvpx-nestegg-halloc-src/halloc.c.yml index 7f2d6181464..d8292d1e72e 100644 --- a/tests/cluecode/data/ics/libvpx-nestegg-halloc-src/halloc.c.yml +++ b/tests/cluecode/data/ics/libvpx-nestegg-halloc-src/halloc.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Alex Pankratov count: 1 +allrights: + - Copyright (c) 2004i-2010 Alex Pankratov. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-nestegg-halloc/README.yml b/tests/cluecode/data/ics/libvpx-nestegg-halloc/README.yml index ddcdec8ae01..e69de758f54 100644 --- a/tests/cluecode/data/ics/libvpx-nestegg-halloc/README.yml +++ b/tests/cluecode/data/ics/libvpx-nestegg-halloc/README.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Alex Pankratov count: 1 +allrights: + - Copyright (c) 2004-2010, Alex Pankratov (ap@swapped.cc). All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-nestegg-halloc/halloc.h.yml b/tests/cluecode/data/ics/libvpx-nestegg-halloc/halloc.h.yml index d9c9f1efea5..8da9489c5b9 100644 --- a/tests/cluecode/data/ics/libvpx-nestegg-halloc/halloc.h.yml +++ b/tests/cluecode/data/ics/libvpx-nestegg-halloc/halloc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Alex Pankratov count: 1 +allrights: + - Copyright (c) 2004-2010 Alex Pankratov. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx-vp8-common/asm_com_offsets.c.yml b/tests/cluecode/data/ics/libvpx-vp8-common/asm_com_offsets.c.yml index d586c4b7620..5d9383b6a5e 100644 --- a/tests/cluecode/data/ics/libvpx-vp8-common/asm_com_offsets.c.yml +++ b/tests/cluecode/data/ics/libvpx-vp8-common/asm_com_offsets.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The WebM project authors count: 1 +allrights: + - Copyright (c) 2011 The WebM project authors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx/LICENSE.yml b/tests/cluecode/data/ics/libvpx/LICENSE.yml index a010550ea02..6d1724e9aa3 100644 --- a/tests/cluecode/data/ics/libvpx/LICENSE.yml +++ b/tests/cluecode/data/ics/libvpx/LICENSE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright (c) 2010, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx/args.c.yml b/tests/cluecode/data/ics/libvpx/args.c.yml index f3151de3480..9e90a0b073b 100644 --- a/tests/cluecode/data/ics/libvpx/args.c.yml +++ b/tests/cluecode/data/ics/libvpx/args.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The WebM project authors count: 1 +allrights: + - Copyright (c) 2010 The WebM project authors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx/docs.mk.yml b/tests/cluecode/data/ics/libvpx/docs.mk.yml index f3151de3480..9e90a0b073b 100644 --- a/tests/cluecode/data/ics/libvpx/docs.mk.yml +++ b/tests/cluecode/data/ics/libvpx/docs.mk.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The WebM project authors count: 1 +allrights: + - Copyright (c) 2010 The WebM project authors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libvpx/y4minput.c.yml b/tests/cluecode/data/ics/libvpx/y4minput.c.yml index 89b43be9410..9cbcb862d71 100644 --- a/tests/cluecode/data/ics/libvpx/y4minput.c.yml +++ b/tests/cluecode/data/ics/libvpx/y4minput.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Xiph.Org Foundation and contributors count: 1 +allrights: + - Copyright (c) 2010 The WebM project authors. All Rights Reserved. + - Copyright (c) 2002-2010 The Xiph.Org Foundation and contributors. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxml2/NOTICE.yml b/tests/cluecode/data/ics/libxml2/NOTICE.yml index bae7247d578..41e95fb72ec 100644 --- a/tests/cluecode/data/ics/libxml2/NOTICE.yml +++ b/tests/cluecode/data/ics/libxml2/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Daniel Veillard count: 1 +allrights: + - Copyright (c) 1998-2003 Daniel Veillard. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxml2/dict.c.yml b/tests/cluecode/data/ics/libxml2/dict.c.yml index 48500e6383a..ac59622268f 100644 --- a/tests/cluecode/data/ics/libxml2/dict.c.yml +++ b/tests/cluecode/data/ics/libxml2/dict.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Daniel Veillard count: 1 +allrights: + - Copyright (c) 2003 Daniel Veillard. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxml2/hash.c.yml b/tests/cluecode/data/ics/libxml2/hash.c.yml index a5292ee4aa8..66420b43968 100644 --- a/tests/cluecode/data/ics/libxml2/hash.c.yml +++ b/tests/cluecode/data/ics/libxml2/hash.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Bjorn Reese and Daniel Veillard count: 1 +allrights: + - Copyright (c) 2000 Bjorn Reese and Daniel Veillard. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxml2/list.c.yml b/tests/cluecode/data/ics/libxml2/list.c.yml index 5243143914c..daac6221427 100644 --- a/tests/cluecode/data/ics/libxml2/list.c.yml +++ b/tests/cluecode/data/ics/libxml2/list.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Gary Pennington and Daniel Veillard count: 1 +allrights: + - Copyright (c) 2000 Gary Pennington and Daniel Veillard. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxml2/trio.c.yml b/tests/cluecode/data/ics/libxml2/trio.c.yml index ba71ed11607..5d856fad523 100644 --- a/tests/cluecode/data/ics/libxml2/trio.c.yml +++ b/tests/cluecode/data/ics/libxml2/trio.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Bjorn Reese and Daniel Stenberg count: 1 +allrights: + - Copyright (c) 1998 Bjorn Reese and Daniel Stenberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxml2/triop.h.yml b/tests/cluecode/data/ics/libxml2/triop.h.yml index 53076b01d36..b6dc152f2f3 100644 --- a/tests/cluecode/data/ics/libxml2/triop.h.yml +++ b/tests/cluecode/data/ics/libxml2/triop.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Bjorn Reese and Daniel Stenberg count: 1 +allrights: + - Copyright (c) 2000 Bjorn Reese and Daniel Stenberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxml2/triostr.c.yml b/tests/cluecode/data/ics/libxml2/triostr.c.yml index 5fd2f511939..1a350a116a4 100644 --- a/tests/cluecode/data/ics/libxml2/triostr.c.yml +++ b/tests/cluecode/data/ics/libxml2/triostr.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Bjorn Reese and Daniel Stenberg count: 1 +allrights: + - Copyright (c) 2001 Bjorn Reese and Daniel Stenberg. \ No newline at end of file diff --git a/tests/cluecode/data/ics/libxslt/Copyright.yml b/tests/cluecode/data/ics/libxslt/Copyright.yml index 9a4f5f19c6f..f99afc915ea 100644 --- a/tests/cluecode/data/ics/libxslt/Copyright.yml +++ b/tests/cluecode/data/ics/libxslt/Copyright.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Thomas Broyer, Charlie Bozeman and Daniel Veillard count: 1 +allrights: + - Copyright (c) 2001-2002 Daniel Veillard. All Rights Reserved. + - Copyright (c) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/markdown-markdown-extensions/codehilite.py.yml b/tests/cluecode/data/ics/markdown-markdown-extensions/codehilite.py.yml index 30d1c717a1f..2843d75b106 100644 --- a/tests/cluecode/data/ics/markdown-markdown-extensions/codehilite.py.yml +++ b/tests/cluecode/data/ics/markdown-markdown-extensions/codehilite.py.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Waylan Limberg count: 1 +allrights: + - Copyright 2006-2008 Waylan Limberg (http://achinghead.com/). \ No newline at end of file diff --git a/tests/cluecode/data/ics/markdown-markdown/html4.py.yml b/tests/cluecode/data/ics/markdown-markdown/html4.py.yml index 38a3da7e195..f44014f4750 100644 --- a/tests/cluecode/data/ics/markdown-markdown/html4.py.yml +++ b/tests/cluecode/data/ics/markdown-markdown/html4.py.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Fredrik Lundh count: 2 +allrights: + - Copyright (c) 1999-2007 by Fredrik Lundh. All rights reserved. + - Copyright (c) 1999-2007 by Fredrik Lundh \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-docs/license.html.yml b/tests/cluecode/data/ics/mesa3d-docs/license.html.yml index 9ec29284d62..d0483f147b0 100644 --- a/tests/cluecode/data/ics/mesa3d-docs/license.html.yml +++ b/tests/cluecode/data/ics/mesa3d-docs/license.html.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: SGI count: 1 +allrights: + - copyrighted by Mark Kilgard + - copyrighted by SGI + - Copyright (c) 1999-2007 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-docs/subset-A.html.yml b/tests/cluecode/data/ics/mesa3d-docs/subset-A.html.yml index b3826e8dd85..e644e88c035 100644 --- a/tests/cluecode/data/ics/mesa3d-docs/subset-A.html.yml +++ b/tests/cluecode/data/ics/mesa3d-docs/subset-A.html.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Tungsten Graphics, Inc., Cedar Park, Texas count: 1 +allrights: + - Copyright (c) 2002-2003 by Tungsten Graphics, Inc., Cedar Park, Texas. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-include-c99/stdbool.h.yml b/tests/cluecode/data/ics/mesa3d-include-c99/stdbool.h.yml index 3d0ad06bcf6..f0f29d464fc 100644 --- a/tests/cluecode/data/ics/mesa3d-include-c99/stdbool.h.yml +++ b/tests/cluecode/data/ics/mesa3d-include-c99/stdbool.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: VMware, Inc. count: 1 +allrights: + - Copyright 2007-2010 VMware, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-glsl-glcpp/Makefile.am.yml b/tests/cluecode/data/ics/mesa3d-src-glsl-glcpp/Makefile.am.yml index fee6c5d700d..6818a8527bc 100644 --- a/tests/cluecode/data/ics/mesa3d-src-glsl-glcpp/Makefile.am.yml +++ b/tests/cluecode/data/ics/mesa3d-src-glsl-glcpp/Makefile.am.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2010 Intel Corporation All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-glsl/ir_to_llvm.cpp.yml b/tests/cluecode/data/ics/mesa3d-src-glsl/ir_to_llvm.cpp.yml index de8c8d1fd6f..8533c772576 100644 --- a/tests/cluecode/data/ics/mesa3d-src-glsl/ir_to_llvm.cpp.yml +++ b/tests/cluecode/data/ics/mesa3d-src-glsl/ir_to_llvm.cpp.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: VMware, Inc. count: 1 +allrights: + - Copyright (c) 2005-2007 Brian Paul All Rights Reserved. + - Copyright (c) 2008 VMware, Inc. All Rights Reserved. + - Copyright (c) 2010 Intel Corporation + - Copyright (c) 2010 Luca Barbieri \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-glsl/program.h.yml b/tests/cluecode/data/ics/mesa3d-src-glsl/program.h.yml index f01722a91f1..9883994f8fa 100644 --- a/tests/cluecode/data/ics/mesa3d-src-glsl/program.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-glsl/program.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: VMware, Inc. count: 1 +allrights: + - Copyright (c) 1999-2008 Brian Paul All Rights Reserved. + - Copyright (c) 2009 VMware, Inc. All Rights Reserved. + - Copyright (c) 2010 Intel Corporation \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-glsl/strtod.c.yml b/tests/cluecode/data/ics/mesa3d-src-glsl/strtod.c.yml index c0f07452d81..efa7ca7a5fb 100644 --- a/tests/cluecode/data/ics/mesa3d-src-glsl/strtod.c.yml +++ b/tests/cluecode/data/ics/mesa3d-src-glsl/strtod.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: VMware, Inc. count: 1 +allrights: + - Copyright 2010 VMware, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/compiler.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/compiler.h.yml index dd11bb04f77..cdad195653a 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/compiler.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/compiler.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: VMware, Inc. count: 1 +allrights: + - Copyright (c) 1999-2008 Brian Paul All Rights Reserved. + - Copyright (c) 2009 VMware, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/config.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/config.h.yml index b4820236e17..f76cf56b0d9 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/config.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/config.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: VMware, Inc. count: 1 +allrights: + - Copyright (c) 1999-2007 Brian Paul All Rights Reserved. + - Copyright (c) 2008 VMware, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/debug.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/debug.h.yml index a1bd99dcda7..fee87c4d855 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/debug.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/debug.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 1999-2004 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/get.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/get.h.yml index 1e2d50f29f8..7719fa1d932 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/get.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/get.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 1999-2001 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/glheader.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/glheader.h.yml index 5b5545baa2f..550456c480e 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/glheader.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/glheader.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 1999-2008 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/hash.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/hash.h.yml index 66775aaea14..33d38eb0e49 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/hash.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/hash.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 1999-2006 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/shaderobj.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/shaderobj.h.yml index 8520155d60b..118def1250c 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/shaderobj.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/shaderobj.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 2004-2007 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-main/simple_list.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-main/simple_list.h.yml index ac98742c803..2460c44efde 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-main/simple_list.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-main/simple_list.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Keith Whitwell count: 1 +allrights: + - (c) 1997, Keith Whitwell + - Copyright (c) 1999-2001 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-src-mesa-program/prog_statevars.h.yml b/tests/cluecode/data/ics/mesa3d-src-mesa-program/prog_statevars.h.yml index 0f511e79cff..94e05dc5ee0 100644 --- a/tests/cluecode/data/ics/mesa3d-src-mesa-program/prog_statevars.h.yml +++ b/tests/cluecode/data/ics/mesa3d-src-mesa-program/prog_statevars.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 1999-2007 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-test/m_matrix.c.yml b/tests/cluecode/data/ics/mesa3d-test/m_matrix.c.yml index 142c34ec3c6..a53d27757c0 100644 --- a/tests/cluecode/data/ics/mesa3d-test/m_matrix.c.yml +++ b/tests/cluecode/data/ics/mesa3d-test/m_matrix.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 1999-2005 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d-test/m_matrix.h.yml b/tests/cluecode/data/ics/mesa3d-test/m_matrix.h.yml index 142c34ec3c6..a53d27757c0 100644 --- a/tests/cluecode/data/ics/mesa3d-test/m_matrix.h.yml +++ b/tests/cluecode/data/ics/mesa3d-test/m_matrix.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Brian Paul count: 1 +allrights: + - Copyright (c) 1999-2005 Brian Paul All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/mesa3d/NOTICE.yml b/tests/cluecode/data/ics/mesa3d/NOTICE.yml index 7be1eb01e6f..3484ef1865c 100644 --- a/tests/cluecode/data/ics/mesa3d/NOTICE.yml +++ b/tests/cluecode/data/ics/mesa3d/NOTICE.yml @@ -29,3 +29,10 @@ holders_summary: count: 1 - value: VMware, Inc. count: 1 +allrights: + - Copyright (c) 1999-2008 Brian Paul All Rights Reserved. + - Copyright (c) 2008-1010 Intel Corporation + - Copyright (c) 2007-2010 VMware, Inc. All Rights Reserved. + - Copyright (c) 2010 Luca Barbieri + - Copyright (c) 2006 Alexander Chemeris + - Copyright 2007,2010,2011 The Android Open Source Project \ No newline at end of file diff --git a/tests/cluecode/data/ics/netperf/MODULE_LICENSE_HP.yml b/tests/cluecode/data/ics/netperf/MODULE_LICENSE_HP.yml index b2de87d5481..8b0fa43934b 100644 --- a/tests/cluecode/data/ics/netperf/MODULE_LICENSE_HP.yml +++ b/tests/cluecode/data/ics/netperf/MODULE_LICENSE_HP.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Hewlett-Packard count: 2 +allrights: + - Copyright (c) 1993 Hewlett-Packard Company ALL RIGHTS RESERVED. + - copyrighted works of Hewlett-Packard Co. \ No newline at end of file diff --git a/tests/cluecode/data/ics/netperf/netcpu_looper.c.yml b/tests/cluecode/data/ics/netperf/netcpu_looper.c.yml index ee7dac05923..6d3af9bf3ac 100644 --- a/tests/cluecode/data/ics/netperf/netcpu_looper.c.yml +++ b/tests/cluecode/data/ics/netperf/netcpu_looper.c.yml @@ -4,3 +4,5 @@ what: - holders_summary copyrights: - (c) Copyright 2005-2007 +allrights: + - (c) Copyright 2005-2007. \ No newline at end of file diff --git a/tests/cluecode/data/ics/netperf/netlib.c.yml b/tests/cluecode/data/ics/netperf/netlib.c.yml index f4bf5557e39..c740f4404bb 100644 --- a/tests/cluecode/data/ics/netperf/netlib.c.yml +++ b/tests/cluecode/data/ics/netperf/netlib.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Hewlett-Packard count: 1 +allrights: + - (c) Copyright 1993-2007 Hewlett-Packard Company. \ No newline at end of file diff --git a/tests/cluecode/data/ics/netperf/netperf.c.yml b/tests/cluecode/data/ics/netperf/netperf.c.yml index 0551c233e60..ba592cea2e8 100644 --- a/tests/cluecode/data/ics/netperf/netperf.c.yml +++ b/tests/cluecode/data/ics/netperf/netperf.c.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 Company. \ No newline at end of file diff --git a/tests/cluecode/data/ics/netperf/netserver.c.yml b/tests/cluecode/data/ics/netperf/netserver.c.yml index bdffcce194e..7cca5de1bf3 100644 --- a/tests/cluecode/data/ics/netperf/netserver.c.yml +++ b/tests/cluecode/data/ics/netperf/netserver.c.yml @@ -14,3 +14,7 @@ holders_summary: - value: Hewlett-Packard count: 3 notes: may fail on Co. vs Company. +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/ics/opencv-cv-include/cv.h.yml b/tests/cluecode/data/ics/opencv-cv-include/cv.h.yml index 308532fd257..6424ba4453f 100644 --- a/tests/cluecode/data/ics/opencv-cv-include/cv.h.yml +++ b/tests/cluecode/data/ics/opencv-cv-include/cv.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cv-src/_cvkdtree.hpp.yml b/tests/cluecode/data/ics/opencv-cv-src/_cvkdtree.hpp.yml index 7522f70c8c5..6aaf321555d 100644 --- a/tests/cluecode/data/ics/opencv-cv-src/_cvkdtree.hpp.yml +++ b/tests/cluecode/data/ics/opencv-cv-src/_cvkdtree.hpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Xavier Delacour count: 1 +allrights: + - Copyright (c) 2008, Xavier Delacour, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cv-src/cvcolor.cpp.yml b/tests/cluecode/data/ics/opencv-cv-src/cvcolor.cpp.yml index 4810e16bbe3..1d435a4d246 100644 --- a/tests/cluecode/data/ics/opencv-cv-src/cvcolor.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cv-src/cvcolor.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: MD-Mathematische Dienste GmbH Im Defdahl count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2002, MD-Mathematische Dienste GmbH Im Defdahl \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cv-src/cvdistransform.cpp.yml b/tests/cluecode/data/ics/opencv-cv-src/cvdistransform.cpp.yml index 053bed77d15..13cfbb32bb6 100644 --- a/tests/cluecode/data/ics/opencv-cv-src/cvdistransform.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cv-src/cvdistransform.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Jay Stavinzky count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - (c) 2006 by Jay Stavinzky. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cv-src/cvemd.cpp.yml b/tests/cluecode/data/ics/opencv-cv-src/cvemd.cpp.yml index 366dbaa1ad6..71b6809c391 100644 --- a/tests/cluecode/data/ics/opencv-cv-src/cvemd.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cv-src/cvemd.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Yossi Rubner Computer Science Department, Stanford University count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 1998 Yossi Rubner Computer Science Department, Stanford University \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cv-src/cvkdtree.cpp.yml b/tests/cluecode/data/ics/opencv-cv-src/cvkdtree.cpp.yml index 7522f70c8c5..6aaf321555d 100644 --- a/tests/cluecode/data/ics/opencv-cv-src/cvkdtree.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cv-src/cvkdtree.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Xavier Delacour count: 1 +allrights: + - Copyright (c) 2008, Xavier Delacour, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cv-src/cvsmooth.cpp.yml b/tests/cluecode/data/ics/opencv-cv-src/cvsmooth.cpp.yml index ba0de30c1a9..251a8a9f471 100644 --- a/tests/cluecode/data/ics/opencv-cv-src/cvsmooth.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cv-src/cvsmooth.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Simon Perreault count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2006 Simon Perreault \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cv-src/cvsurf.cpp.yml b/tests/cluecode/data/ics/opencv-cv-src/cvsurf.cpp.yml index e792d8a7056..193d3280cf7 100644 --- a/tests/cluecode/data/ics/opencv-cv-src/cvsurf.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cv-src/cvsurf.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Liu Liu count: 1 +allrights: + - Copyright (c) 2008, Liu Liu All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cvaux-src/cv3dtracker.cpp.yml b/tests/cluecode/data/ics/opencv-cvaux-src/cv3dtracker.cpp.yml index 57f32fe77b4..61ad32f27cb 100644 --- a/tests/cluecode/data/ics/opencv-cvaux-src/cv3dtracker.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cvaux-src/cv3dtracker.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2002, Intel Corporation, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cvaux-src/cvdpstereo.cpp.yml b/tests/cluecode/data/ics/opencv-cvaux-src/cvdpstereo.cpp.yml index 308532fd257..6424ba4453f 100644 --- a/tests/cluecode/data/ics/opencv-cvaux-src/cvdpstereo.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cvaux-src/cvdpstereo.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cxcore-include/cvwimage.h.yml b/tests/cluecode/data/ics/opencv-cxcore-include/cvwimage.h.yml index 836a04a8c9b..4160fed58a9 100644 --- a/tests/cluecode/data/ics/opencv-cxcore-include/cvwimage.h.yml +++ b/tests/cluecode/data/ics/opencv-cxcore-include/cvwimage.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright (c) 2008, Google, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cxcore-include/cxmisc.h.yml b/tests/cluecode/data/ics/opencv-cxcore-include/cxmisc.h.yml index ce66c8402b3..a7ed7c110ca 100644 --- a/tests/cluecode/data/ics/opencv-cxcore-include/cxmisc.h.yml +++ b/tests/cluecode/data/ics/opencv-cxcore-include/cxmisc.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 1992, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cxcore-include/cxtypes.h.yml b/tests/cluecode/data/ics/opencv-cxcore-include/cxtypes.h.yml index d6bcdc7fcb4..e7e4dc84107 100644 --- a/tests/cluecode/data/ics/opencv-cxcore-include/cxtypes.h.yml +++ b/tests/cluecode/data/ics/opencv-cxcore-include/cxtypes.h.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Intel Corporation count: 2 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 1995 Intel Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cxcore-src/cxdatastructs.cpp.yml b/tests/cluecode/data/ics/opencv-cxcore-src/cxdatastructs.cpp.yml index ce66c8402b3..a7ed7c110ca 100644 --- a/tests/cluecode/data/ics/opencv-cxcore-src/cxdatastructs.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cxcore-src/cxdatastructs.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 1992, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-cxcore-src/cxutils.cpp.yml b/tests/cluecode/data/ics/opencv-cxcore-src/cxutils.cpp.yml index e73e36c6e46..b5b0776a5a5 100644 --- a/tests/cluecode/data/ics/opencv-cxcore-src/cxutils.cpp.yml +++ b/tests/cluecode/data/ics/opencv-cxcore-src/cxutils.cpp.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 1978-1999 Ken Turkowski. + - Copyright (c) 1981-1999 Ken Turkowski. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-ml-src/mlsvm.cpp.yml b/tests/cluecode/data/ics/opencv-ml-src/mlsvm.cpp.yml index 4797ac9098a..d4890a2bfb3 100644 --- a/tests/cluecode/data/ics/opencv-ml-src/mlsvm.cpp.yml +++ b/tests/cluecode/data/ics/opencv-ml-src/mlsvm.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2000-2003 Chih-Chung Chang and Chih-Jen Lin All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-otherlibs-highgui/cvcap_socket.cpp.yml b/tests/cluecode/data/ics/opencv-otherlibs-highgui/cvcap_socket.cpp.yml index 01bc85b6c7d..e03a2187e07 100644 --- a/tests/cluecode/data/ics/opencv-otherlibs-highgui/cvcap_socket.cpp.yml +++ b/tests/cluecode/data/ics/opencv-otherlibs-highgui/cvcap_socket.cpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nils Hasler count: 1 +allrights: + - Copyright (c) 2008, Nils Hasler, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv-otherlibs-highgui/grfmt_png.cpp.yml b/tests/cluecode/data/ics/opencv-otherlibs-highgui/grfmt_png.cpp.yml index 9ef5cf5289d..01379c50529 100644 --- a/tests/cluecode/data/ics/opencv-otherlibs-highgui/grfmt_png.cpp.yml +++ b/tests/cluecode/data/ics/opencv-otherlibs-highgui/grfmt_png.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: MIYASAKA Masaru count: 1 +allrights: + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - (Copyright (c) 1999-2001 MIYASAKA Masaru) \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv/LICENSE_OpenCV.yml b/tests/cluecode/data/ics/opencv/LICENSE_OpenCV.yml index da7235a00bd..c21ca575d16 100644 --- a/tests/cluecode/data/ics/opencv/LICENSE_OpenCV.yml +++ b/tests/cluecode/data/ics/opencv/LICENSE_OpenCV.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Intel Corporation count: 1 +allrights: + - Copyright (c) 2000-2006, Intel Corporation, all rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/opencv/NOTICE.yml b/tests/cluecode/data/ics/opencv/NOTICE.yml index 3e707dbc3f7..c12d3c8c059 100644 --- a/tests/cluecode/data/ics/opencv/NOTICE.yml +++ b/tests/cluecode/data/ics/opencv/NOTICE.yml @@ -79,3 +79,29 @@ holders_summary: count: 1 - value: Yossi Rubner Computer Science Department, Stanford University count: 1 +allrights: + - Copyright (c) 2000-2006, Intel Corporation, all rights reserved. + - Copyright (c) 2006-2009 SIProp Project http://www.siprop.org + - Copyright (c) 1992, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 2008, Liu Liu All rights reserved. + - Copyright (c) 2008, Google, all rights reserved. + - Copyright (c) 1992, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 2002, MD-Mathematische Dienste GmbH Im Defdahl + - Copyright (c) 2000-2003 Chih-Chung Chang and Chih-Jen Lin All rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2002, Intel Corp, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2008, Xavier Delacour, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2008, Nils Hasler, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 2000, Intel Corporation, all rights reserved. + - Copyright (c) 1978-1999 Ken Turkowski. + - Copyright (c) 1981-1999 Ken Turkowski. + - Copyright (c) 1998 Yossi Rubner Computer Science Department, Stanford University + - Copyright (c) 2006 Simon Perreault + - Copyright (c) 1995 Intel Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/app_rand.c.yml b/tests/cluecode/data/ics/openssl-apps/app_rand.c.yml index fc3d8402214..989ae266364 100644 --- a/tests/cluecode/data/ics/openssl-apps/app_rand.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/app_rand.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/apps.c.yml b/tests/cluecode/data/ics/openssl-apps/apps.c.yml index 8277dd8ef50..5347bcdc4e3 100644 --- a/tests/cluecode/data/ics/openssl-apps/apps.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/apps.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/apps.h.yml b/tests/cluecode/data/ics/openssl-apps/apps.h.yml index 8277dd8ef50..5347bcdc4e3 100644 --- a/tests/cluecode/data/ics/openssl-apps/apps.h.yml +++ b/tests/cluecode/data/ics/openssl-apps/apps.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/asn1pars.c.yml b/tests/cluecode/data/ics/openssl-apps/asn1pars.c.yml index b7f805459f1..b0bd7e9c57d 100644 --- a/tests/cluecode/data/ics/openssl-apps/asn1pars.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/asn1pars.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/cms.c.yml b/tests/cluecode/data/ics/openssl-apps/cms.c.yml index e014cf805aa..f058602cc1d 100644 --- a/tests/cluecode/data/ics/openssl-apps/cms.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/cms.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2008 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/ec.c.yml b/tests/cluecode/data/ics/openssl-apps/ec.c.yml index 8008248c9e5..020bc0d1330 100644 --- a/tests/cluecode/data/ics/openssl-apps/ec.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/ec.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/ecparam.c.yml b/tests/cluecode/data/ics/openssl-apps/ecparam.c.yml index d827adeeb4c..53981e8f360 100644 --- a/tests/cluecode/data/ics/openssl-apps/ecparam.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/ecparam.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/engine.c.yml b/tests/cluecode/data/ics/openssl-apps/engine.c.yml index 005fa378c42..98e73753d21 100644 --- a/tests/cluecode/data/ics/openssl-apps/engine.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/engine.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/genpkey.c.yml b/tests/cluecode/data/ics/openssl-apps/genpkey.c.yml index b3dccc23971..428bb32e698 100644 --- a/tests/cluecode/data/ics/openssl-apps/genpkey.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/genpkey.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2006 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/nseq.c.yml b/tests/cluecode/data/ics/openssl-apps/nseq.c.yml index f57d0f96a00..462a310a23b 100644 --- a/tests/cluecode/data/ics/openssl-apps/nseq.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/nseq.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/openssl.c.yml b/tests/cluecode/data/ics/openssl-apps/openssl.c.yml index f27a55db934..1f9579f247f 100644 --- a/tests/cluecode/data/ics/openssl-apps/openssl.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/openssl.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/pkcs12.c.yml b/tests/cluecode/data/ics/openssl-apps/pkcs12.c.yml index 4ccf0f1454c..ed7b252d6c2 100644 --- a/tests/cluecode/data/ics/openssl-apps/pkcs12.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/pkcs12.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2006 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/prime.c.yml b/tests/cluecode/data/ics/openssl-apps/prime.c.yml index 32a953545b0..c5196b305b8 100644 --- a/tests/cluecode/data/ics/openssl-apps/prime.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/prime.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2004 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/rand.c.yml b/tests/cluecode/data/ics/openssl-apps/rand.c.yml index 69fa9a62c60..46f589218d5 100644 --- a/tests/cluecode/data/ics/openssl-apps/rand.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/rand.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/s_client.c.yml b/tests/cluecode/data/ics/openssl-apps/s_client.c.yml index 8677231fa50..bcbb04a7502 100644 --- a/tests/cluecode/data/ics/openssl-apps/s_client.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/s_client.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/s_server.c.yml b/tests/cluecode/data/ics/openssl-apps/s_server.c.yml index cf21443ad3f..d8e80e252de 100644 --- a/tests/cluecode/data/ics/openssl-apps/s_server.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/s_server.c.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/smime.c.yml b/tests/cluecode/data/ics/openssl-apps/smime.c.yml index f5f78892572..60419c9e6ba 100644 --- a/tests/cluecode/data/ics/openssl-apps/smime.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/smime.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/speed.c.yml b/tests/cluecode/data/ics/openssl-apps/speed.c.yml index eab14eec4a7..9810e0e5d07 100644 --- a/tests/cluecode/data/ics/openssl-apps/speed.c.yml +++ b/tests/cluecode/data/ics/openssl-apps/speed.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-apps/timeouts.h.yml b/tests/cluecode/data/ics/openssl-apps/timeouts.h.yml index 90048d63051..1b2cbe12804 100644 --- a/tests/cluecode/data/ics/openssl-apps/timeouts.h.yml +++ b/tests/cluecode/data/ics/openssl-apps/timeouts.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-aes/aes.h.yml b/tests/cluecode/data/ics/openssl-crypto-aes/aes.h.yml index 76c010cca74..636fe9daba3 100644 --- a/tests/cluecode/data/ics/openssl-crypto-aes/aes.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-aes/aes.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-aes/aes_cfb.c.yml b/tests/cluecode/data/ics/openssl-crypto-aes/aes_cfb.c.yml index f1faf9fc2dd..299bc556afd 100644 --- a/tests/cluecode/data/ics/openssl-crypto-aes/aes_cfb.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-aes/aes_cfb.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/a_sign.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/a_sign.c.yml index 188c3fda568..d363d557ab7 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/a_sign.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/a_sign.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_err.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_err.c.yml index d035deec7d6..a05181276b4 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_err.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_err.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2009 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_gen.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_gen.c.yml index 859a0d0e1e0..4879dae2349 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_gen.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/asn1_gen.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/asn1t.h.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/asn1t.h.yml index 49fddf031f9..d6691347bbd 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/asn1t.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/asn1t.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/asn_mime.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/asn_mime.c.yml index 2f991bebf3d..a5fdb6ad10a 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/asn_mime.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/asn_mime.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/asn_moid.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/asn_moid.c.yml index f4672451040..9b4b4b9a54b 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/asn_moid.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/asn_moid.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2001-2004 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_dec.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_dec.c.yml index 49fddf031f9..d6691347bbd 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_dec.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_dec.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_enc.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_enc.c.yml index e289f1a5421..04e3c93382e 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_enc.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_enc.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000-2004 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_prn.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_prn.c.yml index 2bf4b24148b..5d7140c0e19 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_prn.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/tasn_prn.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000,2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-asn1/x_nx509.c.yml b/tests/cluecode/data/ics/openssl-crypto-asn1/x_nx509.c.yml index 23e7279084a..081f0d82e7a 100644 --- a/tests/cluecode/data/ics/openssl-crypto-asn1/x_nx509.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-asn1/x_nx509.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bf/COPYRIGHT.yml b/tests/cluecode/data/ics/openssl-crypto-bf/COPYRIGHT.yml index c82d30134fa..7a8f5eaa9d1 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bf/COPYRIGHT.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bf/COPYRIGHT.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Eric Young count: 1 +allrights: + - Copyright (c) 1995-1997 Eric Young (eay@cryptsoft.com) All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bf/bf_locl.h.yml b/tests/cluecode/data/ics/openssl-crypto-bf/bf_locl.h.yml index c04caad3d82..02eb600796e 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bf/bf_locl.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bf/bf_locl.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1997 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bio/b_print.c.yml b/tests/cluecode/data/ics/openssl-crypto-bio/b_print.c.yml index c22ce8f9f22..09d96b0c0d5 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bio/b_print.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bio/b_print.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright Patrick Powell 1995 \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bio/bss_bio.c.yml b/tests/cluecode/data/ics/openssl-crypto-bio/bss_bio.c.yml index a4f108dd798..b30b8acdf4f 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bio/bss_bio.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bio/bss_bio.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn.h.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn.h.yml index 2c5ad606763..e2a3f9affd5 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn.h.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1997 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn_blind.c.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn_blind.c.yml index 97e5168f6db..974fefd2f92 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn_blind.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn_blind.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1998-2006 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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn_ctx.c.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn_ctx.c.yml index d16286233c5..b0d51c03190 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn_ctx.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn_ctx.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn_err.c.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn_err.c.yml index 556bfabf9e2..bfc006983c8 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn_err.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn_err.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn_exp.c.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn_exp.c.yml index f92e170af7f..36ad42e90ea 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn_exp.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn_exp.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn_gf2m.c.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn_gf2m.c.yml index 86711627182..7bb57391ca0 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn_gf2m.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn_gf2m.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn_lcl.h.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn_lcl.h.yml index fc3d8402214..989ae266364 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn_lcl.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn_lcl.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-bn/bn_mod.c.yml b/tests/cluecode/data/ics/openssl-crypto-bn/bn_mod.c.yml index 57e5e9e65f1..66d81791f10 100644 --- a/tests/cluecode/data/ics/openssl-crypto-bn/bn_mod.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-bn/bn_mod.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1998-2000 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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-des-asm/des_enc.m4.yml b/tests/cluecode/data/ics/openssl-crypto-des-asm/des_enc.m4.yml index e35a2fe1bbd..aa9d8e35f39 100644 --- a/tests/cluecode/data/ics/openssl-crypto-des-asm/des_enc.m4.yml +++ b/tests/cluecode/data/ics/openssl-crypto-des-asm/des_enc.m4.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Svend Olaf Mikkelsen count: 1 +allrights: + - Copyright Svend Olaf Mikkelsen. + - Copyright Eric A. Young. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-des/README.yml b/tests/cluecode/data/ics/openssl-crypto-des/README.yml index 69ed77ec5db..0be43b0f11b 100644 --- a/tests/cluecode/data/ics/openssl-crypto-des/README.yml +++ b/tests/cluecode/data/ics/openssl-crypto-des/README.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Eric Young count: 1 +allrights: + - Copyright (c) 1997, Eric Young All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-des/read2pwd.c.yml b/tests/cluecode/data/ics/openssl-crypto-des/read2pwd.c.yml index 5cce1118314..ef00134bcb4 100644 --- a/tests/cluecode/data/ics/openssl-crypto-des/read2pwd.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-des/read2pwd.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 2001-2002 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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-des/rpc_des.h.yml b/tests/cluecode/data/ics/openssl-crypto-des/rpc_des.h.yml index 674f3fb8b8f..f4e374aec61 100644 --- a/tests/cluecode/data/ics/openssl-crypto-des/rpc_des.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-des/rpc_des.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1986 by Sun Microsystems, Inc. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-dsa/dsa_locl.h.yml b/tests/cluecode/data/ics/openssl-crypto-dsa/dsa_locl.h.yml index 293753f9273..8d27576981a 100644 --- a/tests/cluecode/data/ics/openssl-crypto-dsa/dsa_locl.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-dsa/dsa_locl.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2007 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ec.h.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ec.h.yml index d827adeeb4c..53981e8f360 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ec.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ec.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ec2_mult.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ec2_mult.c.yml index e1a94e568b4..c7a676ecb1c 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ec2_mult.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ec2_mult.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ec2_smpl.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ec2_smpl.c.yml index ac78ab8d912..ec96d1f7bae 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ec2_smpl.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ec2_smpl.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ec_asn1.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ec_asn1.c.yml index 4a34f679414..493bb2e56f6 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ec_asn1.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ec_asn1.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ec_curve.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ec_curve.c.yml index 8701dd58a94..3c41cb388d0 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ec_curve.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ec_curve.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ec_mult.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ec_mult.c.yml index 49801dc2edd..2c78d37bf1c 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ec_mult.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ec_mult.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ecp_mont.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ecp_mont.c.yml index 1d67ee09c5f..ece13b76982 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ecp_mont.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ecp_mont.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ecp_nist.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ecp_nist.c.yml index 877694ad65b..cc42c94b801 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ecp_nist.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ecp_nist.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ec/ecp_smpl.c.yml b/tests/cluecode/data/ics/openssl-crypto-ec/ecp_smpl.c.yml index fb5d32da154..1ec0d7e5fef 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ec/ecp_smpl.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ec/ecp_smpl.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ecdh/ecdh.h.yml b/tests/cluecode/data/ics/openssl-crypto-ecdh/ecdh.h.yml index 8ce92631781..be2d2f5a087 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ecdh/ecdh.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ecdh/ecdh.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecdsatest.c.yml b/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecdsatest.c.yml index ba3b3146ab5..c0cd9183314 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecdsatest.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecdsatest.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecs_asn1.c.yml b/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecs_asn1.c.yml index 7e86594809a..273ec41afa4 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecs_asn1.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ecdsa/ecs_asn1.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-engine/eng_all.c.yml b/tests/cluecode/data/ics/openssl-crypto-engine/eng_all.c.yml index 857f1988774..579b4c9f346 100644 --- a/tests/cluecode/data/ics/openssl-crypto-engine/eng_all.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-engine/eng_all.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2000-2001 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-engine/eng_cryptodev.c.yml b/tests/cluecode/data/ics/openssl-crypto-engine/eng_cryptodev.c.yml index 6bd821a242d..cd510f43cdb 100644 --- a/tests/cluecode/data/ics/openssl-crypto-engine/eng_cryptodev.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-engine/eng_cryptodev.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Theo de Raadt count: 1 +allrights: + - Copyright (c) 2002 Bob Beck + - Copyright (c) 2002 Theo de Raadt + - Copyright (c) 2002 Markus Friedl All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-engine/eng_dyn.c.yml b/tests/cluecode/data/ics/openssl-crypto-engine/eng_dyn.c.yml index 67dc7b46945..edb8b4f0aa5 100644 --- a/tests/cluecode/data/ics/openssl-crypto-engine/eng_dyn.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-engine/eng_dyn.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-engine/eng_err.c.yml b/tests/cluecode/data/ics/openssl-crypto-engine/eng_err.c.yml index effdae986c0..045d82a6826 100644 --- a/tests/cluecode/data/ics/openssl-crypto-engine/eng_err.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-engine/eng_err.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2010 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-engine/eng_fat.c.yml b/tests/cluecode/data/ics/openssl-crypto-engine/eng_fat.c.yml index c374a1bee0e..30fa5555d71 100644 --- a/tests/cluecode/data/ics/openssl-crypto-engine/eng_fat.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-engine/eng_fat.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-engine/engine.h.yml b/tests/cluecode/data/ics/openssl-crypto-engine/engine.h.yml index 7ae999d0a1c..f3554067daf 100644 --- a/tests/cluecode/data/ics/openssl-crypto-engine/engine.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-engine/engine.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-evp/m_ecdsa.c.yml b/tests/cluecode/data/ics/openssl-crypto-evp/m_ecdsa.c.yml index dad0c02a47e..46b9cb20156 100644 --- a/tests/cluecode/data/ics/openssl-crypto-evp/m_ecdsa.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-evp/m_ecdsa.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1998-2002 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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-evp/m_sigver.c.yml b/tests/cluecode/data/ics/openssl-crypto-evp/m_sigver.c.yml index d53e71e87f9..9425e463df5 100644 --- a/tests/cluecode/data/ics/openssl-crypto-evp/m_sigver.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-evp/m_sigver.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2006,2007 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-pem/pem_all.c.yml b/tests/cluecode/data/ics/openssl-crypto-pem/pem_all.c.yml index 04df6a1fbd5..f215bd295cf 100644 --- a/tests/cluecode/data/ics/openssl-crypto-pem/pem_all.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-pem/pem_all.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-pkcs12/p12_crt.c.yml b/tests/cluecode/data/ics/openssl-crypto-pkcs12/p12_crt.c.yml index 351ea883ba6..fcf325fa132 100644 --- a/tests/cluecode/data/ics/openssl-crypto-pkcs12/p12_crt.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-pkcs12/p12_crt.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-rand/rand_win.c.yml b/tests/cluecode/data/ics/openssl-crypto-rand/rand_win.c.yml index aaf469a0bd8..8231af69778 100644 --- a/tests/cluecode/data/ics/openssl-crypto-rand/rand_win.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-rand/rand_win.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. + - (c) Copyright Microsoft Corp. 1993. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ui/ui_compat.c.yml b/tests/cluecode/data/ics/openssl-crypto-ui/ui_compat.c.yml index 04c2cd311ab..d5fcf4d6f13 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ui/ui_compat.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ui/ui_compat.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2001-2002 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-ui/ui_openssl.c.yml b/tests/cluecode/data/ics/openssl-crypto-ui/ui_openssl.c.yml index 0ca31041ee5..79d8f547486 100644 --- a/tests/cluecode/data/ics/openssl-crypto-ui/ui_openssl.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-ui/ui_openssl.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 2001 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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-x509/x509.h.yml b/tests/cluecode/data/ics/openssl-crypto-x509/x509.h.yml index eab14eec4a7..9810e0e5d07 100644 --- a/tests/cluecode/data/ics/openssl-crypto-x509/x509.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto-x509/x509.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_alt.c.yml b/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_alt.c.yml index e9751d7034f..205e2ad9b7f 100644 --- a/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_alt.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_alt.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_pci.c.yml b/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_pci.c.yml index bb3ef7ea83b..573de90142b 100644 --- a/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_pci.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto-x509v3/v3_pci.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden) count: 1 +allrights: + - Copyright (c) 2004 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden). All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto/LPdir_nyi.c.yml b/tests/cluecode/data/ics/openssl-crypto/LPdir_nyi.c.yml index b19737fad1d..0e081a6efd9 100644 --- a/tests/cluecode/data/ics/openssl-crypto/LPdir_nyi.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto/LPdir_nyi.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Richard Levitte count: 1 +allrights: + - Copyright (c) 2004, Richard Levitte All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto/cryptlib.c.yml b/tests/cluecode/data/ics/openssl-crypto/cryptlib.c.yml index 87459698079..30031f85653 100644 --- a/tests/cluecode/data/ics/openssl-crypto/cryptlib.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto/cryptlib.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1998-2006 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 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto/md32_common.h.yml b/tests/cluecode/data/ics/openssl-crypto/md32_common.h.yml index 556bfabf9e2..bfc006983c8 100644 --- a/tests/cluecode/data/ics/openssl-crypto/md32_common.h.yml +++ b/tests/cluecode/data/ics/openssl-crypto/md32_common.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto/mem_clr.c.yml b/tests/cluecode/data/ics/openssl-crypto/mem_clr.c.yml index 4f8ef3b0515..9138198f32f 100644 --- a/tests/cluecode/data/ics/openssl-crypto/mem_clr.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto/mem_clr.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2001 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-crypto/o_str.c.yml b/tests/cluecode/data/ics/openssl-crypto/o_str.c.yml index d2a9b9cbd23..e552543eca2 100644 --- a/tests/cluecode/data/ics/openssl-crypto/o_str.c.yml +++ b/tests/cluecode/data/ics/openssl-crypto/o_str.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2003 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-include-openssl/modes.h.yml b/tests/cluecode/data/ics/openssl-include-openssl/modes.h.yml index e014cf805aa..f058602cc1d 100644 --- a/tests/cluecode/data/ics/openssl-include-openssl/modes.h.yml +++ b/tests/cluecode/data/ics/openssl-include-openssl/modes.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The OpenSSL Project count: 1 +allrights: + - Copyright (c) 2008 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-include-openssl/ssl.h.yml b/tests/cluecode/data/ics/openssl-include-openssl/ssl.h.yml index f7967388e9f..187864b6682 100644 --- a/tests/cluecode/data/ics/openssl-include-openssl/ssl.h.yml +++ b/tests/cluecode/data/ics/openssl-include-openssl/ssl.h.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-include-openssl/ssl3.h.yml b/tests/cluecode/data/ics/openssl-include-openssl/ssl3.h.yml index c82bdc55500..8e3f865dc5b 100644 --- a/tests/cluecode/data/ics/openssl-include-openssl/ssl3.h.yml +++ b/tests/cluecode/data/ics/openssl-include-openssl/ssl3.h.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-include-openssl/tls1.h.yml b/tests/cluecode/data/ics/openssl-include-openssl/tls1.h.yml index cf21443ad3f..d8e80e252de 100644 --- a/tests/cluecode/data/ics/openssl-include-openssl/tls1.h.yml +++ b/tests/cluecode/data/ics/openssl-include-openssl/tls1.h.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/d1_both.c.yml b/tests/cluecode/data/ics/openssl-ssl/d1_both.c.yml index 575a93c7a43..fcc921baf4d 100644 --- a/tests/cluecode/data/ics/openssl-ssl/d1_both.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/d1_both.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1998-2005 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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/d1_clnt.c.yml b/tests/cluecode/data/ics/openssl-ssl/d1_clnt.c.yml index 2bc8442c3a0..4866d5012a1 100644 --- a/tests/cluecode/data/ics/openssl-ssl/d1_clnt.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/d1_clnt.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1999-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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/s2_lib.c.yml b/tests/cluecode/data/ics/openssl-ssl/s2_lib.c.yml index ac81d058ee3..118be50e6f9 100644 --- a/tests/cluecode/data/ics/openssl-ssl/s2_lib.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/s2_lib.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/s3_enc.c.yml b/tests/cluecode/data/ics/openssl-ssl/s3_enc.c.yml index 39ba373d405..69046f7b1c8 100644 --- a/tests/cluecode/data/ics/openssl-ssl/s3_enc.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/s3_enc.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/s3_lib.c.yml b/tests/cluecode/data/ics/openssl-ssl/s3_lib.c.yml index f7967388e9f..187864b6682 100644 --- a/tests/cluecode/data/ics/openssl-ssl/s3_lib.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/s3_lib.c.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/ssl_asn1.c.yml b/tests/cluecode/data/ics/openssl-ssl/ssl_asn1.c.yml index ed9cecad040..7c2816251a7 100644 --- a/tests/cluecode/data/ics/openssl-ssl/ssl_asn1.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/ssl_asn1.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/ssl_cert.c.yml b/tests/cluecode/data/ics/openssl-ssl/ssl_cert.c.yml index 89260d6079d..15fd08d9af4 100644 --- a/tests/cluecode/data/ics/openssl-ssl/ssl_cert.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/ssl_cert.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/ssltest.c.yml b/tests/cluecode/data/ics/openssl-ssl/ssltest.c.yml index 179c6082957..4089c4d4cc0 100644 --- a/tests/cluecode/data/ics/openssl-ssl/ssltest.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/ssltest.c.yml @@ -25,3 +25,9 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. + - Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + - Copyright 2005 Nokia. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl-ssl/t1_reneg.c.yml b/tests/cluecode/data/ics/openssl-ssl/t1_reneg.c.yml index 79b257a4656..7d8abaa4c52 100644 --- a/tests/cluecode/data/ics/openssl-ssl/t1_reneg.c.yml +++ b/tests/cluecode/data/ics/openssl-ssl/t1_reneg.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). + - Copyright (c) 1998-2009 The OpenSSL Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl/NOTICE.yml b/tests/cluecode/data/ics/openssl/NOTICE.yml index 1afa0c6d923..3087560b811 100644 --- a/tests/cluecode/data/ics/openssl/NOTICE.yml +++ b/tests/cluecode/data/ics/openssl/NOTICE.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1998-2011 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). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl/e_os.h.yml b/tests/cluecode/data/ics/openssl/e_os.h.yml index b7f805459f1..b0bd7e9c57d 100644 --- a/tests/cluecode/data/ics/openssl/e_os.h.yml +++ b/tests/cluecode/data/ics/openssl/e_os.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Tim Hudson count: 1 +allrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. + - holder is Tim Hudson (tjh@cryptsoft.com). \ No newline at end of file diff --git a/tests/cluecode/data/ics/openssl/e_os2.h.yml b/tests/cluecode/data/ics/openssl/e_os2.h.yml index ac7c65f2263..57f0cb5e45d 100644 --- a/tests/cluecode/data/ics/openssl/e_os2.h.yml +++ b/tests/cluecode/data/ics/openssl/e_os2.h.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/ics/oprofile-daemon-liblegacy/p_module.h.yml b/tests/cluecode/data/ics/oprofile-daemon-liblegacy/p_module.h.yml index 678a5e37b75..43477d40428 100644 --- a/tests/cluecode/data/ics/oprofile-daemon-liblegacy/p_module.h.yml +++ b/tests/cluecode/data/ics/oprofile-daemon-liblegacy/p_module.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Linux International count: 1 +allrights: + - Copyright 1996, 1997 Linux International. \ No newline at end of file diff --git a/tests/cluecode/data/ics/oprofile-doc/oprofile.1.in.yml b/tests/cluecode/data/ics/oprofile-doc/oprofile.1.in.yml index 8215ca23fd9..f8589e1a11c 100644 --- a/tests/cluecode/data/ics/oprofile-doc/oprofile.1.in.yml +++ b/tests/cluecode/data/ics/oprofile-doc/oprofile.1.in.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: University of Manchester, UK, John Levon, and others count: 1 +allrights: + - Copyright (c) 1998-2004 University of Manchester, UK, John Levon, and others. \ No newline at end of file diff --git a/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/events.yml b/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/events.yml index 1f6429e75ee..2aeacfc4539 100644 --- a/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/events.yml +++ b/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/events.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: OProfile authors count: 1 +allrights: + - Copyright OProfile authors + - Copyright (c) International Business Machines, 2007. \ No newline at end of file diff --git a/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/unit_masks.yml b/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/unit_masks.yml index fb89b998883..e9ee8e4ce36 100644 --- a/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/unit_masks.yml +++ b/tests/cluecode/data/ics/oprofile-events-ppc64-970MP/unit_masks.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: OProfile authors count: 1 +allrights: + - Copyright OProfile authors + - Copyright (c) International Business Machines, 2006. \ No newline at end of file diff --git a/tests/cluecode/data/ics/oprofile-libutil++/sparse_array.h.yml b/tests/cluecode/data/ics/oprofile-libutil++/sparse_array.h.yml index fa73a9e3573..45273fcf171 100644 --- a/tests/cluecode/data/ics/oprofile-libutil++/sparse_array.h.yml +++ b/tests/cluecode/data/ics/oprofile-libutil++/sparse_array.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: OProfile authors count: 1 +allrights: + - Copyright 2007 OProfile authors + - Copyright (c) International Business Machines, 2007. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ping/NOTICE.yml b/tests/cluecode/data/ics/ping/NOTICE.yml index 548789e0f9d..171970b2b79 100644 --- a/tests/cluecode/data/ics/ping/NOTICE.yml +++ b/tests/cluecode/data/ics/ping/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ping/ping.c.yml b/tests/cluecode/data/ics/ping/ping.c.yml index 4cc5bcb115b..e1c412a6db9 100644 --- a/tests/cluecode/data/ics/ping/ping.c.yml +++ b/tests/cluecode/data/ics/ping/ping.c.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: The Regents of the University of California count: 2 +allrights: + - Copyright (c) 1989 The Regents of the University of California. All rights reserved. + - Copyright (c) 1989 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ping6/NOTICE.yml b/tests/cluecode/data/ics/ping6/NOTICE.yml index f83d5ca9cdf..f5ae21d6e13 100644 --- a/tests/cluecode/data/ics/ping6/NOTICE.yml +++ b/tests/cluecode/data/ics/ping6/NOTICE.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ping6/ping6.c.yml b/tests/cluecode/data/ics/ping6/ping6.c.yml index f898003f877..e61c0e8fa6f 100644 --- a/tests/cluecode/data/ics/ping6/ping6.c.yml +++ b/tests/cluecode/data/ics/ping6/ping6.c.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-include-net/ppp_defs.h.yml b/tests/cluecode/data/ics/ppp-pppd-include-net/ppp_defs.h.yml index 90a8dec0975..ee3842dbe5e 100644 --- a/tests/cluecode/data/ics/ppp-pppd-include-net/ppp_defs.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd-include-net/ppp_defs.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1984 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-include-net/pppio.h.yml b/tests/cluecode/data/ics/ppp-pppd-include-net/pppio.h.yml index fd65761c362..62d7ae0b52b 100644 --- a/tests/cluecode/data/ics/ppp-pppd-include-net/pppio.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd-include-net/pppio.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1994 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-include-net/slcompress.h.yml b/tests/cluecode/data/ics/ppp-pppd-include-net/slcompress.h.yml index 92637c00851..c8e45dce6df 100644 --- a/tests/cluecode/data/ics/ppp-pppd-include-net/slcompress.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd-include-net/slcompress.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989 Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-pppoatm/pppoatm.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-pppoatm/pppoatm.c.yml index 4ff8c4f988c..96a78fdc136 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-pppoatm/pppoatm.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-pppoatm/pppoatm.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Mitchell Blank Jr count: 1 +allrights: + - Copyright 2000 Mitchell Blank Jr. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/avpair.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/avpair.c.yml index 03cceda68d2..eec0059c7c6 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/avpair.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/avpair.c.yml @@ -18,3 +18,7 @@ holders_summary: count: 1 - value: The Regents of the University of Michigan and Merit Network, Inc. count: 1 +allrights: + - Copyright (c) 1995 Lars Fenneberg + - Copyright 1992 Livingston Enterprises, Inc. + - Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan and Merit Network, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/config.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/config.c.yml index 68f1eaa0021..4ba5d46b79d 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/config.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/config.c.yml @@ -18,3 +18,7 @@ holders_summary: count: 1 - value: The Regents of the University of Michigan and Merit Network, Inc. count: 1 +allrights: + - Copyright (c) 1995,1996,1997 Lars Fenneberg + - Copyright 1992 Livingston Enterprises, Inc. + - Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan and Merit Network, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/dict.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/dict.c.yml index f05479dfd6a..4a7fb77af69 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/dict.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/dict.c.yml @@ -22,3 +22,8 @@ holders_summary: count: 1 - value: The Regents of the University of Michigan and Merit Network, Inc. count: 1 +allrights: + - Copyright (c) 2002 Roaring Penguin Software Inc. + - Copyright (c) 1995,1996,1997 Lars Fenneberg + - Copyright 1992 Livingston Enterprises, Inc. + - Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan and Merit Network, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/includes.h.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/includes.h.yml index 8ba87808ca0..a2dfd430d02 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/includes.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/includes.h.yml @@ -18,3 +18,7 @@ holders_summary: count: 1 - value: The Regents of the University of Michigan and Merit Network, Inc. count: 1 +allrights: + - Copyright (c) 1997 Lars Fenneberg + - Copyright 1992 Livingston Enterprises, Inc. + - Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan and Merit Network, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/pathnames.h.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/pathnames.h.yml index 374239d2ca0..eae4c572c4a 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/pathnames.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/pathnames.h.yml @@ -18,3 +18,7 @@ holders_summary: count: 1 - value: The Regents of the University of Michigan and Merit Network, Inc. count: 1 +allrights: + - Copyright (c) 1995,1996 Lars Fenneberg + - Copyright 1992 Livingston Enterprises, Inc. + - Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan and Merit Network, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/radiusclient.h.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/radiusclient.h.yml index e46e767a57e..e8d1abe2c07 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-radius/radiusclient.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-radius/radiusclient.h.yml @@ -18,3 +18,7 @@ holders_summary: count: 1 - value: The Regents of the University of Michigan and Merit Network, Inc. count: 1 +allrights: + - Copyright (c) 1995,1996,1997,1998 Lars Fenneberg + - Copyright 1992 Livingston Enterprises, Inc. + - Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan and Merit Network, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins-rp-pppoe/plugin.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins-rp-pppoe/plugin.c.yml index 38aacae3d41..5b8530f319f 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins-rp-pppoe/plugin.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins-rp-pppoe/plugin.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Roaring Penguin Software Inc., Michal Ostrowski and Jamal Hadi Salim count: 1 +allrights: + - Copyright (c) 2001 by Roaring Penguin Software Inc., Michal Ostrowski and Jamal Hadi Salim. + - Copyright 2000 Michal Ostrowski , Jamal Hadi Salim \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins/minconn.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins/minconn.c.yml index d1d4919ad99..7ddb6a2da67 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins/minconn.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins/minconn.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1999 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins/passprompt.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins/passprompt.c.yml index fda3482881e..d053430b8c2 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins/passprompt.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins/passprompt.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Paul Mackerras, Alan Curry count: 1 +allrights: + - Copyright 1999 Paul Mackerras, Alan Curry. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd-plugins/winbind.c.yml b/tests/cluecode/data/ics/ppp-pppd-plugins/winbind.c.yml index 556296c0aa3..a94dfbfffef 100644 --- a/tests/cluecode/data/ics/ppp-pppd-plugins/winbind.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd-plugins/winbind.c.yml @@ -49,3 +49,16 @@ holders_summary: count: 1 - value: Simo Sorce count: 1 +allrights: + - Copyright (c) 2003 Andrew Bartlet + - Copyright 1999 Paul Mackerras, Alan Curry. + - Copyright (c) 2002 Roaring Penguin Software Inc. + - Copyright (c) 1996, Matjaz Godec + - Copyright (c) 1996, Lars Fenneberg + - Copyright (c) 1997, Miguel A.L. Paraz + - Copyright (c) 1995,1996,1997,1998 Lars Fenneberg + - Copyright (c) 2002 Roaring Penguin Software Inc. + - Copyright (c) 2003, Sean E. Millichamp sean at bruenor dot org + - Copyright (c) Andrew Tridgell 1992-2001 + - Copyright (c) Simo Sorce 2001-2002 + - Copyright (c) Martin Pool 2003 \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/NOTICE.yml b/tests/cluecode/data/ics/ppp-pppd/NOTICE.yml index 90b0ece7987..738f11639a5 100644 --- a/tests/cluecode/data/ics/ppp-pppd/NOTICE.yml +++ b/tests/cluecode/data/ics/ppp-pppd/NOTICE.yml @@ -57,3 +57,20 @@ holders_summary: count: 1 - value: Tommi Komulainen count: 1 +allrights: + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. + - Copyright (c) 1995 Pedro Roque Marques. All rights reserved. + - Copyright (c) 2000-2004 Paul Mackerras. All rights reserved. + - Copyright (c) 1994-2002 Paul Mackerras. All rights reserved. + - Copyright (c) 2003 Paul Mackerras. All rights reserved. + - Copyright (c) 1996-2002 Paul Mackerras. All rights reserved. + - Copyright (c) 1999-2004 Paul Mackerras. All rights reserved. + - Copyright (c) 2000-2002 Paul Mackerras. All rights reserved. + - Copyright (c) 1999-2002 Paul Mackerras. All rights reserved. + - Copyright (c) 1995 Eric Rosenquist. All rights reserved. + - Copyright (c) 2002 The Android Open Source Project + - Copyright (c) 1990, RSA Data Security, Inc. All rights reserved. + - Copyright (c) 2001 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 1999 Tommi Komulainen. All rights reserved. + - Copyright (c) 1995, 1996, 1997 Francis.Dupont@inria.fr, INRIA + - Copyright (c) 1998, 1999 Francis.Dupont@inria.fr \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/auth.c.yml b/tests/cluecode/data/ics/ppp-pppd/auth.c.yml index 01769d52cad..35a8645000e 100644 --- a/tests/cluecode/data/ics/ppp-pppd/auth.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/auth.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1993-2002 Paul Mackerras. All rights reserved. + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/cbcp.c.yml b/tests/cluecode/data/ics/ppp-pppd/cbcp.c.yml index 0f23d7871e5..d46a3f2c651 100644 --- a/tests/cluecode/data/ics/ppp-pppd/cbcp.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/cbcp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Pedro Roque Marques count: 1 +allrights: + - Copyright (c) 1995 Pedro Roque Marques. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/ccp.c.yml b/tests/cluecode/data/ics/ppp-pppd/ccp.c.yml index 3360aa892ac..95dbabf253d 100644 --- a/tests/cluecode/data/ics/ppp-pppd/ccp.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/ccp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1994-2002 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/chap_ms.c.yml b/tests/cluecode/data/ics/ppp-pppd/chap_ms.c.yml index 23fbd8624d8..623030db4c0 100644 --- a/tests/cluecode/data/ics/ppp-pppd/chap_ms.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/chap_ms.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Eric Rosenquist count: 1 +allrights: + - Copyright (c) 1995 Eric Rosenquist. All rights reserved. + - Copyright (c) 2002 The Android Open Source Project \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/chap_ms.h.yml b/tests/cluecode/data/ics/ppp-pppd/chap_ms.h.yml index d3c29a59012..3bc5b01330e 100644 --- a/tests/cluecode/data/ics/ppp-pppd/chap_ms.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd/chap_ms.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Eric Rosenquist count: 1 +allrights: + - Copyright (c) 1995 Eric Rosenquist. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/demand.c.yml b/tests/cluecode/data/ics/ppp-pppd/demand.c.yml index 4c3350fbd83..ec3fdf9ff5c 100644 --- a/tests/cluecode/data/ics/ppp-pppd/demand.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/demand.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1996-2002 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/eap.c.yml b/tests/cluecode/data/ics/ppp-pppd/eap.c.yml index 3b5e26fec04..572ba2713eb 100644 --- a/tests/cluecode/data/ics/ppp-pppd/eap.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/eap.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2001 by Sun Microsystems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/ecp.c.yml b/tests/cluecode/data/ics/ppp-pppd/ecp.c.yml index 4ab75d95a82..bf9f9843abe 100644 --- a/tests/cluecode/data/ics/ppp-pppd/ecp.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/ecp.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 2002 The Android Open Source Project All rights reserved. + - Copyright (c) 1994-2002 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/ecp.h.yml b/tests/cluecode/data/ics/ppp-pppd/ecp.h.yml index c25338306e1..44a1fab41a7 100644 --- a/tests/cluecode/data/ics/ppp-pppd/ecp.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd/ecp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Android Open Source Project count: 1 +allrights: + - Copyright (c) 2002 The Android Open Source Project All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/eui64.c.yml b/tests/cluecode/data/ics/ppp-pppd/eui64.c.yml index c6547227382..ecb8740b83b 100644 --- a/tests/cluecode/data/ics/ppp-pppd/eui64.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/eui64.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Tommi Komulainen count: 1 +allrights: + - Copyright (c) 1999 Tommi Komulainen. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/ipv6cp.c.yml b/tests/cluecode/data/ics/ppp-pppd/ipv6cp.c.yml index ac43a157b23..3d2bba9faf2 100644 --- a/tests/cluecode/data/ics/ppp-pppd/ipv6cp.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/ipv6cp.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Tommi Komulainen count: 1 +allrights: + - Copyright (c) 1999 Tommi Komulainen. All rights reserved. + - Copyright (c) 1995, 1996, 1997 Francis.Dupont@inria.fr, INRIA + - Copyright (c) 1998, 1999 Francis.Dupont@inria.fr + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/main.c.yml b/tests/cluecode/data/ics/ppp-pppd/main.c.yml index f8f0833f039..dd83e3deba0 100644 --- a/tests/cluecode/data/ics/ppp-pppd/main.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/main.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. + - Copyright (c) 1999-2004 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/md5.c.yml b/tests/cluecode/data/ics/ppp-pppd/md5.c.yml index 0bd497bba3c..e023dae278a 100644 --- a/tests/cluecode/data/ics/ppp-pppd/md5.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/md5.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: RSA Data Security, Inc. count: 1 +allrights: + - Copyright (c) 1990, RSA Data Security, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/md5.h.yml b/tests/cluecode/data/ics/ppp-pppd/md5.h.yml index 0bd497bba3c..e023dae278a 100644 --- a/tests/cluecode/data/ics/ppp-pppd/md5.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd/md5.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: RSA Data Security, Inc. count: 1 +allrights: + - Copyright (c) 1990, RSA Data Security, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/pppd.8.yml b/tests/cluecode/data/ics/ppp-pppd/pppd.8.yml index 79e30195463..edfddb6a38e 100644 --- a/tests/cluecode/data/ics/ppp-pppd/pppd.8.yml +++ b/tests/cluecode/data/ics/ppp-pppd/pppd.8.yml @@ -41,3 +41,14 @@ holders_summary: count: 1 - value: Tommi Komulainen count: 1 +allrights: + - Copyright (c) 1993-2003 Paul Mackerras + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. + - Copyright (c) 1993-2004 Paul Mackerras. All rights reserved. + - Copyright (c) 1995 Pedro Roque Marques. All rights reserved. + - Copyright (c) 1995 Eric Rosenquist. All rights reserved. + - Copyright (c) 1999 Tommi Komulainen. All rights reserved. + - Copyright (c) Andrew Tridgell 1999 + - Copyright (c) 2000 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 2001 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 2002 The Android Open Source Project \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/pppd.h.yml b/tests/cluecode/data/ics/ppp-pppd/pppd.h.yml index af54413faa9..9a3aa7d786f 100644 --- a/tests/cluecode/data/ics/ppp-pppd/pppd.h.yml +++ b/tests/cluecode/data/ics/ppp-pppd/pppd.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Carnegie Mellon University count: 1 +allrights: + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/sys-linux.c.yml b/tests/cluecode/data/ics/ppp-pppd/sys-linux.c.yml index f11a44083cd..82d42a605b3 100644 --- a/tests/cluecode/data/ics/ppp-pppd/sys-linux.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/sys-linux.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1994-2004 Paul Mackerras. All rights reserved. + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/sys-solaris.c.yml b/tests/cluecode/data/ics/ppp-pppd/sys-solaris.c.yml index 5c020c9c971..ba891aae22c 100644 --- a/tests/cluecode/data/ics/ppp-pppd/sys-solaris.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/sys-solaris.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2000 by Sun Microsystems, Inc. All rights reserved. + - Copyright (c) 1995-2002 Paul Mackerras. All rights reserved. + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/tty.c.yml b/tests/cluecode/data/ics/ppp-pppd/tty.c.yml index 2f9d128fb8f..395225a88e7 100644 --- a/tests/cluecode/data/ics/ppp-pppd/tty.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/tty.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 2000-2004 Paul Mackerras. All rights reserved. + - Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/ppp-pppd/utils.c.yml b/tests/cluecode/data/ics/ppp-pppd/utils.c.yml index c0fbbae282f..8a59adf6998 100644 --- a/tests/cluecode/data/ics/ppp-pppd/utils.c.yml +++ b/tests/cluecode/data/ics/ppp-pppd/utils.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Paul Mackerras count: 1 +allrights: + - Copyright (c) 1999-2002 Paul Mackerras. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/proguard-src-proguard-gui/GUIResources.properties.yml b/tests/cluecode/data/ics/proguard-src-proguard-gui/GUIResources.properties.yml index 1edbcd44985..38e96adeb7e 100644 --- a/tests/cluecode/data/ics/proguard-src-proguard-gui/GUIResources.properties.yml +++ b/tests/cluecode/data/ics/proguard-src-proguard-gui/GUIResources.properties.yml @@ -10,3 +10,6 @@ holders: holders_summary: - value: Eric Lafortune count: 1 +allrights: + - Copyright (c) 2002-2009 Eric Lafortune (eric@graphics.cornell.edu) + - Copyright (c) 2002-2009. \ No newline at end of file diff --git a/tests/cluecode/data/ics/proguard/NOTICE.yml b/tests/cluecode/data/ics/proguard/NOTICE.yml index 749d5b067b7..44d69390de5 100644 --- a/tests/cluecode/data/ics/proguard/NOTICE.yml +++ b/tests/cluecode/data/ics/proguard/NOTICE.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Eric Lafortune count: 1 +allrights: + - Copyright (c) 2002-2009 Eric Lafortune. + - 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/protobuf-editors/proto.vim.yml b/tests/cluecode/data/ics/protobuf-editors/proto.vim.yml index 7a73bfbd2e1..b738b560c52 100644 --- a/tests/cluecode/data/ics/protobuf-editors/proto.vim.yml +++ b/tests/cluecode/data/ics/protobuf-editors/proto.vim.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/protobuf-gtest-scons/SConscript.yml b/tests/cluecode/data/ics/protobuf-gtest-scons/SConscript.yml index 7a73bfbd2e1..c5514c0212d 100644 --- a/tests/cluecode/data/ics/protobuf-gtest-scons/SConscript.yml +++ b/tests/cluecode/data/ics/protobuf-gtest-scons/SConscript.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/protobuf-java-src-main-java-com-google-protobuf/AbstractMessage.java.yml b/tests/cluecode/data/ics/protobuf-java-src-main-java-com-google-protobuf/AbstractMessage.java.yml index 7a73bfbd2e1..b738b560c52 100644 --- a/tests/cluecode/data/ics/protobuf-java-src-main-java-com-google-protobuf/AbstractMessage.java.yml +++ b/tests/cluecode/data/ics/protobuf-java-src-main-java-com-google-protobuf/AbstractMessage.java.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/protobuf-src-google-protobuf-compiler-javamicro/javamicro_params.h.yml b/tests/cluecode/data/ics/protobuf-src-google-protobuf-compiler-javamicro/javamicro_params.h.yml index fd28a945063..5911dd4246f 100644 --- a/tests/cluecode/data/ics/protobuf-src-google-protobuf-compiler-javamicro/javamicro_params.h.yml +++ b/tests/cluecode/data/ics/protobuf-src-google-protobuf-compiler-javamicro/javamicro_params.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/protobuf-src-google-protobuf-io/tokenizer.cc.yml b/tests/cluecode/data/ics/protobuf-src-google-protobuf-io/tokenizer.cc.yml index 7a73bfbd2e1..b738b560c52 100644 --- a/tests/cluecode/data/ics/protobuf-src-google-protobuf-io/tokenizer.cc.yml +++ b/tests/cluecode/data/ics/protobuf-src-google-protobuf-io/tokenizer.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/protobuf-src-google-protobuf-stubs/structurally_valid.cc.yml b/tests/cluecode/data/ics/protobuf-src-google-protobuf-stubs/structurally_valid.cc.yml index 3494c22524f..146586ce08e 100644 --- a/tests/cluecode/data/ics/protobuf-src-google-protobuf-stubs/structurally_valid.cc.yml +++ b/tests/cluecode/data/ics/protobuf-src-google-protobuf-stubs/structurally_valid.cc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright 2005-2008 Google Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-audio/mixeng.c.yml b/tests/cluecode/data/ics/qemu-audio/mixeng.c.yml index 0618ba5932a..68a63adca2e 100644 --- a/tests/cluecode/data/ics/qemu-audio/mixeng.c.yml +++ b/tests/cluecode/data/ics/qemu-audio/mixeng.c.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Vassili Karpov count: 1 +allrights: + - Copyright (c) 2004-2005 Vassili Karpov + - Copyright (c) 1998 Fabrice Bellard + - Copyright 1998 Fabrice Bellard. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.c.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.c.yml index 35c85811840..54820d518ae 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.c.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Sam Lantinga count: 1 +allrights: + - Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga + - Copyright (c) Copyright 2002 Apple Computer, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.h.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.h.yml index b2b79b932d2..51278549cc4 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.h.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-cdrom-macosx/SDLOSXCAGuard.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Sam Lantinga count: 1 +allrights: + - Copyright (c) 1997-2004 Sam Lantinga + - Copyright (c) Copyright 2002 Apple Computer, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-timer-macos/FastTimes.c.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-timer-macos/FastTimes.c.yml index db88368cc4f..a9c40fc28d7 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-timer-macos/FastTimes.c.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-timer-macos/FastTimes.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Matt Slot count: 1 +allrights: + - Copyright (c) Matt Slot, 1999-2000. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-Xv/Xvlibint.h.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-Xv/Xvlibint.h.yml index 2f17a024480..25204ba5003 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-Xv/Xvlibint.h.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-Xv/Xvlibint.h.yml @@ -12,3 +12,5 @@ holders_summary: - value: Digital Equipment Corporation, Maynard, Massachusetts, and the Massachusetts Institute of Technology, Cambridge, Massachusetts count: 1 +allrights: + - Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts, and the Massachusetts Institute of Technology, Cambridge, Massachusetts. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/Xv.h.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/Xv.h.yml index cde6ba9ce73..0656ed25a3f 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/Xv.h.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/Xv.h.yml @@ -12,3 +12,5 @@ holders_summary: - value: Digital Equipment Corporation, Maynard, Massachusetts, and the Massachusetts Institute of Technology, Cambridge, Massachusetts count: 1 +allrights: + - Copyright 1991 by Digital Equipment Corporation, Maynard, Massachusetts, and the Massachusetts Institute of Technology, Cambridge, Massachusetts. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/panoramiXext.h.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/panoramiXext.h.yml index b3b34510664..896c41f3113 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/panoramiXext.h.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/panoramiXext.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Digital Equipment Corporation, Maynard, Massachusetts count: 1 +allrights: + - Copyright (c) 1991, 1997 Digital Equipment Corporation, Maynard, Massachusetts. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/xme.h.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/xme.h.yml index b4834749c2f..49d9d619c99 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/xme.h.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-Xext-extensions/xme.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Xi Graphics, Inc. count: 1 +allrights: + - Copyright 1993-2001 by Xi Graphics, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-fbcon/riva_mmio.h.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-fbcon/riva_mmio.h.yml index c168e82a94a..14f7151933b 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-fbcon/riva_mmio.h.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-fbcon/riva_mmio.h.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: NVIDIA, Corporation count: 2 +allrights: + - Copyright 1993-1999 NVIDIA, Corporation. All rights reserved. + - Copyright 1993-1999 NVIDIA, Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-maccommon/SDL_macwm.c.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-maccommon/SDL_macwm.c.yml index d4c8c6e85f0..1c456311743 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-maccommon/SDL_macwm.c.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video-maccommon/SDL_macwm.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Sam Lantinga count: 1 +allrights: + - Copyright (c) 1997-2006 Sam Lantinga + - Copyright (c) 1999 Apple Computer, Inc., All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video/SDL_yuv_sw.c.yml b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video/SDL_yuv_sw.c.yml index 98c0ead2c63..8ae94ea4739 100644 --- a/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video/SDL_yuv_sw.c.yml +++ b/tests/cluecode/data/ics/qemu-distrib-sdl-1.2.12-src-video/SDL_yuv_sw.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1997-2006 Sam Lantinga + - Copyright (c) 1995 The Regents of the University of California. All rights reserved. + - Copyright (c) 1995 Erik Corry All rights reserved. + - Copyright (c) 1995 Brown University. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/compress.c.yml b/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/compress.c.yml index 8b6fd6ee526..430013940a4 100644 --- a/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/compress.c.yml +++ b/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/compress.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2003 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/deflate.c.yml b/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/deflate.c.yml index d279cd1cc03..409f1517662 100644 --- a/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/deflate.c.yml +++ b/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/deflate.c.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Jean-loup Gailly count: 2 +allrights: + - Copyright (c) 1995-2005 Jean-loup Gailly. + - Copyright 1995-2005 Jean-loup Gailly \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/gzio.c.yml b/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/gzio.c.yml index e46e3f037f6..32808b9155f 100644 --- a/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/gzio.c.yml +++ b/tests/cluecode/data/ics/qemu-distrib-zlib-1.2.3/gzio.c.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/qemu-elff/dwarf.h.yml b/tests/cluecode/data/ics/qemu-elff/dwarf.h.yml index 42f8b4bd54b..e483db4ec53 100644 --- a/tests/cluecode/data/ics/qemu-elff/dwarf.h.yml +++ b/tests/cluecode/data/ics/qemu-elff/dwarf.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Sun Microsystems count: 1 +allrights: + - Copyright (c) 2000,2001,2003,2004,2005,2006 Silicon Graphics, Inc. All Rights Reserved. + - Portions Copyright 2002,2007 Sun Microsystems, Inc. All rights reserved. + - Portions Copyright 2007-2009 David Anderson. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-hw/arm-misc.h.yml b/tests/cluecode/data/ics/qemu-hw/arm-misc.h.yml index 42a4066dee8..61615ca8df6 100644 --- a/tests/cluecode/data/ics/qemu-hw/arm-misc.h.yml +++ b/tests/cluecode/data/ics/qemu-hw/arm-misc.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: CodeSourcery count: 1 +allrights: + - Copyright (c) 2006 CodeSourcery. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-hw/armv7m.c.yml b/tests/cluecode/data/ics/qemu-hw/armv7m.c.yml index 0603767ffdb..65ab5758591 100644 --- a/tests/cluecode/data/ics/qemu-hw/armv7m.c.yml +++ b/tests/cluecode/data/ics/qemu-hw/armv7m.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: CodeSourcery count: 1 +allrights: + - Copyright (c) 2006-2007 CodeSourcery. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-hw/irq.c.yml b/tests/cluecode/data/ics/qemu-hw/irq.c.yml index d819d91f180..0eaf79f29e0 100644 --- a/tests/cluecode/data/ics/qemu-hw/irq.c.yml +++ b/tests/cluecode/data/ics/qemu-hw/irq.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: CodeSourcery count: 1 +allrights: + - Copyright (c) 2007 CodeSourcery. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-hw/sd.h.yml b/tests/cluecode/data/ics/qemu-hw/sd.h.yml index 90a003e3f91..0ec6edb92a9 100644 --- a/tests/cluecode/data/ics/qemu-hw/sd.h.yml +++ b/tests/cluecode/data/ics/qemu-hw/sd.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Pierre Ossman count: 1 +allrights: + - Copyright (c) 2005-2007 Pierre Ossman, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/COPYRIGHT.yml b/tests/cluecode/data/ics/qemu-slirp/COPYRIGHT.yml index 10c06c67a2d..28837fde440 100644 --- a/tests/cluecode/data/ics/qemu-slirp/COPYRIGHT.yml +++ b/tests/cluecode/data/ics/qemu-slirp/COPYRIGHT.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Danny Gasparovski count: 2 +allrights: + - Danny Gasparovski. Copyright (c), 1995,1996 All Rights Reserved. + - Copyright (c) 1995,1996 Danny Gasparovski. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/cksum.c.yml b/tests/cluecode/data/ics/qemu-slirp/cksum.c.yml index 2ba422d667a..bee9cc8390d 100644 --- a/tests/cluecode/data/ics/qemu-slirp/cksum.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/cksum.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1992, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/debug.c.yml b/tests/cluecode/data/ics/qemu-slirp/debug.c.yml index 8765cf4eb22..03cf8f65d14 100644 --- a/tests/cluecode/data/ics/qemu-slirp/debug.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/debug.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Kelly Price count: 1 +allrights: + - Copyright (c) 1995 Danny Gasparovski. + - Portions copyright (c) 2000 Kelly Price. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/debug.h.yml b/tests/cluecode/data/ics/qemu-slirp/debug.h.yml index 08a839d4218..c40332ef338 100644 --- a/tests/cluecode/data/ics/qemu-slirp/debug.h.yml +++ b/tests/cluecode/data/ics/qemu-slirp/debug.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Danny Gasparovski count: 1 +allrights: + - Copyright (c) 1995 Danny Gasparovski. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/ip_icmp.c.yml b/tests/cluecode/data/ics/qemu-slirp/ip_icmp.c.yml index 8883fd60636..15c7a90e38b 100644 --- a/tests/cluecode/data/ics/qemu-slirp/ip_icmp.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/ip_icmp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986, 1988, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/ip_input.c.yml b/tests/cluecode/data/ics/qemu-slirp/ip_input.c.yml index c27ed920d0a..49d44c90533 100644 --- a/tests/cluecode/data/ics/qemu-slirp/ip_input.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/ip_input.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986, 1988, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 1995 Danny Gasparovski. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/ip_output.c.yml b/tests/cluecode/data/ics/qemu-slirp/ip_output.c.yml index 71522786d73..77d0f42f1a4 100644 --- a/tests/cluecode/data/ics/qemu-slirp/ip_output.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/ip_output.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986, 1988, 1990, 1993 The Regents of the University of California. All rights reserved. + - Copyright (c) 1995 Danny Gasparovski. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/misc.c.yml b/tests/cluecode/data/ics/qemu-slirp/misc.c.yml index 08a839d4218..c40332ef338 100644 --- a/tests/cluecode/data/ics/qemu-slirp/misc.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/misc.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Danny Gasparovski count: 1 +allrights: + - Copyright (c) 1995 Danny Gasparovski. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/tcp_input.c.yml b/tests/cluecode/data/ics/qemu-slirp/tcp_input.c.yml index 2ffbfe777e2..a55ea392779 100644 --- a/tests/cluecode/data/ics/qemu-slirp/tcp_input.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/tcp_input.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994 The Regents of the University of California. All rights reserved. + - Copyright (c) 1995 Danny Gasparovski. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/tcp_timer.c.yml b/tests/cluecode/data/ics/qemu-slirp/tcp_timer.c.yml index 059a04e50c0..4f247dcd28a 100644 --- a/tests/cluecode/data/ics/qemu-slirp/tcp_timer.c.yml +++ b/tests/cluecode/data/ics/qemu-slirp/tcp_timer.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986, 1988, 1990, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-slirp/tcp_var.h.yml b/tests/cluecode/data/ics/qemu-slirp/tcp_var.h.yml index 68e47e67b9c..79e11485174 100644 --- a/tests/cluecode/data/ics/qemu-slirp/tcp_var.h.yml +++ b/tests/cluecode/data/ics/qemu-slirp/tcp_var.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, 1994 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu-target-arm/neon_helper.c.yml b/tests/cluecode/data/ics/qemu-target-arm/neon_helper.c.yml index 62fc4f7ea72..d259fa6bbae 100644 --- a/tests/cluecode/data/ics/qemu-target-arm/neon_helper.c.yml +++ b/tests/cluecode/data/ics/qemu-target-arm/neon_helper.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: CodeSourcery count: 1 +allrights: + - Copyright (c) 2007, 2008 CodeSourcery. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/arm-semi.c.yml b/tests/cluecode/data/ics/qemu/arm-semi.c.yml index bc4660a84e1..617f6ff82c2 100644 --- a/tests/cluecode/data/ics/qemu/arm-semi.c.yml +++ b/tests/cluecode/data/ics/qemu/arm-semi.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: CodeSourcery count: 1 +allrights: + - Copyright (c) 2005, 2007 CodeSourcery. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/d3des.c.yml b/tests/cluecode/data/ics/qemu/d3des.c.yml index c22436fcb4d..e58ff85d26e 100644 --- a/tests/cluecode/data/ics/qemu/d3des.c.yml +++ b/tests/cluecode/data/ics/qemu/d3des.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Richard Outerbridge count: 1 +allrights: + - Copyright (c) 1999 AT&T Laboratories Cambridge. All Rights Reserved. + - Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/d3des.h.yml b/tests/cluecode/data/ics/qemu/d3des.h.yml index c22436fcb4d..b2843d4753e 100644 --- a/tests/cluecode/data/ics/qemu/d3des.h.yml +++ b/tests/cluecode/data/ics/qemu/d3des.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Richard Outerbridge count: 1 +allrights: + - Copyright (c) 1999 AT&T Laboratories Cambridge. All Rights Reserved. + - Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/device_tree.c.yml b/tests/cluecode/data/ics/qemu/device_tree.c.yml index dce7e561ff5..7186250bf49 100644 --- a/tests/cluecode/data/ics/qemu/device_tree.c.yml +++ b/tests/cluecode/data/ics/qemu/device_tree.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: IBM Corporation count: 1 +allrights: + - Copyright 2008 IBM Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/loader.c.yml b/tests/cluecode/data/ics/qemu/loader.c.yml index 3acceaa5f43..34e75b7206b 100644 --- a/tests/cluecode/data/ics/qemu/loader.c.yml +++ b/tests/cluecode/data/ics/qemu/loader.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Wolfgang Denk, DENX Software Engineering count: 1 +allrights: + - Copyright (c) 2006 Fabrice Bellard + - (c) Copyright 2008 Semihalf + - (c) Copyright 2000-2005 Wolfgang Denk, DENX Software Engineering, wd@denx.de. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/softmmu-semi.h.yml b/tests/cluecode/data/ics/qemu/softmmu-semi.h.yml index d819d91f180..0eaf79f29e0 100644 --- a/tests/cluecode/data/ics/qemu/softmmu-semi.h.yml +++ b/tests/cluecode/data/ics/qemu/softmmu-semi.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: CodeSourcery count: 1 +allrights: + - Copyright (c) 2007 CodeSourcery. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/sys-tree.h.yml b/tests/cluecode/data/ics/qemu/sys-tree.h.yml index 596c287996a..38f3f4da492 100644 --- a/tests/cluecode/data/ics/qemu/sys-tree.h.yml +++ b/tests/cluecode/data/ics/qemu/sys-tree.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Niels Provos count: 1 +allrights: + - Copyright 2002 Niels Provos All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/qemu/uboot_image.h.yml b/tests/cluecode/data/ics/qemu/uboot_image.h.yml index 194c51f1444..be7755bbd38 100644 --- a/tests/cluecode/data/ics/qemu/uboot_image.h.yml +++ b/tests/cluecode/data/ics/qemu/uboot_image.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Wolfgang Denk, DENX Software Engineering count: 1 +allrights: + - (c) Copyright 2000-2005 Wolfgang Denk, DENX Software Engineering, wd@denx.de. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-client/cd_linux.c.yml b/tests/cluecode/data/ics/quake-quake-src-QW-client/cd_linux.c.yml index ea4cbe93d95..5406b453fb7 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-client/cd_linux.c.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-client/cd_linux.c.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Id Software, Inc. count: 2 +allrights: + - Copyright (c) 1996-1997 Id Software, Inc. + - (c) 1996 Id Software, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-client/exitscrn.txt.yml b/tests/cluecode/data/ics/quake-quake-src-QW-client/exitscrn.txt.yml index eb4dd9b6f9e..1f0a6654f02 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-client/exitscrn.txt.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-client/exitscrn.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Id Software, inc. count: 1 +allrights: + - (c) 1996, 1997 Id Software, inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-client/md4.c.yml b/tests/cluecode/data/ics/quake-quake-src-QW-client/md4.c.yml index 3f30915713b..069e22fb8ad 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-client/md4.c.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-client/md4.c.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Id Software, Inc. count: 1 +allrights: + - Copyright (c) 1996-1997 Id Software, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 1990-2, RSA Data Security, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-client/menu.c.yml b/tests/cluecode/data/ics/quake-quake-src-QW-client/menu.c.yml index 6bea267b1ba..14cc04b35c9 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-client/menu.c.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-client/menu.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Id Software, Inc. count: 1 +allrights: + - Copyright (c) 1996-1997 Id Software, Inc. + - (c) 1996 Id Software 0Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-client/qwcl.plg.yml b/tests/cluecode/data/ics/quake-quake-src-QW-client/qwcl.plg.yml index 4a0b0c38d14..c18ba24886e 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-client/qwcl.plg.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-client/qwcl.plg.yml @@ -75,3 +75,38 @@ holders: holders_summary: - value: Microsoft count: 34 +allrights: + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/d3d.h.yml b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/d3d.h.yml index 03f1bd498d4..599253d9208 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/d3d.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/d3d.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Microsoft count: 1 +allrights: + - Copyright (c) 1995-1996 Microsoft Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/ddraw.h.yml b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/ddraw.h.yml index d9e2917115a..1967f3a41e4 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/ddraw.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/ddraw.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Microsoft count: 1 +allrights: + - Copyright (c) 1994-1996 Microsoft Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dinput.h.yml b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dinput.h.yml index 44fd7847337..ad81d8d894c 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dinput.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dinput.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Microsoft count: 1 +allrights: + - Copyright (c) 1996 Microsoft Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dplay.h.yml b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dplay.h.yml index 4af00dce408..624187ab6fc 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dplay.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dplay.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Microsoft count: 1 +allrights: + - Copyright (c) 1994-1995 Microsoft Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dsound.h.yml b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dsound.h.yml index 442fea1e051..5b53c3176a7 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dsound.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-dxsdk-sdk-inc/dsound.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Microsoft count: 1 +allrights: + - Copyright (c) 1995,1996 Microsoft Corporation. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/debug.h.yml b/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/debug.h.yml index a2c79b90d24..649d3d771c3 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/debug.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/debug.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SciTech Software count: 1 +allrights: + - Copyright (c) 1996 SciTech Software All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/mgldos.h.yml b/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/mgldos.h.yml index a2c79b90d24..76904e91817 100644 --- a/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/mgldos.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-QW-scitech-include/mgldos.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SciTech Software count: 1 +allrights: + - Copyright (c) 1996 SciTech Software. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-WinQuake/3dfx.txt.yml b/tests/cluecode/data/ics/quake-quake-src-WinQuake/3dfx.txt.yml index de49c73a1c5..485a9ac62d3 100644 --- a/tests/cluecode/data/ics/quake-quake-src-WinQuake/3dfx.txt.yml +++ b/tests/cluecode/data/ics/quake-quake-src-WinQuake/3dfx.txt.yml @@ -9,3 +9,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/ics/quake-quake-src-WinQuake/WinQuake.plg.yml b/tests/cluecode/data/ics/quake-quake-src-WinQuake/WinQuake.plg.yml index 91e2bdb875b..5ff5b2ad164 100644 --- a/tests/cluecode/data/ics/quake-quake-src-WinQuake/WinQuake.plg.yml +++ b/tests/cluecode/data/ics/quake-quake-src-WinQuake/WinQuake.plg.yml @@ -79,3 +79,40 @@ holders: holders_summary: - value: Microsoft count: 36 +allrights: + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. + - Copyright (c) Microsoft Corp 1984-1998. All rights reserved. + - Copyright (c) Microsoft Corp 1981-1993. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-WinQuake/cl_input.cpp.yml b/tests/cluecode/data/ics/quake-quake-src-WinQuake/cl_input.cpp.yml index ea4cbe93d95..5406b453fb7 100644 --- a/tests/cluecode/data/ics/quake-quake-src-WinQuake/cl_input.cpp.yml +++ b/tests/cluecode/data/ics/quake-quake-src-WinQuake/cl_input.cpp.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Id Software, Inc. count: 2 +allrights: + - Copyright (c) 1996-1997 Id Software, Inc. + - (c) 1996 Id Software, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/quake-quake-src-WinQuake/mpdosock.h.yml b/tests/cluecode/data/ics/quake-quake-src-WinQuake/mpdosock.h.yml index 187e3df369c..0c1ebfd8e05 100644 --- a/tests/cluecode/data/ics/quake-quake-src-WinQuake/mpdosock.h.yml +++ b/tests/cluecode/data/ics/quake-quake-src-WinQuake/mpdosock.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993-1995, Microsoft Corp. All rights reserved. + - Copyright (c) 1982-1986 Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/skia-include-ports/SkHarfBuzzFont.h.yml b/tests/cluecode/data/ics/skia-include-ports/SkHarfBuzzFont.h.yml index f466e613666..02f723a1614 100644 --- a/tests/cluecode/data/ics/skia-include-ports/SkHarfBuzzFont.h.yml +++ b/tests/cluecode/data/ics/skia-include-ports/SkHarfBuzzFont.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Google count: 1 +allrights: + - Copyright (c) 2009, Google Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/skia-include-views/SkOSWindow_wxwidgets.h.yml b/tests/cluecode/data/ics/skia-include-views/SkOSWindow_wxwidgets.h.yml index 97683f16596..d70c740dc59 100644 --- a/tests/cluecode/data/ics/skia-include-views/SkOSWindow_wxwidgets.h.yml +++ b/tests/cluecode/data/ics/skia-include-views/SkOSWindow_wxwidgets.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: MyCompanyName count: 1 +allrights: + - Copyright (c) 2006 The Android Open Source Project + - Copyright 2005 MyCompanyName . All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/skia-src-opts/opts_check_arm.cpp.yml b/tests/cluecode/data/ics/skia-src-opts/opts_check_arm.cpp.yml index 755eb17bc5f..f5b87408ed8 100644 --- a/tests/cluecode/data/ics/skia-src-opts/opts_check_arm.cpp.yml +++ b/tests/cluecode/data/ics/skia-src-opts/opts_check_arm.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Code Aurora Forum count: 1 +allrights: + - Copyright (c) 2010, Code Aurora Forum. All rights reserved. + - Copyright 2006-2010, The Android Open Source Project \ No newline at end of file diff --git a/tests/cluecode/data/ics/skia-tests/FillPathTest.cpp.yml b/tests/cluecode/data/ics/skia-tests/FillPathTest.cpp.yml index 516f6c00973..e0322e9c79c 100644 --- a/tests/cluecode/data/ics/skia-tests/FillPathTest.cpp.yml +++ b/tests/cluecode/data/ics/skia-tests/FillPathTest.cpp.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/sonivox-arm-fm-22k-lib_src/eas_fmsndlib.c.yml b/tests/cluecode/data/ics/sonivox-arm-fm-22k-lib_src/eas_fmsndlib.c.yml index 68100bb7789..1e034e5b9b5 100644 --- a/tests/cluecode/data/ics/sonivox-arm-fm-22k-lib_src/eas_fmsndlib.c.yml +++ b/tests/cluecode/data/ics/sonivox-arm-fm-22k-lib_src/eas_fmsndlib.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Sonic Network, Inc. count: 1 +allrights: + - (c) Copyright 2005 Sonic Network, Inc. All Rights Reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp-crypto-cipher/aes.c.yml b/tests/cluecode/data/ics/srtp-crypto-cipher/aes.c.yml index e32eddba4f3..d5fa0583b5b 100644 --- a/tests/cluecode/data/ics/srtp-crypto-cipher/aes.c.yml +++ b/tests/cluecode/data/ics/srtp-crypto-cipher/aes.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Cisco Systems count: 1 +allrights: + - Copyright (c) 2001-2006, Cisco Systems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp-crypto-hash/hmac.c.yml b/tests/cluecode/data/ics/srtp-crypto-hash/hmac.c.yml index ac8236b2b01..9d84b13571d 100644 --- a/tests/cluecode/data/ics/srtp-crypto-hash/hmac.c.yml +++ b/tests/cluecode/data/ics/srtp-crypto-hash/hmac.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Cisco Systems count: 1 +allrights: + - Copyright (c) 2001-2006 Cisco Systems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp-crypto-include/auth.h.yml b/tests/cluecode/data/ics/srtp-crypto-include/auth.h.yml index e32eddba4f3..d5fa0583b5b 100644 --- a/tests/cluecode/data/ics/srtp-crypto-include/auth.h.yml +++ b/tests/cluecode/data/ics/srtp-crypto-include/auth.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Cisco Systems count: 1 +allrights: + - Copyright (c) 2001-2006, Cisco Systems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp-crypto-include/kernel_compat.h.yml b/tests/cluecode/data/ics/srtp-crypto-include/kernel_compat.h.yml index 5130fa92c27..d51f1e60173 100644 --- a/tests/cluecode/data/ics/srtp-crypto-include/kernel_compat.h.yml +++ b/tests/cluecode/data/ics/srtp-crypto-include/kernel_compat.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Ingate Systems AB count: 1 +allrights: + - Copyright (c) 2005 Ingate Systems AB All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp-doc/intro.txt.yml b/tests/cluecode/data/ics/srtp-doc/intro.txt.yml index 449777d6f11..94ca078cbb8 100644 --- a/tests/cluecode/data/ics/srtp-doc/intro.txt.yml +++ b/tests/cluecode/data/ics/srtp-doc/intro.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Cisco Systems count: 1 +allrights: + - Copyright (c) 2001-2005 Cisco Systems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp-doc/rfc3711.txt.yml b/tests/cluecode/data/ics/srtp-doc/rfc3711.txt.yml index ba36c4ea930..758820ad073 100644 --- a/tests/cluecode/data/ics/srtp-doc/rfc3711.txt.yml +++ b/tests/cluecode/data/ics/srtp-doc/rfc3711.txt.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: The Internet Society count: 2 +allrights: + - Copyright (c) The Internet Society (2004). All Rights Reserved. + - Copyright (c) The Internet Society (2004). \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp-include/ekt.h.yml b/tests/cluecode/data/ics/srtp-include/ekt.h.yml index 449777d6f11..94ca078cbb8 100644 --- a/tests/cluecode/data/ics/srtp-include/ekt.h.yml +++ b/tests/cluecode/data/ics/srtp-include/ekt.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Cisco Systems count: 1 +allrights: + - Copyright (c) 2001-2005 Cisco Systems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/srtp/LICENSE.yml b/tests/cluecode/data/ics/srtp/LICENSE.yml index ac8236b2b01..9d84b13571d 100644 --- a/tests/cluecode/data/ics/srtp/LICENSE.yml +++ b/tests/cluecode/data/ics/srtp/LICENSE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Cisco Systems count: 1 +allrights: + - Copyright (c) 2001-2006 Cisco Systems, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/stlport-stlport-stl/type_traits.h.yml b/tests/cluecode/data/ics/stlport-stlport-stl/type_traits.h.yml index c64605f1e3c..4f6a04ab31a 100644 --- a/tests/cluecode/data/ics/stlport-stlport-stl/type_traits.h.yml +++ b/tests/cluecode/data/ics/stlport-stlport-stl/type_traits.h.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Silicon Graphics Computer Systems, Inc. count: 1 +allrights: + - Copyright (c) 1996,1997 Silicon Graphics Computer Systems, Inc. + - Copyright (c) 1997 Moscow Center for SPARC Technology + - Copyright (c) 1999 Boris Fomitchev + - Copyright 2000 Adobe Systems Incorporated and others. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/stlport-test-eh/mwerks_console_OS_X.c.yml b/tests/cluecode/data/ics/stlport-test-eh/mwerks_console_OS_X.c.yml index dba998726ff..cc68ff869c1 100644 --- a/tests/cluecode/data/ics/stlport-test-eh/mwerks_console_OS_X.c.yml +++ b/tests/cluecode/data/ics/stlport-test-eh/mwerks_console_OS_X.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Metrowerks Corporation count: 1 +allrights: + - Copyright (c) 1995-2002 Metrowerks Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/stlport/LICENSE.yml b/tests/cluecode/data/ics/stlport/LICENSE.yml index 8641181c0c6..ff6e239201e 100644 --- a/tests/cluecode/data/ics/stlport/LICENSE.yml +++ b/tests/cluecode/data/ics/stlport/LICENSE.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Silicon Graphics Computer Systems, Inc. count: 1 +allrights: + - Copyright 1999,2000 Boris Fomitchev + - Copyright 1994 Hewlett-Packard Company + - Copyright 1996,97 Silicon Graphics Computer Systems, Inc. + - Copyright 1997 Moscow Center for SPARC Technology. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace-linux/dummy.h.yml b/tests/cluecode/data/ics/strace-linux/dummy.h.yml index 679ca1aa5a4..d54c41cb98f 100644 --- a/tests/cluecode/data/ics/strace-linux/dummy.h.yml +++ b/tests/cluecode/data/ics/strace-linux/dummy.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993, 1994, 1995 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace-linux/ioctlent.sh.yml b/tests/cluecode/data/ics/strace-linux/ioctlent.sh.yml index 02f4913bb0d..52f24c1df68 100644 --- a/tests/cluecode/data/ics/strace-linux/ioctlent.sh.yml +++ b/tests/cluecode/data/ics/strace-linux/ioctlent.sh.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Wichert Akkerman count: 1 +allrights: + - Copyright (c) 2001 Wichert Akkerman All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace-strace-linux-ia64/syscallent.h.yml b/tests/cluecode/data/ics/strace-strace-linux-ia64/syscallent.h.yml index 1cfef5477d2..f3dcd2fac97 100644 --- a/tests/cluecode/data/ics/strace-strace-linux-ia64/syscallent.h.yml +++ b/tests/cluecode/data/ics/strace-strace-linux-ia64/syscallent.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Hewlett-Packard Co David Mosberger-Tang count: 1 +allrights: + - Copyright (c) 1999, 2001 Hewlett-Packard Co David Mosberger-Tang All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace-strace-linux-mips/ioctlent.sh.yml b/tests/cluecode/data/ics/strace-strace-linux-mips/ioctlent.sh.yml index 062f6c0ffac..50a5e7b624c 100644 --- a/tests/cluecode/data/ics/strace-strace-linux-mips/ioctlent.sh.yml +++ b/tests/cluecode/data/ics/strace-strace-linux-mips/ioctlent.sh.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995 Rick Sladkey All rights reserved. + - Copyright (c) 1995, 1996 Michael Elizabeth Chastain All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace-strace-linux-sparc/syscall.h.yml b/tests/cluecode/data/ics/strace-strace-linux-sparc/syscall.h.yml index 5bb6990e52d..0d73a4a373a 100644 --- a/tests/cluecode/data/ics/strace-strace-linux-sparc/syscall.h.yml +++ b/tests/cluecode/data/ics/strace-strace-linux-sparc/syscall.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/COPYRIGHT.yml b/tests/cluecode/data/ics/strace/COPYRIGHT.yml index aa467dd1115..8ae48d25cba 100644 --- a/tests/cluecode/data/ics/strace/COPYRIGHT.yml +++ b/tests/cluecode/data/ics/strace/COPYRIGHT.yml @@ -32,3 +32,10 @@ holders_summary: notes: | this is redundant and rare junk except in BSD and is not detected COPYRIGHT,v 1.3 2002/03/31 18:43:00 wichert +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993 Ulrich Pegelow + - Copyright (c) 1995, 1996 Michael Elizabeth Chastain + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey + - Copyright (c) 1998-2001 Wichert Akkerman All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/bjm.c.yml b/tests/cluecode/data/ics/strace/bjm.c.yml index abe4c595087..33e784b9ef0 100644 --- a/tests/cluecode/data/ics/strace/bjm.c.yml +++ b/tests/cluecode/data/ics/strace/bjm.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Wichert Akkerman count: 1 +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey + - Copyright (c) 1996-1999 Wichert Akkerman All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/defs.h.yml b/tests/cluecode/data/ics/strace/defs.h.yml index 51bfef96b4c..173c75154f3 100644 --- a/tests/cluecode/data/ics/strace/defs.h.yml +++ b/tests/cluecode/data/ics/strace/defs.h.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/errnoent.sh.yml b/tests/cluecode/data/ics/strace/errnoent.sh.yml index e2bd3dddea7..786f9d63560 100644 --- a/tests/cluecode/data/ics/strace/errnoent.sh.yml +++ b/tests/cluecode/data/ics/strace/errnoent.sh.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/ioctl.c.yml b/tests/cluecode/data/ics/strace/ioctl.c.yml index 18c780874dc..832cf12956b 100644 --- a/tests/cluecode/data/ics/strace/ioctl.c.yml +++ b/tests/cluecode/data/ics/strace/ioctl.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Wichert Akkerman count: 1 +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey + - Copyright (c) 1996-2001 Wichert Akkerman All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/ioctlsort.c.yml b/tests/cluecode/data/ics/strace/ioctlsort.c.yml index 6a1864ff63f..e10aa04f0c8 100644 --- a/tests/cluecode/data/ics/strace/ioctlsort.c.yml +++ b/tests/cluecode/data/ics/strace/ioctlsort.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993, 1994, 1995 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/ipc.c.yml b/tests/cluecode/data/ics/strace/ipc.c.yml index 180221886ee..0b29ce93070 100644 --- a/tests/cluecode/data/ics/strace/ipc.c.yml +++ b/tests/cluecode/data/ics/strace/ipc.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Wichert Akkerman count: 1 +allrights: + - Copyright (c) 1993 Ulrich Pegelow + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey + - Copyright (c) 1996-1999 Wichert Akkerman All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/net.c.yml b/tests/cluecode/data/ics/strace/net.c.yml index 01db202b85e..940878bbdd3 100644 --- a/tests/cluecode/data/ics/strace/net.c.yml +++ b/tests/cluecode/data/ics/strace/net.c.yml @@ -21,3 +21,8 @@ holders_summary: count: 1 - value: Wichert Akkerman count: 1 +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey + - Copyright (c) 1996-2000 Wichert Akkerman All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/proc.c.yml b/tests/cluecode/data/ics/strace/proc.c.yml index e2bd3dddea7..786f9d63560 100644 --- a/tests/cluecode/data/ics/strace/proc.c.yml +++ b/tests/cluecode/data/ics/strace/proc.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/signalent.sh.yml b/tests/cluecode/data/ics/strace/signalent.sh.yml index 369d92eabe7..c3dd59d1d8a 100644 --- a/tests/cluecode/data/ics/strace/signalent.sh.yml +++ b/tests/cluecode/data/ics/strace/signalent.sh.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1996 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/sock.c.yml b/tests/cluecode/data/ics/strace/sock.c.yml index c9006f94270..f09a7d7342e 100644 --- a/tests/cluecode/data/ics/strace/sock.c.yml +++ b/tests/cluecode/data/ics/strace/sock.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/strace.1.yml b/tests/cluecode/data/ics/strace/strace.1.yml index 51bfef96b4c..173c75154f3 100644 --- a/tests/cluecode/data/ics/strace/strace.1.yml +++ b/tests/cluecode/data/ics/strace/strace.1.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1991, 1992 Paul Kranenburg + - Copyright (c) 1993 Branko Lankester + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/stream.c.yml b/tests/cluecode/data/ics/strace/stream.c.yml index 1507242df38..4895b7dc1ab 100644 --- a/tests/cluecode/data/ics/strace/stream.c.yml +++ b/tests/cluecode/data/ics/strace/stream.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Wichert Akkerman count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey + - Copyright (c) 1996-1999 Wichert Akkerman All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/strace/syscallent.sh.yml b/tests/cluecode/data/ics/strace/syscallent.sh.yml index c9006f94270..f09a7d7342e 100644 --- a/tests/cluecode/data/ics/strace/syscallent.sh.yml +++ b/tests/cluecode/data/ics/strace/syscallent.sh.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Rick Sladkey count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/svox-pico-lib/picofftsg.c.yml b/tests/cluecode/data/ics/svox-pico-lib/picofftsg.c.yml index d67770e9dd4..4dd8176767c 100644 --- a/tests/cluecode/data/ics/svox-pico-lib/picofftsg.c.yml +++ b/tests/cluecode/data/ics/svox-pico-lib/picofftsg.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 1 - value: Takuya OOURA count: 1 +allrights: + - Copyright (c) 2008-2009 SVOX AG + - Copyright (c) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland All rights reserved. + - Copyright Takuya OOURA, 1996-2001 \ No newline at end of file diff --git a/tests/cluecode/data/ics/svox-pico-lib/picoos.c.yml b/tests/cluecode/data/ics/svox-pico-lib/picoos.c.yml index 9b6787283a0..9c3d7c526a1 100644 --- a/tests/cluecode/data/ics/svox-pico-lib/picoos.c.yml +++ b/tests/cluecode/data/ics/svox-pico-lib/picoos.c.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland count: 1 +allrights: + - Copyright (c) 2008-2009 SVOX AG + - Copyright (c) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland All rights reserved. + - (c) SVOX AG \ No newline at end of file diff --git a/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_source_files-textana-en-GB/en-GB_lexpos.utf.yml b/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_source_files-textana-en-GB/en-GB_lexpos.utf.yml index f28163bf65d..c8c2747ece2 100644 --- a/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_source_files-textana-en-GB/en-GB_lexpos.utf.yml +++ b/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_source_files-textana-en-GB/en-GB_lexpos.utf.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland count: 1 +allrights: + - Copyright (c) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland ! All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_tools_windows-tools/buildbin.sh.yml b/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_tools_windows-tools/buildbin.sh.yml index 87b39fbdf3e..b3099a8c127 100644 --- a/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_tools_windows-tools/buildbin.sh.yml +++ b/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding-PicoLingware_tools_windows-tools/buildbin.sh.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SVOX AG. count: 1 +allrights: + - Copyright (c) 2009 SVOX AG. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding/Readme.txt.yml b/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding/Readme.txt.yml index f28163bf65d..c8c2747ece2 100644 --- a/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding/Readme.txt.yml +++ b/tests/cluecode/data/ics/svox-pico_resources-tools-LingwareBuilding/Readme.txt.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland count: 1 +allrights: + - Copyright (c) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland ! All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tagsoup-src-org-ccil-cowan-tagsoup/AutoDetector.java.yml b/tests/cluecode/data/ics/tagsoup-src-org-ccil-cowan-tagsoup/AutoDetector.java.yml index cf1ae9df567..0e6a6aa0227 100644 --- a/tests/cluecode/data/ics/tagsoup-src-org-ccil-cowan-tagsoup/AutoDetector.java.yml +++ b/tests/cluecode/data/ics/tagsoup-src-org-ccil-cowan-tagsoup/AutoDetector.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: John Cowan count: 1 +allrights: + - Copyright 2002-2008 by John Cowan. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump-missing/inet_aton.c.yml b/tests/cluecode/data/ics/tcpdump-missing/inet_aton.c.yml index 8ae879bfd8d..b06063a63d6 100644 --- a/tests/cluecode/data/ics/tcpdump-missing/inet_aton.c.yml +++ b/tests/cluecode/data/ics/tcpdump-missing/inet_aton.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden) count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden). All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump-missing/inet_ntop.c.yml b/tests/cluecode/data/ics/tcpdump-missing/inet_ntop.c.yml index 5bb997fb1bc..963d3e20257 100644 --- a/tests/cluecode/data/ics/tcpdump-missing/inet_ntop.c.yml +++ b/tests/cluecode/data/ics/tcpdump-missing/inet_ntop.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden) count: 1 +allrights: + - Copyright (c) 1999 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden). All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/Makefile.in.yml b/tests/cluecode/data/ics/tcpdump/Makefile.in.yml index 9078088ca83..2b9a6907fc4 100644 --- a/tests/cluecode/data/ics/tcpdump/Makefile.in.yml +++ b/tests/cluecode/data/ics/tcpdump/Makefile.in.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/aclocal.m4.yml b/tests/cluecode/data/ics/tcpdump/aclocal.m4.yml index 2b2d0f18b53..693540fed2c 100644 --- a/tests/cluecode/data/ics/tcpdump/aclocal.m4.yml +++ b/tests/cluecode/data/ics/tcpdump/aclocal.m4.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998 The Regents of the University of California. All rights reserved. + - Copyright (c) 1999 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/addrtoname.c.yml b/tests/cluecode/data/ics/tcpdump/addrtoname.c.yml index 95aae285c32..6250bab538b 100644 --- a/tests/cluecode/data/ics/tcpdump/addrtoname.c.yml +++ b/tests/cluecode/data/ics/tcpdump/addrtoname.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/addrtoname.h.yml b/tests/cluecode/data/ics/tcpdump/addrtoname.h.yml index 6992d79edb1..9eb127bec1c 100644 --- a/tests/cluecode/data/ics/tcpdump/addrtoname.h.yml +++ b/tests/cluecode/data/ics/tcpdump/addrtoname.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/aodv.h.yml b/tests/cluecode/data/ics/tcpdump/aodv.h.yml index 3616995a016..7a9db76160f 100644 --- a/tests/cluecode/data/ics/tcpdump/aodv.h.yml +++ b/tests/cluecode/data/ics/tcpdump/aodv.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Bruce M. Simpson count: 1 +allrights: + - Copyright (c) 2003 Bruce M. Simpson All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/appletalk.h.yml b/tests/cluecode/data/ics/tcpdump/appletalk.h.yml index 0d6afc5e5b9..3b3c337829f 100644 --- a/tests/cluecode/data/ics/tcpdump/appletalk.h.yml +++ b/tests/cluecode/data/ics/tcpdump/appletalk.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/atm.h.yml b/tests/cluecode/data/ics/tcpdump/atm.h.yml index 455187f8fb5..e889b340b11 100644 --- a/tests/cluecode/data/ics/tcpdump/atm.h.yml +++ b/tests/cluecode/data/ics/tcpdump/atm.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Guy Harris count: 1 +allrights: + - Copyright (c) 2002 Guy Harris. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/bootp.h.yml b/tests/cluecode/data/ics/tcpdump/bootp.h.yml index 88fe14e8b87..1a4fca7714c 100644 --- a/tests/cluecode/data/ics/tcpdump/bootp.h.yml +++ b/tests/cluecode/data/ics/tcpdump/bootp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Carnegie Mellon count: 1 +allrights: + - Copyright 1988 by Carnegie Mellon. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/chdlc.h.yml b/tests/cluecode/data/ics/tcpdump/chdlc.h.yml index 3511fcf9138..b12cbb9de2b 100644 --- a/tests/cluecode/data/ics/tcpdump/chdlc.h.yml +++ b/tests/cluecode/data/ics/tcpdump/chdlc.h.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/cpack.c.yml b/tests/cluecode/data/ics/tcpdump/cpack.c.yml index 6e5d400e856..b39c2109933 100644 --- a/tests/cluecode/data/ics/tcpdump/cpack.c.yml +++ b/tests/cluecode/data/ics/tcpdump/cpack.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: David Young count: 1 +allrights: + - Copyright (c) 2003, 2004 David Young. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/decnet.h.yml b/tests/cluecode/data/ics/tcpdump/decnet.h.yml index b28a6193b53..f416482bb1e 100644 --- a/tests/cluecode/data/ics/tcpdump/decnet.h.yml +++ b/tests/cluecode/data/ics/tcpdump/decnet.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1992, 1994, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/decode_prefix.h.yml b/tests/cluecode/data/ics/tcpdump/decode_prefix.h.yml index 251f1cef34f..93710e63a75 100644 --- a/tests/cluecode/data/ics/tcpdump/decode_prefix.h.yml +++ b/tests/cluecode/data/ics/tcpdump/decode_prefix.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1999 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/enc.h.yml b/tests/cluecode/data/ics/tcpdump/enc.h.yml index 948fb71730d..1e1341cf1a6 100644 --- a/tests/cluecode/data/ics/tcpdump/enc.h.yml +++ b/tests/cluecode/data/ics/tcpdump/enc.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: John Ioannidis, Angelos D. Keromytis and Niels Provos count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, 1998 by John Ioannidis, Angelos D. Keromytis and Niels Provos. + - Copyright (c) 2001, Angelos D. Keromytis. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/gmt2local.c.yml b/tests/cluecode/data/ics/tcpdump/gmt2local.c.yml index 1c47504871d..3afda61d3c1 100644 --- a/tests/cluecode/data/ics/tcpdump/gmt2local.c.yml +++ b/tests/cluecode/data/ics/tcpdump/gmt2local.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/icmp6.h.yml b/tests/cluecode/data/ics/tcpdump/icmp6.h.yml index 21cd807acf9..f330e95a761 100644 --- a/tests/cluecode/data/ics/tcpdump/icmp6.h.yml +++ b/tests/cluecode/data/ics/tcpdump/icmp6.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. + - 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/tcpdump/interface.h.yml b/tests/cluecode/data/ics/tcpdump/interface.h.yml index 42390dbbb01..4c1cfe2de0a 100644 --- a/tests/cluecode/data/ics/tcpdump/interface.h.yml +++ b/tests/cluecode/data/ics/tcpdump/interface.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988-2002 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/ipproto.h.yml b/tests/cluecode/data/ics/tcpdump/ipproto.h.yml index 532a96d8a8b..9adbfa068ea 100644 --- a/tests/cluecode/data/ics/tcpdump/ipproto.h.yml +++ b/tests/cluecode/data/ics/tcpdump/ipproto.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1982, 1986, 1990, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/l2tp.h.yml b/tests/cluecode/data/ics/tcpdump/l2tp.h.yml index ac0525347a2..6a61ef1d5fe 100644 --- a/tests/cluecode/data/ics/tcpdump/l2tp.h.yml +++ b/tests/cluecode/data/ics/tcpdump/l2tp.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1991, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/machdep.c.yml b/tests/cluecode/data/ics/tcpdump/machdep.c.yml index 5f175072d70..c4bc0ca8775 100644 --- a/tests/cluecode/data/ics/tcpdump/machdep.c.yml +++ b/tests/cluecode/data/ics/tcpdump/machdep.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/makemib.yml b/tests/cluecode/data/ics/tcpdump/makemib.yml index a9498b3b5fb..96d44733fc0 100644 --- a/tests/cluecode/data/ics/tcpdump/makemib.yml +++ b/tests/cluecode/data/ics/tcpdump/makemib.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: William C. Fenner count: 1 +allrights: + - Copyright (c) 1990, 1996 John Robert LoVerso. All rights reserved. + - copyright (c) 1999 William C. Fenner. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/mpls.h.yml b/tests/cluecode/data/ics/tcpdump/mpls.h.yml index 0127cc84b4c..d352e95d6ff 100644 --- a/tests/cluecode/data/ics/tcpdump/mpls.h.yml +++ b/tests/cluecode/data/ics/tcpdump/mpls.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 2001 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/nameser.h.yml b/tests/cluecode/data/ics/tcpdump/nameser.h.yml index 88357d97593..3d4c9302c81 100644 --- a/tests/cluecode/data/ics/tcpdump/nameser.h.yml +++ b/tests/cluecode/data/ics/tcpdump/nameser.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1983, 1989, 1993 The Regents of the University of California. All rights reserved. + - Portions Copyright (c) 1993 by Digital Equipment Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/netdissect.h.yml b/tests/cluecode/data/ics/tcpdump/netdissect.h.yml index b6d1ddf69e9..65a033618d4 100644 --- a/tests/cluecode/data/ics/tcpdump/netdissect.h.yml +++ b/tests/cluecode/data/ics/tcpdump/netdissect.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988-1997 The Regents of the University of California. All rights reserved. + - Copyright (c) 1998-2004 Michael Richardson The TCPDUMP project \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/nfs.h.yml b/tests/cluecode/data/ics/tcpdump/nfs.h.yml index 6599e7264dd..b9bd31a001c 100644 --- a/tests/cluecode/data/ics/tcpdump/nfs.h.yml +++ b/tests/cluecode/data/ics/tcpdump/nfs.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/nfsfh.h.yml b/tests/cluecode/data/ics/tcpdump/nfsfh.h.yml index 3799a714c59..53c14799788 100644 --- a/tests/cluecode/data/ics/tcpdump/nfsfh.h.yml +++ b/tests/cluecode/data/ics/tcpdump/nfsfh.h.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: Jeffrey C. Mogul, Digital Equipment Corporation, Western Research Laboratory count: 1 +allrights: + - Copyright (c) 1993, 1994 Jeffrey C. Mogul, Digital Equipment Corporation, Western Research Laboratory. All rights reserved. + - Copyright (c) 2001 Compaq Computer Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/parsenfsfh.c.yml b/tests/cluecode/data/ics/tcpdump/parsenfsfh.c.yml index 3799a714c59..53c14799788 100644 --- a/tests/cluecode/data/ics/tcpdump/parsenfsfh.c.yml +++ b/tests/cluecode/data/ics/tcpdump/parsenfsfh.c.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: Jeffrey C. Mogul, Digital Equipment Corporation, Western Research Laboratory count: 1 +allrights: + - Copyright (c) 1993, 1994 Jeffrey C. Mogul, Digital Equipment Corporation, Western Research Laboratory. All rights reserved. + - Copyright (c) 2001 Compaq Computer Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-ah.c.yml b/tests/cluecode/data/ics/tcpdump/print-ah.c.yml index 7eafc812a4f..c532e634ace 100644 --- a/tests/cluecode/data/ics/tcpdump/print-ah.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-ah.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-ap1394.c.yml b/tests/cluecode/data/ics/tcpdump/print-ap1394.c.yml index 86391707758..e5317ff8791 100644 --- a/tests/cluecode/data/ics/tcpdump/print-ap1394.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-ap1394.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-ascii.c.yml b/tests/cluecode/data/ics/tcpdump/print-ascii.c.yml index 9daaf1b366e..0727380cbda 100644 --- a/tests/cluecode/data/ics/tcpdump/print-ascii.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-ascii.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The NetBSD Foundation, Inc. count: 1 +allrights: + - Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-atm.c.yml b/tests/cluecode/data/ics/tcpdump/print-atm.c.yml index 10f8f0b4d1e..dde435036ec 100644 --- a/tests/cluecode/data/ics/tcpdump/print-atm.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-atm.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-bootp.c.yml b/tests/cluecode/data/ics/tcpdump/print-bootp.c.yml index 3511fcf9138..b12cbb9de2b 100644 --- a/tests/cluecode/data/ics/tcpdump/print-bootp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-bootp.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-cdp.c.yml b/tests/cluecode/data/ics/tcpdump/print-cdp.c.yml index d90292b46ee..ecdd45dd0db 100644 --- a/tests/cluecode/data/ics/tcpdump/print-cdp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-cdp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-cnfp.c.yml b/tests/cluecode/data/ics/tcpdump/print-cnfp.c.yml index d0bd46fcdca..dc3b2dab479 100644 --- a/tests/cluecode/data/ics/tcpdump/print-cnfp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-cnfp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Michael Shalayeff count: 1 +allrights: + - Copyright (c) 1998 Michael Shalayeff All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-dhcp6.c.yml b/tests/cluecode/data/ics/tcpdump/print-dhcp6.c.yml index e8b58d72d71..db63a764019 100644 --- a/tests/cluecode/data/ics/tcpdump/print-dhcp6.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-dhcp6.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1998 and 1999 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-dvmrp.c.yml b/tests/cluecode/data/ics/tcpdump/print-dvmrp.c.yml index dc56284ab5a..bb047cc764b 100644 --- a/tests/cluecode/data/ics/tcpdump/print-dvmrp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-dvmrp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-egp.c.yml b/tests/cluecode/data/ics/tcpdump/print-egp.c.yml index ca9b0c5454e..36dd16b3b2d 100644 --- a/tests/cluecode/data/ics/tcpdump/print-egp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-egp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-enc.c.yml b/tests/cluecode/data/ics/tcpdump/print-enc.c.yml index c8016d2147a..a9dcfc0f1b1 100644 --- a/tests/cluecode/data/ics/tcpdump/print-enc.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-enc.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-fddi.c.yml b/tests/cluecode/data/ics/tcpdump/print-fddi.c.yml index 95bb8126068..ad7b5649827 100644 --- a/tests/cluecode/data/ics/tcpdump/print-fddi.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-fddi.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-frag6.c.yml b/tests/cluecode/data/ics/tcpdump/print-frag6.c.yml index 20b59f216da..548b49593dc 100644 --- a/tests/cluecode/data/ics/tcpdump/print-frag6.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-frag6.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-gre.c.yml b/tests/cluecode/data/ics/tcpdump/print-gre.c.yml index 17c82b05707..f95a095b179 100644 --- a/tests/cluecode/data/ics/tcpdump/print-gre.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-gre.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jason L. Wright count: 1 +allrights: + - Copyright (c) 2002 Jason L. Wright (jason@thought.net) All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-hsrp.c.yml b/tests/cluecode/data/ics/tcpdump/print-hsrp.c.yml index 0c55a41bd87..2eafa3d59d7 100644 --- a/tests/cluecode/data/ics/tcpdump/print-hsrp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-hsrp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Julian Cowley count: 1 +allrights: + - Copyright (c) 2001 Julian Cowley All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-ip6opts.c.yml b/tests/cluecode/data/ics/tcpdump/print-ip6opts.c.yml index 0e8d7918458..30f05701472 100644 --- a/tests/cluecode/data/ics/tcpdump/print-ip6opts.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-ip6opts.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 1998 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-krb.c.yml b/tests/cluecode/data/ics/tcpdump/print-krb.c.yml index 9f2ea07ab2b..1fb96a1d57a 100644 --- a/tests/cluecode/data/ics/tcpdump/print-krb.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-krb.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-lwres.c.yml b/tests/cluecode/data/ics/tcpdump/print-lwres.c.yml index 0127cc84b4c..d352e95d6ff 100644 --- a/tests/cluecode/data/ics/tcpdump/print-lwres.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-lwres.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 2001 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-mobile.c.yml b/tests/cluecode/data/ics/tcpdump/print-mobile.c.yml index 1cdb0215860..eb41e5b976c 100644 --- a/tests/cluecode/data/ics/tcpdump/print-mobile.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-mobile.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The NetBSD Foundation, Inc. count: 1 +allrights: + - (c) 1998 The NetBSD Foundation, Inc. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-mobility.c.yml b/tests/cluecode/data/ics/tcpdump/print-mobility.c.yml index e63eb67b2d6..aafa10f4cd7 100644 --- a/tests/cluecode/data/ics/tcpdump/print-mobility.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-mobility.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: WIDE Project count: 1 +allrights: + - Copyright (c) 2002 WIDE Project. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-msdp.c.yml b/tests/cluecode/data/ics/tcpdump/print-msdp.c.yml index 15df4e439b5..b20f16a2c26 100644 --- a/tests/cluecode/data/ics/tcpdump/print-msdp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-msdp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: William C. Fenner count: 1 +allrights: + - Copyright (c) 2001 William C. Fenner. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-radius.c.yml b/tests/cluecode/data/ics/tcpdump/print-radius.c.yml index 2209833d0cb..3d277b2be93 100644 --- a/tests/cluecode/data/ics/tcpdump/print-radius.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-radius.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Alfredo Andres Omella count: 1 +allrights: + - Copyright (c) 2000 Alfredo Andres Omella. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-rip.c.yml b/tests/cluecode/data/ics/tcpdump/print-rip.c.yml index c3802601f04..39ef18f92b1 100644 --- a/tests/cluecode/data/ics/tcpdump/print-rip.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-rip.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989, 1990, 1991, 1993, 1994, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-ripng.c.yml b/tests/cluecode/data/ics/tcpdump/print-ripng.c.yml index 28b9393d8f1..dac81ce4a7b 100644 --- a/tests/cluecode/data/ics/tcpdump/print-ripng.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-ripng.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-rx.c.yml b/tests/cluecode/data/ics/tcpdump/print-rx.c.yml index 5ecc0a60fd9..802853a449c 100644 --- a/tests/cluecode/data/ics/tcpdump/print-rx.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-rx.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: United States Government as represented by the Secretary of the Navy count: 1 +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/ics/tcpdump/print-sl.c.yml b/tests/cluecode/data/ics/tcpdump/print-sl.c.yml index 7f3de7d5a4f..3e934f6cae4 100644 --- a/tests/cluecode/data/ics/tcpdump/print-sl.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-sl.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989, 1990, 1991, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-snmp.c.yml b/tests/cluecode/data/ics/tcpdump/print-snmp.c.yml index 39f9b7db58b..988d0fcc127 100644 --- a/tests/cluecode/data/ics/tcpdump/print-snmp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-snmp.c.yml @@ -15,3 +15,7 @@ holders_summary: - value: John Robert LoVerso count: 1 notes: the second statement is truncated and should start with Los Alamos National Laboratory +allrights: + - Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 John Robert LoVerso. All rights reserved. + - J. Schoenwaelder, Copyright (c) 1999. + - Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-tcp.c.yml b/tests/cluecode/data/ics/tcpdump/print-tcp.c.yml index 725d9dda17c..3f527e51c5c 100644 --- a/tests/cluecode/data/ics/tcpdump/print-tcp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-tcp.c.yml @@ -14,3 +14,6 @@ holders_summary: count: 1 - value: The tcpdump.org project count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. + - Copyright (c) 1999-2004 The tcpdump.org project \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-telnet.c.yml b/tests/cluecode/data/ics/tcpdump/print-telnet.c.yml index 23a81875d56..69f1f8646e9 100644 --- a/tests/cluecode/data/ics/tcpdump/print-telnet.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-telnet.c.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: The NetBSD Foundation, Inc. count: 1 +allrights: + - Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. All rights reserved. + - Copyright (c) 1994, Simon J. Gerraty. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-timed.c.yml b/tests/cluecode/data/ics/tcpdump/print-timed.c.yml index 21f55703f2e..c6c3b9a86ee 100644 --- a/tests/cluecode/data/ics/tcpdump/print-timed.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-timed.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Ben Smithurst count: 1 +allrights: + - Copyright (c) 2000 Ben Smithurst All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-token.c.yml b/tests/cluecode/data/ics/tcpdump/print-token.c.yml index 675c5150559..f197f57dba1 100644 --- a/tests/cluecode/data/ics/tcpdump/print-token.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-token.c.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-vrrp.c.yml b/tests/cluecode/data/ics/tcpdump/print-vrrp.c.yml index c6d036403f5..4fe91fd8409 100644 --- a/tests/cluecode/data/ics/tcpdump/print-vrrp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-vrrp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: William C. Fenner count: 1 +allrights: + - Copyright (c) 2000 William C. Fenner. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-wb.c.yml b/tests/cluecode/data/ics/tcpdump/print-wb.c.yml index 43ddee89b5d..46e7362ae51 100644 --- a/tests/cluecode/data/ics/tcpdump/print-wb.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-wb.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1993, 1994, 1995, 1996 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/print-zephyr.c.yml b/tests/cluecode/data/ics/tcpdump/print-zephyr.c.yml index de8b1ecec9f..f9255520bdd 100644 --- a/tests/cluecode/data/ics/tcpdump/print-zephyr.c.yml +++ b/tests/cluecode/data/ics/tcpdump/print-zephyr.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Nickolai Zeldovich count: 1 +allrights: + - Copyright (c) 2001 Nickolai Zeldovich All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/route6d.h.yml b/tests/cluecode/data/ics/tcpdump/route6d.h.yml index 1238c3fcd42..506f3bd6e7d 100644 --- a/tests/cluecode/data/ics/tcpdump/route6d.h.yml +++ b/tests/cluecode/data/ics/tcpdump/route6d.h.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/ics/tcpdump/slcompress.h.yml b/tests/cluecode/data/ics/tcpdump/slcompress.h.yml index fadfb625af5..2672159039c 100644 --- a/tests/cluecode/data/ics/tcpdump/slcompress.h.yml +++ b/tests/cluecode/data/ics/tcpdump/slcompress.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1989, 1990, 1992, 1993 Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/slip.h.yml b/tests/cluecode/data/ics/tcpdump/slip.h.yml index 9bd24883fa9..b5da83d88e9 100644 --- a/tests/cluecode/data/ics/tcpdump/slip.h.yml +++ b/tests/cluecode/data/ics/tcpdump/slip.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1990 Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/strcasecmp.c.yml b/tests/cluecode/data/ics/tcpdump/strcasecmp.c.yml index ebfb1962115..a43daf3931c 100644 --- a/tests/cluecode/data/ics/tcpdump/strcasecmp.c.yml +++ b/tests/cluecode/data/ics/tcpdump/strcasecmp.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1987 Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/tcpdump.1.yml b/tests/cluecode/data/ics/tcpdump/tcpdump.1.yml index ad412b7ee76..5a7053cce35 100644 --- a/tests/cluecode/data/ics/tcpdump/tcpdump.1.yml +++ b/tests/cluecode/data/ics/tcpdump/tcpdump.1.yml @@ -10,3 +10,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1987, 1988, 1989, 1990, 1991, 1992, 1994, 1995, 1996, 1997 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/tcpdump.c.yml b/tests/cluecode/data/ics/tcpdump/tcpdump.c.yml index 428425c2675..8036d7f2754 100644 --- a/tests/cluecode/data/ics/tcpdump/tcpdump.c.yml +++ b/tests/cluecode/data/ics/tcpdump/tcpdump.c.yml @@ -17,3 +17,7 @@ holders_summary: count: 2 - value: Seth Webster count: 1 +allrights: + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000 The Regents of the University of California. All rights reserved. + - Copyright (c) 2001 Seth Webster + - Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/telnet.h.yml b/tests/cluecode/data/ics/tcpdump/telnet.h.yml index 8bb706cec4f..fff97d96e90 100644 --- a/tests/cluecode/data/ics/tcpdump/telnet.h.yml +++ b/tests/cluecode/data/ics/tcpdump/telnet.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/token.h.yml b/tests/cluecode/data/ics/tcpdump/token.h.yml index 15742d6e157..c2f7accb194 100644 --- a/tests/cluecode/data/ics/tcpdump/token.h.yml +++ b/tests/cluecode/data/ics/tcpdump/token.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Larry Lile count: 1 +allrights: + - Copyright (c) 1998, Larry Lile All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tcpdump/vfprintf.c.yml b/tests/cluecode/data/ics/tcpdump/vfprintf.c.yml index cd311705636..41323a052de 100644 --- a/tests/cluecode/data/ics/tcpdump/vfprintf.c.yml +++ b/tests/cluecode/data/ics/tcpdump/vfprintf.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 1995 The Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tremolo-Tremolo/asm_arm.h.yml b/tests/cluecode/data/ics/tremolo-Tremolo/asm_arm.h.yml index e371b21694b..a3b799e142e 100644 --- a/tests/cluecode/data/ics/tremolo-Tremolo/asm_arm.h.yml +++ b/tests/cluecode/data/ics/tremolo-Tremolo/asm_arm.h.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Xiph.org Foundation count: 1 +allrights: + - Copyright (c) 2002-2009, Xiph.org Foundation + - Copyright (c) 2010, Robin Watts for Pinknoise Productions Ltd All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/tremolo/NOTICE.yml b/tests/cluecode/data/ics/tremolo/NOTICE.yml index e371b21694b..a3b799e142e 100644 --- a/tests/cluecode/data/ics/tremolo/NOTICE.yml +++ b/tests/cluecode/data/ics/tremolo/NOTICE.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Xiph.org Foundation count: 1 +allrights: + - Copyright (c) 2002-2009, Xiph.org Foundation + - Copyright (c) 2010, Robin Watts for Pinknoise Productions Ltd All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/webrtc-src-system_wrappers-source-spreadsortlib/spreadsort.hpp.yml b/tests/cluecode/data/ics/webrtc-src-system_wrappers-source-spreadsortlib/spreadsort.hpp.yml index 892610a15dd..681fdd83ad1 100644 --- a/tests/cluecode/data/ics/webrtc-src-system_wrappers-source-spreadsortlib/spreadsort.hpp.yml +++ b/tests/cluecode/data/ics/webrtc-src-system_wrappers-source-spreadsortlib/spreadsort.hpp.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Steven J. Ross count: 1 +allrights: + - Copyright Steven J. Ross 2001 - 2009. \ No newline at end of file diff --git a/tests/cluecode/data/ics/webrtc-src/common_types.h.yml b/tests/cluecode/data/ics/webrtc-src/common_types.h.yml index 0d4e4d79a40..ae9a847cadd 100644 --- a/tests/cluecode/data/ics/webrtc-src/common_types.h.yml +++ b/tests/cluecode/data/ics/webrtc-src/common_types.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The WebRTC project authors count: 1 +allrights: + - Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/webrtc/NOTICE.yml b/tests/cluecode/data/ics/webrtc/NOTICE.yml index d865c54a27b..1b16bc3347d 100644 --- a/tests/cluecode/data/ics/webrtc/NOTICE.yml +++ b/tests/cluecode/data/ics/webrtc/NOTICE.yml @@ -23,3 +23,9 @@ holders_summary: count: 1 - value: The WebRTC project authors count: 1 +allrights: + - Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. + - Copyright (c) 2010 The Android Open Source Project + - Copyright Takuya OOURA, 1996-2001 + - Copyright Takuya OOURA, 1996-2001 + - Copyright Steven J. Ross 2001 - 2009. \ No newline at end of file diff --git a/tests/cluecode/data/ics/webrtc/android-webrtc.mk.yml b/tests/cluecode/data/ics/webrtc/android-webrtc.mk.yml index 0d4e4d79a40..ae9a847cadd 100644 --- a/tests/cluecode/data/ics/webrtc/android-webrtc.mk.yml +++ b/tests/cluecode/data/ics/webrtc/android-webrtc.mk.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The WebRTC project authors count: 1 +allrights: + - Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/wpa_supplicant-wpa_gui-qt4/wpagui.cpp.yml b/tests/cluecode/data/ics/wpa_supplicant-wpa_gui-qt4/wpagui.cpp.yml index 7ebdc99bde8..9758ad5cce3 100644 --- a/tests/cluecode/data/ics/wpa_supplicant-wpa_gui-qt4/wpagui.cpp.yml +++ b/tests/cluecode/data/ics/wpa_supplicant-wpa_gui-qt4/wpagui.cpp.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Jouni Malinen and contributors count: 1 +allrights: + - Copyright (c) 2005-2008, Jouni Malinen + - Copyright (c) 2003-2008, Jouni Malinen and contributors. \ No newline at end of file diff --git a/tests/cluecode/data/ics/wpa_supplicant-wpa_gui/wpagui.ui.h.yml b/tests/cluecode/data/ics/wpa_supplicant-wpa_gui/wpagui.ui.h.yml index 9cd63d886f1..d33ec2b05f4 100644 --- a/tests/cluecode/data/ics/wpa_supplicant-wpa_gui/wpagui.ui.h.yml +++ b/tests/cluecode/data/ics/wpa_supplicant-wpa_gui/wpagui.ui.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jouni Malinen and contributors count: 1 +allrights: + - Copyright (c) 2003-2008, Jouni Malinen and contributors. \ No newline at end of file diff --git a/tests/cluecode/data/ics/wpa_supplicant/NOTICE.yml b/tests/cluecode/data/ics/wpa_supplicant/NOTICE.yml index 9cd63d886f1..37d40fe5205 100644 --- a/tests/cluecode/data/ics/wpa_supplicant/NOTICE.yml +++ b/tests/cluecode/data/ics/wpa_supplicant/NOTICE.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jouni Malinen and contributors count: 1 +allrights: + - Copyright (c) 2003-2008, Jouni Malinen and contributors All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/wpa_supplicant/driver_atmel.c.yml b/tests/cluecode/data/ics/wpa_supplicant/driver_atmel.c.yml index 4b6ebd7003e..ca8a44b0c40 100644 --- a/tests/cluecode/data/ics/wpa_supplicant/driver_atmel.c.yml +++ b/tests/cluecode/data/ics/wpa_supplicant/driver_atmel.c.yml @@ -15,3 +15,7 @@ holders_summary: count: 2 - value: Jouni Malinen count: 1 +allrights: + - Copyright (c) 2000-2005, ATMEL Corporation + - Copyright (c) 2004-2007, Jouni Malinen + - Copyright 2000-2001 ATMEL Corporation. \ No newline at end of file diff --git a/tests/cluecode/data/ics/wpa_supplicant/wireless_copy.h.yml b/tests/cluecode/data/ics/wpa_supplicant/wireless_copy.h.yml index ce8328b0fc6..db7503241e7 100644 --- a/tests/cluecode/data/ics/wpa_supplicant/wireless_copy.h.yml +++ b/tests/cluecode/data/ics/wpa_supplicant/wireless_copy.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean Tourrilhes count: 1 +allrights: + - Copyright (c) 1997-2007 Jean Tourrilhes, All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/xmlwriter-src-org-jheer/XMLWriter.java.yml b/tests/cluecode/data/ics/xmlwriter-src-org-jheer/XMLWriter.java.yml index b29b3a4a4d1..abf593f4e39 100644 --- a/tests/cluecode/data/ics/xmlwriter-src-org-jheer/XMLWriter.java.yml +++ b/tests/cluecode/data/ics/xmlwriter-src-org-jheer/XMLWriter.java.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: The Regents of the University of California count: 1 +allrights: + - Copyright (c) 2004-2006 Regents of the University of California. All rights reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/yaffs2-yaffs2/yaffs_qsort.h.yml b/tests/cluecode/data/ics/yaffs2-yaffs2/yaffs_qsort.h.yml index e688bc6ca0e..909c90d66fd 100644 --- a/tests/cluecode/data/ics/yaffs2-yaffs2/yaffs_qsort.h.yml +++ b/tests/cluecode/data/ics/yaffs2-yaffs2/yaffs_qsort.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Silicon Graphics, Inc. count: 1 +allrights: + - Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-contrib-masmx86/gvmat32c.c.yml b/tests/cluecode/data/ics/zlib-contrib-masmx86/gvmat32c.c.yml index f5001c4fb56..1bfbb93bb9a 100644 --- a/tests/cluecode/data/ics/zlib-contrib-masmx86/gvmat32c.c.yml +++ b/tests/cluecode/data/ics/zlib-contrib-masmx86/gvmat32c.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly and Gilles Vollant count: 1 +allrights: + - Copyright (c) 1995-1996 Jean-loup Gailly and Gilles Vollant. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-contrib-minizip/unzip.c.yml b/tests/cluecode/data/ics/zlib-contrib-minizip/unzip.c.yml index b91a88591ba..f066dde67ae 100644 --- a/tests/cluecode/data/ics/zlib-contrib-minizip/unzip.c.yml +++ b/tests/cluecode/data/ics/zlib-contrib-minizip/unzip.c.yml @@ -30,3 +30,11 @@ holders_summary: count: 1 - value: Mathias Svensson count: 1 +allrights: + - Copyright (c) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) + - Copyright (c) 2007-2008 Even Rouault + - Copyright (c) 2009-2010 Mathias Svensson ( http://result42.com ) + - Copyright (c) 1990-2000 Info-ZIP. All rights reserved. + - Copyright (c) 2007-2008 Even Rouault + - Copyright (c) 1998 - 2010 Gilles Vollant, Even Rouault, Mathias Svensson + - Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-contrib-pascal/readme.txt.yml b/tests/cluecode/data/ics/zlib-contrib-pascal/readme.txt.yml index feaad1e115c..f694dd2be2b 100644 --- a/tests/cluecode/data/ics/zlib-contrib-pascal/readme.txt.yml +++ b/tests/cluecode/data/ics/zlib-contrib-pascal/readme.txt.yml @@ -27,3 +27,10 @@ holders_summary: count: 1 - value: Jean-loup Gailly and Mark Adler count: 1 +allrights: + - Copyright (c) 1995-2003 Jean-loup Gailly and Mark Adler. + - Copyright (c) 1998 by Bob Dellaca. + - Copyright (c) 2003 by Cosmin Truta. + - Copyright (c) 1995-2003 by Jean-loup Gailly. + - Copyright (c) 1998,1999,2000 by Jacques Nomssi Nzali. + - Copyright (c) 2003 by Cosmin Truta. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-contrib-puff/puff.h.yml b/tests/cluecode/data/ics/zlib-contrib-puff/puff.h.yml index 711176d63f9..317b9545cc6 100644 --- a/tests/cluecode/data/ics/zlib-contrib-puff/puff.h.yml +++ b/tests/cluecode/data/ics/zlib-contrib-puff/puff.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Mark Adler count: 1 +allrights: + - Copyright (c) 2002-2010 Mark Adler, all rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-examples/gzappend.c.yml b/tests/cluecode/data/ics/zlib-examples/gzappend.c.yml index 402af2de2bc..d6799780e0f 100644 --- a/tests/cluecode/data/ics/zlib-examples/gzappend.c.yml +++ b/tests/cluecode/data/ics/zlib-examples/gzappend.c.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Mark Adler count: 2 +allrights: + - Copyright (c) 2003 Mark Adler, all rights reserved + - Copyright (c) 2003 Mark Adler \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-examples/gzjoin.c.yml b/tests/cluecode/data/ics/zlib-examples/gzjoin.c.yml index a4bc8458bb1..ae4707eb23a 100644 --- a/tests/cluecode/data/ics/zlib-examples/gzjoin.c.yml +++ b/tests/cluecode/data/ics/zlib-examples/gzjoin.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Mark Adler count: 1 +allrights: + - Copyright (c) 2004 Mark Adler, all rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-examples/gzlog.c.yml b/tests/cluecode/data/ics/zlib-examples/gzlog.c.yml index 0d08abddbcd..5dfe3c8ad20 100644 --- a/tests/cluecode/data/ics/zlib-examples/gzlog.c.yml +++ b/tests/cluecode/data/ics/zlib-examples/gzlog.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Mark Adler count: 1 +allrights: + - Copyright (c) 2004, 2008 Mark Adler, all rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-examples/gzlog.h.yml b/tests/cluecode/data/ics/zlib-examples/gzlog.h.yml index 0d08abddbcd..5dfe3c8ad20 100644 --- a/tests/cluecode/data/ics/zlib-examples/gzlog.h.yml +++ b/tests/cluecode/data/ics/zlib-examples/gzlog.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Mark Adler count: 1 +allrights: + - Copyright (c) 2004, 2008 Mark Adler, all rights reserved \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-examples/zlib_how.html.yml b/tests/cluecode/data/ics/zlib-examples/zlib_how.html.yml index cdf876c7426..165c25deea5 100644 --- a/tests/cluecode/data/ics/zlib-examples/zlib_how.html.yml +++ b/tests/cluecode/data/ics/zlib-examples/zlib_how.html.yml @@ -11,3 +11,6 @@ holders: holders_summary: - value: Mark Adler count: 2 +allrights: + - Copyright (c) 2004, 2005 Mark Adler. + - Copyright (c) 2004, 2005 by Mark Adler \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-msdos/Makefile.dj2.yml b/tests/cluecode/data/ics/zlib-msdos/Makefile.dj2.yml index d490f15e2ed..592b24b4e05 100644 --- a/tests/cluecode/data/ics/zlib-msdos/Makefile.dj2.yml +++ b/tests/cluecode/data/ics/zlib-msdos/Makefile.dj2.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-1998 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-old-visualc6/README.txt.yml b/tests/cluecode/data/ics/zlib-old-visualc6/README.txt.yml index b59877d91ce..7aebacc73ee 100644 --- a/tests/cluecode/data/ics/zlib-old-visualc6/README.txt.yml +++ b/tests/cluecode/data/ics/zlib-old-visualc6/README.txt.yml @@ -13,3 +13,6 @@ holders_summary: count: 1 - value: Simon-Pierre Cadieux count: 1 +allrights: + - Copyright (c) 2000-2004 Simon-Pierre Cadieux. + - Copyright (c) 2004 Cosmin Truta. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib-win32/Makefile.gcc.yml b/tests/cluecode/data/ics/zlib-win32/Makefile.gcc.yml index 8b6fd6ee526..430013940a4 100644 --- a/tests/cluecode/data/ics/zlib-win32/Makefile.gcc.yml +++ b/tests/cluecode/data/ics/zlib-win32/Makefile.gcc.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2003 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib/Makefile.in.yml b/tests/cluecode/data/ics/zlib/Makefile.in.yml index ee2f302a9c7..86e29a5f6aa 100644 --- a/tests/cluecode/data/ics/zlib/Makefile.in.yml +++ b/tests/cluecode/data/ics/zlib/Makefile.in.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2010 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib/example.c.yml b/tests/cluecode/data/ics/zlib/example.c.yml index 3fb54b6625e..3ca82d17896 100644 --- a/tests/cluecode/data/ics/zlib/example.c.yml +++ b/tests/cluecode/data/ics/zlib/example.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2006 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib/minigzip.c.yml b/tests/cluecode/data/ics/zlib/minigzip.c.yml index c91844657ad..e5925baba6c 100644 --- a/tests/cluecode/data/ics/zlib/minigzip.c.yml +++ b/tests/cluecode/data/ics/zlib/minigzip.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2006, 2010 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib/uncompr.c.yml b/tests/cluecode/data/ics/zlib/uncompr.c.yml index e6fa27d5d37..177ac68840b 100644 --- a/tests/cluecode/data/ics/zlib/uncompr.c.yml +++ b/tests/cluecode/data/ics/zlib/uncompr.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2003, 2010 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib/zconf.h.yml b/tests/cluecode/data/ics/zlib/zconf.h.yml index ee2f302a9c7..86e29a5f6aa 100644 --- a/tests/cluecode/data/ics/zlib/zconf.h.yml +++ b/tests/cluecode/data/ics/zlib/zconf.h.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2010 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/ics/zlib/zutil.c.yml b/tests/cluecode/data/ics/zlib/zutil.c.yml index acea61756cb..7a9dba837cd 100644 --- a/tests/cluecode/data/ics/zlib/zutil.c.yml +++ b/tests/cluecode/data/ics/zlib/zutil.c.yml @@ -9,3 +9,5 @@ holders: holders_summary: - value: Jean-loup Gailly count: 1 +allrights: + - Copyright (c) 1995-2005, 2010 Jean-loup Gailly. \ No newline at end of file diff --git a/tests/cluecode/data/years/years_in_copyright-COPYRIGHT_madwifi.madwifi.yml b/tests/cluecode/data/years/years_in_copyright-COPYRIGHT_madwifi.madwifi.yml index 2c21a15b7fd..cff24b891ef 100644 --- a/tests/cluecode/data/years/years_in_copyright-COPYRIGHT_madwifi.madwifi.yml +++ b/tests/cluecode/data/years/years_in_copyright-COPYRIGHT_madwifi.madwifi.yml @@ -2,3 +2,5 @@ what: - copyrights copyrights: - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. +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/years/years_in_h-ah_h.h.yml b/tests/cluecode/data/years/years_in_h-ah_h.h.yml index 2c21a15b7fd..cff24b891ef 100644 --- a/tests/cluecode/data/years/years_in_h-ah_h.h.yml +++ b/tests/cluecode/data/years/years_in_h-ah_h.h.yml @@ -2,3 +2,5 @@ what: - copyrights copyrights: - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. +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/years/years_in_readme-README.yml b/tests/cluecode/data/years/years_in_readme-README.yml index 93bee0468f0..634b5573ba0 100644 --- a/tests/cluecode/data/years/years_in_readme-README.yml +++ b/tests/cluecode/data/years/years_in_readme-README.yml @@ -2,3 +2,5 @@ what: - copyrights copyrights: - Copyright (c) 2002-2006, Jouni Malinen and contributors +allrights: + - Copyright (c) 2002-2006, Jouni Malinen and contributors All Rights Reserved. \ No newline at end of file diff --git a/tests/cluecode/data/years/years_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml b/tests/cluecode/data/years/years_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml index 2c21a15b7fd..cff24b891ef 100644 --- a/tests/cluecode/data/years/years_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml +++ b/tests/cluecode/data/years/years_in_uuencode_binary-mips_be_elf_hal_o_uu.uu.yml @@ -2,3 +2,5 @@ what: - copyrights copyrights: - Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros Communications, Inc. +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/test_copyrights_with_allrightsreserved.py b/tests/cluecode/test_copyrights_with_allrightsreserved.py new file mode 100644 index 00000000000..511274bf76e --- /dev/null +++ b/tests/cluecode/test_copyrights_with_allrightsreserved.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# +# 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 pytest + +from commoncode.testcase import FileBasedTesting + +from cluecode_test_utils import build_tests +from cluecode_test_utils import load_copyright_tests +from scancode_config import REGEN_TEST_FIXTURES + + +pytestmark = pytest.mark.scanslow + + +""" +This test suite is based on many sources including a rather large subset of +Android ICS, providing a rather diversified sample of a typical Linux-based user +space environment. +""" + +class TestCopyrightDataDriven(FileBasedTesting): + # test functions are attached to this class at module import time + pass + + +build_tests( + copyright_tests=load_copyright_tests(generate_missing=REGEN_TEST_FIXTURES), + clazz=TestCopyrightDataDriven, + regen=REGEN_TEST_FIXTURES, + with_allrights=True, +)